Add debug menu entry for reloading the stylesheets
[quassel.git] / src / qtui / nicklistwidget.h
index 5a091b8..18f966a 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#ifndef _NICKLISTWIDGET_H_
-#define _NICKLISTWIDGET_H_
+#ifndef NICKLISTWIDGET_H_
+#define NICKLISTWIDGET_H_
 
 #include "ui_nicklistwidget.h"
+#include "abstractitemview.h"
+#include "buffermodel.h"
+
+#include "types.h"
 
 #include <QHash>
+#include <QDockWidget>
 
 class Buffer;
 class NickView;
+class QDockWidget;
 
-class NickListWidget : public QWidget {
+class NickListWidget : public AbstractItemView {
   Q_OBJECT
 
-  public:
-    NickListWidget(QWidget *parent = 0);
+public:
+  NickListWidget(QWidget *parent = 0);
+
+public slots:
+  void showWidget(bool visible);
+
+signals:
+  void nickSelectionChanged(const QModelIndexList &);
+
+protected:
+  virtual QSize sizeHint() const;
+  virtual void hideEvent(QHideEvent *);
+  virtual void showEvent(QShowEvent *);
+
+protected slots:
+  virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
+  virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
 
-  public slots:
-    void setBuffer(Buffer *);
-    void reset();
+private slots:
+  void removeBuffer(BufferId bufferId);
+  void nickSelectionChanged();
 
-  private slots:
-    void bufferDestroyed(QObject *);
+private:
+  Ui::NickListWidget ui;
+  QHash<BufferId, NickView *> nickViews;
+
+  QDockWidget *dock() const;
+};
+
+
+// ==============================
+//  NickList Dock
+// ==============================
+class NickListDock : public QDockWidget {
+  Q_OBJECT
 
-  private:
-    Ui::NickListWidget ui;
-    QHash<Buffer *, NickView *> nickViews;
+public:
+  NickListDock(const QString &title, QWidget *parent = 0);
+  // ~NickListDock();
 
+  // virtual bool event(QEvent *event);
 };
 
 #endif