X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=a055115ab5c2243759cd376753644c6d8acb3d85;hp=1689ee6168e96d4d0ca05337d7f4f95c42a4659f;hb=85b55cf023c96f4dbd61ec415a15214f99e281b3;hpb=e671e9da1edaab37ec403f575979f9a92a766e9a diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 1689ee61..a055115a 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,74 +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 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); + 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 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); 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; };