X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fquasselui.h;h=0a855fc2e3242eacee7180cb8a6727cfb18dce1f;hp=c4280ba979962c280913bdf091cfa82e113954bd;hb=2ab3040da0e42f4afdd282e34f0d8b089020a73d;hpb=70706ff642683d03ff091cab25d984ec7d9612de diff --git a/src/client/quasselui.h b/src/client/quasselui.h index c4280ba9..0a855fc2 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 * @@ -18,31 +18,27 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _QUASSELUI_H_ -#define _QUASSELUI_H_ +#ifndef QUASSELUI_H +#define QUASSELUI_H #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: + AbstractUi(); + virtual ~AbstractUi() {}; 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; + + inline static bool isVisible() { return _visible; } + inline static void setVisible(bool visible) { _visible = visible; } protected slots: virtual void connectedToCore() {} @@ -52,8 +48,9 @@ class AbstractUi : public QObject { void connectToCore(const QVariantMap &connInfo); void disconnectFromCore(); + private: + static AbstractUi *_instance; + static bool _visible; }; - - #endif