changes in the color settingspage towards enabling the background color
[quassel.git] / src / qtui / bufferwidget.h
index 317d3ee..e484a18 100644 (file)
@@ -29,7 +29,6 @@
 class Network;
 class ChatView;
 class ChatWidget;
-class LayoutThread;
 
 #include "buffermodel.h"
 #include <QItemSelectionModel>
@@ -51,12 +50,8 @@ public:
   inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
   void setSelectionModel(QItemSelectionModel *selectionModel);
 
-  Network *currentNetwork() const;
+  inline BufferId currentBuffer() const { return _currentBuffer; }
   
-signals:
-  void userInput(QString msg) const;
-  void aboutToClose();
-
 protected slots:
 //   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
 //   virtual void commitData(QWidget *editor);
@@ -68,12 +63,8 @@ protected slots:
 //   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
 
 private slots:
-  void enterPressed();
-  void changeNick(const QString &newNick) const;
   void removeBuffer(BufferId bufferId);
-
   void setCurrentBuffer(BufferId bufferId);
-  void updateNickSelector() const;
 
 private:
   Ui::BufferWidget ui;
@@ -81,6 +72,8 @@ private:
 
   QPointer<BufferModel> _bufferModel;
   QPointer<QItemSelectionModel> _selectionModel;
+
+  BufferId _currentBuffer;
 };
 
 #endif