added zoom feature: "ctrl +" magnifies, "ctrl -" demagnifies and "ctrl 0" normalizes
[quassel.git] / src / qtui / inputwidget.h
index 01daa29..fc358f2 100644 (file)
 #define INPUTWIDGET_H
 
 #include "ui_inputwidget.h"
-#include <QPointer>
-#include <QItemSelectionModel>
 
+#include "abstractitemview.h"
 #include "buffermodel.h"
 #include "bufferinfo.h"
+#include "identity.h"
+#include "network.h"
 
-class Network;
+class InputLine;
 
-class InputWidget : public QWidget {
+class InputWidget : public AbstractItemView {
   Q_OBJECT
 
 public:
   InputWidget(QWidget *parent = 0);
   virtual ~InputWidget();
 
-  inline BufferModel *model() { return _bufferModel; }
-  void setModel(BufferModel *bufferModel);
-
-  inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
-  void setSelectionModel(QItemSelectionModel *selectionModel);
-
   const Network *currentNetwork() const;
 
+  inline  InputLine* inputLine() const { return ui.inputEdit; }
+
 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);
+  virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
 
 private slots:
-  void enterPressed();
+  void sendText(QString text);
   void changeNick(const QString &newNick) const;
 
+  void setNetwork(const Network *network);
+  void setIdentity(const IdentityId &identityId);
   void updateNickSelector() const;
+  void updateEnabledState();
+
+  BufferInfo currentBufferInfo() const;
 
 signals:
   void userInput(BufferInfo, QString msg) const;
 
 private:
   Ui::InputWidget ui;
-
-  bool validBuffer;
-  BufferInfo currentBufferInfo;
   
-  QPointer<BufferModel> _bufferModel;
-  QPointer<QItemSelectionModel> _selectionModel;
+  NetworkId _networkId;
+  IdentityId _identityId;
+};
+
 
+class MouseWheelFilter : public QObject {
+  Q_OBJECT
+
+public:
+  MouseWheelFilter(QObject *parent = 0);
+  virtual bool eventFilter(QObject *obj, QEvent *event);
 };
 
 #endif // INPUTWIDGET_H