X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclient.h;h=9f881d117f2d322ae9e247a352474c5317f80497;hp=b8faf9fbd20db11233857681952e144332eba39d;hb=167ef57a636052f8e18a206e84c3447552e84d2b;hpb=0d49f7e83bd1055711e66aa880f3a0d62f7eefc9 diff --git a/src/client/client.h b/src/client/client.h index b8faf9fb..9f881d11 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -112,6 +112,9 @@ public: static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients static void removeBuffer(BufferId id); + static void logMessage(QtMsgType type, const char *msg); + static inline const QString &debugLog() { return instance()->_debugLogBuffer; } + signals: void sendInput(BufferInfo, QString message); void requestNetworkStates(); @@ -149,6 +152,8 @@ signals: void newClientSyncer(ClientSyncer *); + void logUpdated(const QString &msg); + public slots: //void selectBuffer(Buffer *); @@ -207,6 +212,9 @@ private: static AccountId _currentCoreAccount; + QString _debugLogBuffer; + QTextStream _debugLog; + friend class ClientSyncer; };