X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=eb3f8153349ef629e418941501e6c22f9ddf048f;hp=2e7bf640fb19d53906eeaab36d610308fe56f02c;hb=cb1b16fce88b240c735b942aad44a61a1dd3f28d;hpb=9fd4619e9aca7d53d7c5df156a0b25956a1bf682 diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 2e7bf640..eb3f8153 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,73 +24,133 @@ #include "ui_mainwin.h" #include "qtui.h" -#include "bufferviewfilter.h" +#include "titlesetter.h" +#include "sessionsettings.h" + +#include +#include -class ServerListDlg; -class CoreConnectDlg; class Buffer; -class SettingsDlg; -class QtUi; +class BufferViewConfig; +class MsgProcessorStatusWidget; 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 QStringList &); + 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); + void saveStateToSession(const QString &sessionId); + void saveStateToSessionSettings(SessionSettings &s); 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 importBacklog(); + 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(); void requestBacklog(BufferInfo, QVariant, QVariant); - void importOldBacklog(); 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; + QList _netViews; + NickListWidget *nickListWidget; + +#ifdef HAVE_DBUS + org::freedesktop::Notifications *desktopNotifications; + quint32 notificationId; +#endif friend class QtUi; };