Switch some dirty hacking to using real infrastructure. A Chatline now contains three...
[quassel.git] / src / qtui / bufferwidget.h
index 317d3ee..4d9bf56 100644 (file)
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#ifndef _BUFFERWIDGET_H_
-#define _BUFFERWIDGET_H_
+#ifndef BUFFERWIDGET_H_
+#define BUFFERWIDGET_H_
 
 #include "ui_bufferwidget.h"
 
-#include "chatview.h"
-#include "types.h"
+#include "abstractbuffercontainer.h"
 
-class Network;
-class ChatView;
-class ChatWidget;
-class LayoutThread;
-
-#include "buffermodel.h"
-#include <QItemSelectionModel>
-
-//! Displays the contents of a Buffer.
-/**
-*/
-class BufferWidget : public QWidget {
+class BufferWidget : public AbstractBufferContainer {
   Q_OBJECT
 
-public:
-  BufferWidget(QWidget *parent = 0);
-  virtual ~BufferWidget();
-  void init();
-
-  inline BufferModel *model() { return _bufferModel; }
-  void setModel(BufferModel *bufferModel);
-
-  inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
-  void setSelectionModel(QItemSelectionModel *selectionModel);
-
-  Network *currentNetwork() const;
-  
-signals:
-  void userInput(QString msg) const;
-  void aboutToClose();
-
-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 slots:
-  void enterPressed();
-  void changeNick(const QString &newNick) const;
-  void removeBuffer(BufferId bufferId);
+  public:
+    BufferWidget(QWidget *parent);
+    virtual ~BufferWidget();
 
-  void setCurrentBuffer(BufferId bufferId);
-  void updateNickSelector() const;
+  protected:
+    virtual AbstractChatView *createChatView(BufferId);
+    virtual void removeChatView(BufferId);
 
-private:
-  Ui::BufferWidget ui;
-  QHash<BufferId, ChatWidget *> _chatWidgets;
+  protected slots:
+    virtual void showChatView(BufferId);
 
-  QPointer<BufferModel> _bufferModel;
-  QPointer<QItemSelectionModel> _selectionModel;
+  private:
+    Ui::BufferWidget ui;
+    QHash<BufferId, QWidget *> _chatViews;
 };
 
 #endif