X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=57638099bb3c80314f0ccfa3bf7a830e1ef127d7;hb=2e6dc76ae100a6b8e1b1661e422995f90083500e;hp=2e7bf640fb19d53906eeaab36d610308fe56f02c;hpb=9fd4619e9aca7d53d7c5df156a0b25956a1bf682;p=quassel.git diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 2e7bf640..57638099 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 * @@ -32,6 +32,9 @@ class Buffer; class SettingsDlg; class QtUi; class Message; +class NickListWidget; + +class DebugConsole; //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { @@ -42,7 +45,7 @@ class MainWin : public QMainWindow { virtual ~MainWin(); void init(); - void addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QStringList &); + void addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList &); AbstractUiMsg *layoutMsg(const Message &); @@ -57,19 +60,17 @@ class MainWin : public QMainWindow { void showServerList(); void showSettingsDlg(); + void showDebugConsole(); void showCoreConnectionDlg(bool autoConnect = false); void coreConnectionDlgFinished(int result); void showBuffer(BufferInfo); void showBuffer(Buffer *); - void importBacklog(); - signals: void connectToCore(const QVariantMap &connInfo); void disconnectFromCore(); void requestBacklog(BufferInfo, QVariant, QVariant); - void importOldBacklog(); private: Ui::MainWin ui; @@ -91,7 +92,10 @@ class MainWin : public QMainWindow { QString currentProfile; QList netViews; + QDockWidget *nickDock; + NickListWidget *nickListWidget; + DebugConsole *debugConsole; friend class QtUi; };