X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Finputwidget.h;h=89fe39386b8200fc1cf109c7ea162f3741e64161;hp=01daa29361835463d685af0c12a6ccc535cfa257;hb=b3a8232d4959903591c309d765da9c271d0a761f;hpb=453731c6d3c5eac2df5e98c4f179afabed4451a1 diff --git a/src/qtui/inputwidget.h b/src/qtui/inputwidget.h index 01daa293..89fe3938 100644 --- a/src/qtui/inputwidget.h +++ b/src/qtui/inputwidget.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,57 +22,60 @@ #define INPUTWIDGET_H #include "ui_inputwidget.h" -#include -#include +#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 ¤t, 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 rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end); + 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(NetworkId networkId); + void setIdentity(IdentityId identityId); + void connectMyIrcUser(); 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; - QPointer _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