X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=9787832c60f017aa2cf9bba921ac4217b7ea666c;hb=65d88a7f8c37e549a259aba85c52b7916b89a17d;hp=e2858961e96c36e8880b9441b9270a978ff41ee9;hpb=f18d7db990cb23c87fa3586e19b2f8aa5509a66c;p=quassel.git diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index e2858961..9787832c 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -24,19 +24,25 @@ #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; +#include "desktopnotifications.h" + //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { Q_OBJECT @@ -46,22 +52,40 @@ class MainWin : public QMainWindow { virtual ~MainWin(); void init(); - QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); + 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); - AbstractUiMsg *layoutMsg(const Message &); + public slots: + void setTrayIconActivity(bool active = false); protected: void closeEvent(QCloseEvent *event); + virtual void changeEvent(QEvent *event); 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(); void showCoreConnectionDlg(bool autoConnect = false); @@ -72,6 +96,16 @@ class MainWin : public QMainWindow { void clientNetworkUpdated(); void connectOrDisconnectFromNet(); + void changeTopic(const QString &topic); + void makeTrayIconBlink(); + void saveStatusBarStatus(bool enabled); + + 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(); @@ -81,34 +115,48 @@ class MainWin : public QMainWindow { Ui::MainWin ui; QtUi *gui; + QMenu *systrayMenu; + QLabel *coreLagLabel; + QLabel *sslLabel; + + TitleSetter _titleSetter; + void setupMenus(); void setupViews(); void setupNickWidget(); void setupChatMonitor(); void setupInputWidget(); void setupTopicWidget(); + void setupStatusBar(); void setupSystray(); void setupSettingsDlg(); + void toggleVisibility(); + 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; + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; - DebugConsole *debugConsole; friend class QtUi; };