X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fmainwin.h;h=9787832c60f017aa2cf9bba921ac4217b7ea666c;hb=2f83cb6d01ff68131528797020637887fe0e77b7;hp=453062fdfcc0d181ac5f709add62abd5623784c0;hpb=25eb89768427a8c62f0ea776d05407db3aec2f97;p=quassel.git diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 453062fd..9787832c 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -41,6 +41,7 @@ class Message; class NickListWidget; class DebugConsole; +#include "desktopnotifications.h" //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { @@ -54,6 +55,7 @@ class MainWin : public QMainWindow { void addBufferView(BufferViewConfig *config = 0); void displayTrayIconMessage(const QString &title, const QString &message); + void sendDesktopNotification(const QString &title, const QString &message); virtual bool event(QEvent *event); @@ -67,6 +69,7 @@ class MainWin : public QMainWindow { protected slots: void connectedToCore(); void setConnectedState(); + void updateLagIndicator(int lag); void securedConnection(); void disconnectedFromCore(); void setDisconnectedState(); @@ -77,10 +80,11 @@ class MainWin : public QMainWindow { void removeBufferView(int bufferViewConfigId); void receiveMessage(const Message &msg); void showChannelList(NetworkId netId = NetworkId()); + void showCoreInfoDlg(); void showSettingsDlg(); - void showNetworkDlg(); - void showManageViewsDlg(); - void lockVerticalDocks(bool lock); + void on_actionEditNetworks_triggered(); + void on_actionManageViews_triggered(); + void on_actionLockDockPositions_toggled(bool lock); void showAboutDlg(); void showDebugConsole(); @@ -98,7 +102,10 @@ class MainWin : public QMainWindow { void loadLayout(); void saveLayout(); - + + void desktopNotificationClosed(uint id, uint reason); + void desktopNotificationInvoked(uint id, const QString & action); + signals: void connectToCore(const QVariantMap &connInfo); void disconnectFromCore(); @@ -109,6 +116,7 @@ class MainWin : public QMainWindow { QtUi *gui; QMenu *systrayMenu; + QLabel *coreLagLabel; QLabel *sslLabel; TitleSetter _titleSetter; @@ -146,8 +154,8 @@ class MainWin : public QMainWindow { QList _netViews; NickListWidget *nickListWidget; - QAction *actionEditNetworks; - QList networkActions; + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; friend class QtUi; };