X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fmainwin.h;h=080e78f5c43000148318a20228903c98c42267ff;hb=94be5fb31afd8f3befa8cb2cf1b3c2e5ef3cdba5;hp=1689ee6168e96d4d0ca05337d7f4f95c42a4659f;hpb=e671e9da1edaab37ec403f575979f9a92a766e9a;p=quassel.git diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 1689ee61..080e78f5 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -24,45 +24,87 @@ #include "ui_mainwin.h" #include "qtui.h" -#include "bufferviewfilter.h" +#include "titlesetter.h" + +#include +#include -class ServerListDlg; -class CoreConnectDlg; class Buffer; -class SettingsDlg; +class BufferViewConfig; +class MsgProcessorStatusWidget; class QtUi; class Message; class NickListWidget; +#ifdef HAVE_DBUS +# include "desktopnotifications.h" +#endif + //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { Q_OBJECT public: - MainWin(QtUi *gui, QWidget *parent = 0); + MainWin(QWidget *parent = 0); virtual ~MainWin(); void init(); - void addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); + void addBufferView(BufferViewConfig *config = 0); + + 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); - 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 showServerList(); + void addBufferView(int bufferViewConfigId); + void removeBufferView(int bufferViewConfigId); + void messagesInserted(const QModelIndex &parent, int start, int end); + void showChannelList(NetworkId netId = NetworkId()); + void showCoreInfoDlg(); void showSettingsDlg(); + void on_actionEditNetworks_triggered(); + void on_actionManageViews_triggered(); + void on_actionLockDockPositions_toggled(bool lock); + void showAboutDlg(); + void on_actionDebugNetworkModel_triggered(bool); + void showCoreConnectionDlg(bool autoConnect = false); - void coreConnectionDlgFinished(int result); - void showBuffer(BufferInfo); - void showBuffer(Buffer *); + void clientNetworkCreated(NetworkId); + void clientNetworkRemoved(NetworkId); + void clientNetworkUpdated(); + void connectOrDisconnectFromNet(); + + 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); @@ -71,27 +113,45 @@ class MainWin : public QMainWindow { private: Ui::MainWin ui; - QtUi *gui; + + QMenu *systrayMenu; + QLabel *coreLagLabel; + QLabel *sslLabel; + MsgProcessorStatusWidget *msgProcessorStatusWidget; + + TitleSetter _titleSetter; void setupMenus(); void setupViews(); - void setupSettingsDlg(); + void setupNickWidget(); + void setupChatMonitor(); + void setupInputWidget(); + void setupTopicWidget(); + void setupStatusBar(); + void setupSystray(); + + void toggleVisibility(); void enableMenus(); QSystemTrayIcon *systray; + QIcon activeTrayIcon; + QIcon onlineTrayIcon; + QIcon offlineTrayIcon; + bool trayIconActive; + QTimer *timer; - ServerListDlg *serverListDlg; - CoreConnectDlg *coreConnectDlg; - SettingsDlg *settingsDlg; - - uint currentBuffer; + BufferId currentBuffer; QString currentProfile; - QList netViews; - QDockWidget *nickDock; + QList _netViews; NickListWidget *nickListWidget; +#ifdef HAVE_DBUS + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; +#endif + friend class QtUi; };