X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fquasselui.h;h=bcb512beb0411d2c8c437da10c663f9fbf7ddb4e;hb=d1b2699b8a77947f1b7dd67841c6ecb4ea1fce1e;hp=414d5993034a95ef07ac564125c4c31b85c100d2;hpb=06a46322b6107fe4a38c310a6292cc1ef3330950;p=quassel.git diff --git a/src/client/quasselui.h b/src/client/quasselui.h index 414d5993..bcb512be 100644 --- a/src/client/quasselui.h +++ b/src/client/quasselui.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -24,6 +24,8 @@ #include #include "message.h" +class MessageModel; + class AbstractUiMsg { public: @@ -31,8 +33,8 @@ class AbstractUiMsg { virtual QString sender() const = 0; virtual QString text() const = 0; virtual MsgId msgId() const = 0; - virtual BufferId bufferId() const = 0; - virtual QDateTime timeStamp() const = 0; + virtual BufferInfo bufferInfo() const = 0; + virtual QDateTime timestamp() const = 0; }; @@ -42,6 +44,7 @@ class AbstractUi : public QObject { public: virtual void init() {}; // called after the client is initialized + virtual MessageModel *createMessageModel(QObject *parent = 0) = 0; virtual AbstractUiMsg *layoutMsg(const Message &) = 0; protected slots: