Hide some of the bufferviews by default in order to not confuse new users too much.
[quassel.git] / src / qtui / nicklistwidget.h
index 6c95f9b..b21182d 100644 (file)
@@ -1,11 +1,11 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC 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        *
@@ -22,6 +22,7 @@
 #define _NICKLISTWIDGET_H_
 
 #include "ui_nicklistwidget.h"
+#include "types.h"
 
 #include <QHash>
 
@@ -31,17 +32,24 @@ class NickView;
 class NickListWidget : public QWidget {
   Q_OBJECT
 
-  public:
-    NickListWidget(QWidget *parent = 0);
-
-  public slots:
-    void setBuffer(Buffer *);
-    void reset();
-
-  private:
-    Ui::NickListWidget ui;
-    QHash<Buffer *, NickView *> nickViews;
-
+  Q_PROPERTY(BufferId currentBuffer READ currentBuffer WRITE setCurrentBuffer); // FIXME BufferId
+
+public:
+  NickListWidget(QWidget *parent = 0);
+
+public slots:
+  BufferId currentBuffer() const;
+  void setCurrentBuffer(BufferId bufferId);
+  void reset();
+             
+private slots:
+  void removeBuffer(BufferId bufferId);
+  
+private:
+  Ui::NickListWidget ui;
+  QHash<BufferId, NickView *> nickViews;
+  BufferId _currentBuffer;
+  
 };
 
 #endif