Introduce GraphicalUi (between QtUi and AbstractUi), rename NetworkModelActionProvider
[quassel.git] / src / client / quasselui.h
diff --git a/src/client/quasselui.h b/src/client/quasselui.h
deleted file mode 100644 (file)
index a1b45c7..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-/***************************************************************************
- *   Copyright (C) 2005-09 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) version 3.                                           *
- *                                                                         *
- *   This program is distributed in the hope that it will be useful,       *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
- *   GNU General Public License for more details.                          *
- *                                                                         *
- *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
- ***************************************************************************/
-
-#ifndef QUASSELUI_H
-#define QUASSELUI_H
-
-#include <QObject>
-#include "message.h"
-
-class MessageFilter;
-class MessageModel;
-class AbstractMessageProcessor;
-class AbstractActionProvider;
-
-class QAction;
-class QMenu;
-
-class AbstractUi : public QObject {
-  Q_OBJECT
-
-  public:
-    AbstractUi();
-    virtual ~AbstractUi() {};
-    virtual void init() {};  // called after the client is initialized
-    virtual MessageModel *createMessageModel(QObject *parent) = 0;
-    virtual AbstractMessageProcessor *createMessageProcessor(QObject *parent) = 0;
-    virtual AbstractActionProvider *actionProvider() const = 0;
-
-    inline static bool isVisible() { return _visible; }
-    inline static void setVisible(bool visible) { _visible = visible; }
-
-  protected slots:
-    virtual void connectedToCore() {}
-    virtual void disconnectedFromCore() {}
-
-  signals:
-    void connectToCore(const QVariantMap &connInfo);
-    void disconnectFromCore();
-
-  private:
-    static AbstractUi *_instance;
-    static bool _visible;
-};
-
-class AbstractActionProvider : public QObject {
-  Q_OBJECT
-
-  public:
-    AbstractActionProvider(QObject *parent = 0) : QObject(parent) {}
-    virtual ~AbstractActionProvider() {}
-
-    virtual void addActions(QMenu *, const QModelIndex &index, QObject *receiver = 0, const char *slot = 0, bool allowBufferHide = false) = 0;
-    virtual void addActions(QMenu *, const QList<QModelIndex> &indexList, QObject *receiver = 0, const char *slot = 0, bool allowBufferHide = false) = 0;
-    virtual void addActions(QMenu *, BufferId id, QObject *receiver = 0, const char *slot = 0) = 0;
-    virtual void addActions(QMenu *, MessageFilter *filter, BufferId msgBuffer, QObject *receiver = 0, const char *slot = 0) = 0;
-    virtual void addActions(QMenu *, MessageFilter *filter, BufferId msgBuffer, const QString &chanOrNick, QObject *receiver = 0, const char *slot = 0) = 0;
-
-  signals:
-    void showChannelList(NetworkId);
-    void showIgnoreList(NetworkId);
-
-};
-
-#endif