X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=6263919b5e67458f69a207b639d5ed85ad5fa146;hp=d84163049c6416fd25255aba770988be3736cff9;hb=c9ef00c67a47448e92398a5dce6ce5b74e77783a;hpb=6250a7e25eb2c0a6794d4aa5679c70082d825031 diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index d8416304..6263919b 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-07 by the Quassel IRC Team * * 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,7 @@ class Buffer; class SettingsDlg; class QtUi; class Message; +class NickListWidget; //!\brief The main window of Quassel's QtUi. class MainWin : public QMainWindow { @@ -63,13 +64,10 @@ class MainWin : public QMainWindow { 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,6 +89,8 @@ class MainWin : public QMainWindow { QString currentProfile; QList netViews; + QDockWidget *nickDock; + NickListWidget *nickListWidget; friend class QtUi; };