as a result of semi boredom and since it bugged me for quite a while:
[quassel.git] / src / client / client.h
index ec9d8d6..cae4f9f 100644 (file)
@@ -5,7 +5,7 @@
  *   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        *
@@ -35,7 +35,7 @@ class NetworkInfo;
 
 class AbstractUi;
 class AbstractUiMsg;
-class BufferTreeModel;
+class NetworkModel;
 class SignalProxy;
 
 class QTimer;
@@ -51,7 +51,7 @@ public:
 
   static QList<NetworkInfo *> networkInfos();
   static NetworkInfo *networkInfo(uint networkid);
-  
+
   static QList<BufferInfo> allBufferInfos();
   static QList<Buffer *> buffers();
   static Buffer *buffer(uint bufferUid);
@@ -59,7 +59,7 @@ public:
   static BufferInfo statusBufferInfo(QString net);
   static BufferInfo bufferInfo(QString net, QString buf);
 
-  static BufferTreeModel *bufferModel();
+  static NetworkModel *networkModel();
   static SignalProxy *signalProxy();
 
   static AbstractUiMsg *layoutMsg(const Message &);
@@ -68,7 +68,7 @@ public:
 
   static void fakeInput(uint bufferUid, QString message);
   static void fakeInput(BufferInfo bufferInfo, QString message);
-  
+
   static void storeSessionData(const QString &key, const QVariant &data);
   static QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant());
   static QStringList sessionDataKeys();
@@ -90,6 +90,8 @@ signals:
   void coreConnectionMsg(const QString &msg);
   void coreConnectionProgress(uint part, uint total);
 
+  void showConfigWizard(const QVariantMap &coredata);
+
   void connected();
   void disconnected();
 
@@ -103,6 +105,8 @@ public slots:
   void connectToCore(const QVariantMap &);
   void disconnectFromCore();
 
+  void setCoreConfiguration(const QVariantMap &settings);
+
 private slots:
   void recvCoreState(const QVariant &state);
   void recvSessionData(const QString &key, const QVariant &data);
@@ -111,7 +115,6 @@ private slots:
   void coreHasData();
   void coreSocketConnected();
   void coreSocketDisconnected();
-  void coreSocketStateChanged(QAbstractSocket::SocketState);
 
   void userInput(BufferInfo, QString);
 
@@ -124,29 +127,32 @@ private slots:
   void recvBacklogData(BufferInfo, QVariantList, bool);
   void updateBufferInfo(BufferInfo);
 
-  void bufferDestroyed();
-
   void layoutMsg();
 
+private slots:
+  void bufferDestroyed();
+  void networkInfoDestroyed();
+  void ircChannelAdded(QString);
+
 private:
   Client(QObject *parent = 0);
   virtual ~Client();
   void init();
-  
+
   void syncToCore(const QVariant &coreState);
 
   static QPointer<Client> instanceptr;
-  
+
   QPointer<QIODevice> socket;
   QPointer<SignalProxy> _signalProxy;
   QPointer<AbstractUi> mainUi;
-  QPointer<BufferTreeModel> _bufferModel;
+  QPointer<NetworkModel> _networkModel;
 
   ClientMode clientMode;
 
   quint32 blockSize;
   bool connectedToCore;
-  
+
   QVariantMap coreConnectionInfo;
   QHash<uint, Buffer *> _buffers;
   QHash<uint, NetworkInfo*> _networkInfo;