fixed slow buffer switches
[quassel.git] / src / qtui / nicklistwidget.h
index 5a091b8..3db7e08 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   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  *
 #define _NICKLISTWIDGET_H_
 
 #include "ui_nicklistwidget.h"
+#include "types.h"
 
 #include <QHash>
 
+#include <QPointer>
+#include <QItemSelectionModel>
+
+#include "buffermodel.h"
+
 class Buffer;
 class NickView;
 
 class NickListWidget : public QWidget {
   Q_OBJECT
 
-  public:
-    NickListWidget(QWidget *parent = 0);
+public:
+  NickListWidget(QWidget *parent = 0);
+
+  inline BufferModel *model() { return _bufferModel; }
+  void setModel(BufferModel *bufferModel);
+
+  inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
+  void setSelectionModel(QItemSelectionModel *selectionModel);
+
+public slots:
+  void reset();
 
-  public slots:
-    void setBuffer(Buffer *);
-    void reset();
+protected:
+  virtual QSize sizeHint() const;
 
-  private slots:
-    void bufferDestroyed(QObject *);
+protected slots:
+//   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
+//   virtual void commitData(QWidget *editor);
+  virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
+//   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
+//   virtual void editorDestroyed(QObject *editor);
+  virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
+//   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
+//   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
 
-  private:
-    Ui::NickListWidget ui;
-    QHash<Buffer *, NickView *> nickViews;
+private slots:
+  void removeBuffer(BufferId bufferId);
+  void setCurrentBuffer(BufferId bufferId);
+  
+private:
+  Ui::NickListWidget ui;
+  QHash<BufferId, NickView *> nickViews;
 
+  QPointer<BufferModel> _bufferModel;
+  QPointer<QItemSelectionModel> _selectionModel;
 };
 
 #endif