X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclient.h;h=003a23d8c2b5b0a584daa02ce07285ee0b13ef33;hp=ac3663dda85543010e0aef2a05de175bbc6ce244;hb=93800658bba5dcbeca7f3deb02dd7091c455efe8;hpb=7897b8623a42967511e31c68d5c102033a1dcdb9 diff --git a/src/client/client.h b/src/client/client.h index ac3663dd..003a23d8 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -108,16 +108,20 @@ public: static bool isConnected(); static bool isSynced(); + static inline bool internalCore() { return instance()->_internalCore; } static void userInput(BufferInfo bufferInfo, QString message); static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients static void removeBuffer(BufferId id); static void renameBuffer(BufferId bufferId, const QString &newName); + static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2); static void logMessage(QtMsgType type, const char *msg); static inline const QString &debugLog() { return instance()->_debugLogBuffer; } + static inline void registerClientSyncer(ClientSyncer *syncer) { emit instance()->newClientSyncer(syncer); } + signals: void sendInput(BufferInfo, QString message); void requestNetworkStates(); @@ -164,6 +168,7 @@ public slots: void bufferRemoved(BufferId bufferId); void bufferRenamed(BufferId bufferId, const QString &newName); + void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2); private slots: void disconnectedFromCore(); @@ -180,6 +185,8 @@ private slots: void setConnectedToCore(AccountId id, QIODevice *socket = 0); void setSyncedToCore(); void requestInitialBacklog(); + void createDefautBufferView(); + void createDefaultIdentity(); void setSecuredConnection(); @@ -209,6 +216,7 @@ private: ClientMode clientMode; bool _connectedToCore, _syncedToCore; + bool _internalCore; QHash _networks; QHash _identities;