X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=495a12333e21a9340e34d8f8f6fb9a124994849f;hp=f572e1d5201a05c09de84ef011fe89db2d85e954;hb=e561e02a8d2f1f009559d17c7b1c66cb6f4e2a5a;hpb=cf7c5679c2475bb563cd64e15477c485d89368a3 diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index f572e1d5..495a1233 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -24,11 +24,13 @@ #include "ui_mainwin.h" #include "qtui.h" +#include "titlesetter.h" #include #include class ServerListDlg; +class ChannelListDlg; class CoreConnectDlg; class Buffer; class BufferViewConfig; @@ -38,6 +40,9 @@ class Message; class NickListWidget; class DebugConsole; +#ifdef HAVE_DBUS +# include "desktopnotifications.h" +#endif //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { @@ -50,9 +55,12 @@ class MainWin : public QMainWindow { void init(); void addBufferView(BufferViewConfig *config = 0); - AbstractUiMsg *layoutMsg(const Message &); void displayTrayIconMessage(const QString &title, const QString &message); +#ifdef HAVE_DBUS + void sendDesktopNotification(const QString &title, const QString &message); +#endif + virtual bool event(QEvent *event); public slots: @@ -65,6 +73,7 @@ class MainWin : public QMainWindow { protected slots: void connectedToCore(); void setConnectedState(); + void updateLagIndicator(int lag); void securedConnection(); void disconnectedFromCore(); void setDisconnectedState(); @@ -74,11 +83,15 @@ class MainWin : public QMainWindow { void addBufferView(int bufferViewConfigId); void removeBufferView(int bufferViewConfigId); void receiveMessage(const Message &msg); + void showChannelList(NetworkId netId = NetworkId()); + void showCoreInfoDlg(); void showSettingsDlg(); - void showNetworkDlg(); - void showManageViewsDlg(); + void on_actionEditNetworks_triggered(); + void on_actionManageViews_triggered(); + void on_actionLockDockPositions_toggled(bool lock); void showAboutDlg(); void showDebugConsole(); + void on_actionDebugNetworkModel_triggered(bool); void showCoreConnectionDlg(bool autoConnect = false); void coreConnectionDlgFinished(int result); @@ -94,7 +107,12 @@ class MainWin : public QMainWindow { void loadLayout(); void saveLayout(); - + +#ifdef HAVE_DBUS + void desktopNotificationClosed(uint id, uint reason); + void desktopNotificationInvoked(uint id, const QString & action); +#endif + signals: void connectToCore(const QVariantMap &connInfo); void disconnectFromCore(); @@ -105,8 +123,11 @@ class MainWin : public QMainWindow { QtUi *gui; QMenu *systrayMenu; + QLabel *coreLagLabel; QLabel *sslLabel; + TitleSetter _titleSetter; + void setupMenus(); void setupViews(); void setupNickWidget(); @@ -130,6 +151,7 @@ class MainWin : public QMainWindow { QTimer *timer; CoreConnectDlg *coreConnectDlg; + ChannelListDlg *channelListDlg; SettingsDlg *settingsDlg; DebugConsole *debugConsole; @@ -139,8 +161,10 @@ class MainWin : public QMainWindow { QList _netViews; NickListWidget *nickListWidget; - QAction *actionEditNetworks; - QList networkActions; +#ifdef HAVE_DBUS + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; +#endif friend class QtUi; };