X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=57c8bb3d96f078961c15fdd387af027a4eab21a6;hp=1689ee6168e96d4d0ca05337d7f4f95c42a4659f;hb=dcba0652ac1275877b98b06d6482924ee6df0cd1;hpb=e671e9da1edaab37ec403f575979f9a92a766e9a diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 1689ee61..57c8bb3d 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 * @@ -26,6 +26,8 @@ #include "qtui.h" #include "bufferviewfilter.h" +#include + class ServerListDlg; class CoreConnectDlg; class Buffer; @@ -33,6 +35,7 @@ class SettingsDlg; class QtUi; class Message; class NickListWidget; +class DebugConsole; //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { @@ -43,26 +46,34 @@ class MainWin : public QMainWindow { virtual ~MainWin(); void init(); - void addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); + QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); AbstractUiMsg *layoutMsg(const Message &); protected: void closeEvent(QCloseEvent *event); + virtual void changeEvent(QEvent *event); protected slots: void connectedToCore(); void disconnectedFromCore(); + void systrayActivated( QSystemTrayIcon::ActivationReason ); private slots: - - void showServerList(); void showSettingsDlg(); + void showNetworkDlg(); + void showAboutDlg(); + void showDebugConsole(); + 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 changeTopic(const QString &topic); signals: void connectToCore(const QVariantMap &connInfo); @@ -73,25 +84,38 @@ class MainWin : public QMainWindow { Ui::MainWin ui; QtUi *gui; + QMenu *systrayMenu; + void setupMenus(); void setupViews(); + void setupNickWidget(); + void setupChatMonitor(); + void setupInputWidget(); + void setupTopicWidget(); + void setupSystray(); + void setupSettingsDlg(); + void toggleVisibility(); + void enableMenus(); QSystemTrayIcon *systray; - ServerListDlg *serverListDlg; CoreConnectDlg *coreConnectDlg; SettingsDlg *settingsDlg; + DebugConsole *debugConsole; - uint currentBuffer; + BufferId currentBuffer; QString currentProfile; QList netViews; QDockWidget *nickDock; NickListWidget *nickListWidget; + QAction *actionEditNetworks; + QList networkActions; + friend class QtUi; };