X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fquasselui.h;h=a278deffa97838dcabd0e4eb64f12e3371c52e43;hb=9950dd55446bedbccba1e7a27c4d042fb896d3c6;hp=327c37f6e812c86a2aad8adb5aeafdd5514e061f;hpb=902c95728306e5ba115de84800fc8d5d239c9d62;p=quassel.git diff --git a/src/client/quasselui.h b/src/client/quasselui.h index 327c37f6..a278deff 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,25 +24,16 @@ #include #include "message.h" -class AbstractUiMsg { - - public: - virtual ~AbstractUiMsg() {}; - virtual QString sender() const = 0; - virtual QString text() const = 0; - virtual MsgId msgId() const = 0; - virtual BufferInfo bufferInfo() const = 0; - virtual QDateTime timeStamp() const = 0; - -}; - +class MessageModel; +class AbstractMessageProcessor; class AbstractUi : public QObject { Q_OBJECT public: virtual void init() {}; // called after the client is initialized - virtual AbstractUiMsg *layoutMsg(const Message &) = 0; + virtual MessageModel *createMessageModel(QObject *parent) = 0; + virtual AbstractMessageProcessor *createMessageProcessor(QObject *parent) = 0; protected slots: virtual void connectedToCore() {} @@ -54,6 +45,4 @@ class AbstractUi : public QObject { }; - - #endif