X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=b2ea75a4b9581c8778884db348d3737aed8632aa;hp=40764f311a30ccbbc4aadb9a418086ed98c50249;hb=c00b7e45809b6f3d6d02abbc1285728fe01af374;hpb=ba9d9d766830eab8cc238c60a69f67c8b527aa7e diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 40764f31..b2ea75a4 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -24,19 +24,26 @@ #include "ui_mainwin.h" #include "qtui.h" -#include "bufferviewfilter.h" +#include "titlesetter.h" #include +#include class ServerListDlg; +class ChannelListDlg; class CoreConnectDlg; class Buffer; +class BufferViewConfig; class SettingsDlg; class QtUi; 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 { Q_OBJECT @@ -46,9 +53,18 @@ class MainWin : public QMainWindow { virtual ~MainWin(); void init(); - QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); + 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: + void setTrayIconActivity(bool active = false); protected: void closeEvent(QCloseEvent *event); @@ -56,12 +72,23 @@ class MainWin : public QMainWindow { protected slots: void connectedToCore(); + void setConnectedState(); + void updateLagIndicator(int lag); + void securedConnection(); void disconnectedFromCore(); + void setDisconnectedState(); void systrayActivated( QSystemTrayIcon::ActivationReason ); private slots: + 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 on_actionEditNetworks_triggered(); + void on_actionManageViews_triggered(); + void on_actionLockDockPositions_toggled(bool lock); void showAboutDlg(); void showDebugConsole(); @@ -73,6 +100,18 @@ class MainWin : public QMainWindow { void clientNetworkUpdated(); void connectOrDisconnectFromNet(); + void changeTopic(const QString &topic); + void makeTrayIconBlink(); + void saveStatusBarStatus(bool enabled); + + 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(); @@ -83,6 +122,10 @@ class MainWin : public QMainWindow { QtUi *gui; QMenu *systrayMenu; + QLabel *coreLagLabel; + QLabel *sslLabel; + + TitleSetter _titleSetter; void setupMenus(); void setupViews(); @@ -90,6 +133,7 @@ class MainWin : public QMainWindow { void setupChatMonitor(); void setupInputWidget(); void setupTopicWidget(); + void setupStatusBar(); void setupSystray(); void setupSettingsDlg(); @@ -99,21 +143,31 @@ class MainWin : public QMainWindow { void enableMenus(); QSystemTrayIcon *systray; + QIcon activeTrayIcon; + QIcon onlineTrayIcon; + QIcon offlineTrayIcon; + bool trayIconActive; + QTimer *timer; CoreConnectDlg *coreConnectDlg; + ChannelListDlg *channelListDlg; SettingsDlg *settingsDlg; DebugConsole *debugConsole; BufferId currentBuffer; QString currentProfile; - QList netViews; - QDockWidget *nickDock; + QList _netViews; NickListWidget *nickListWidget; QAction *actionEditNetworks; QList networkActions; +#ifdef HAVE_DBUS + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; +#endif + friend class QtUi; };