cleanups (WiP)
[quassel.git] / src / qtui / inputwidget.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef INPUTWIDGET_H
22 #define INPUTWIDGET_H
23
24 #include "ui_inputwidget.h"
25
26 #include "abstractitemview.h"
27 #include "buffermodel.h"
28 #include "bufferinfo.h"
29 #include "identity.h"
30 #include "network.h"
31
32 class InputWidget : public AbstractItemView {
33   Q_OBJECT
34
35 public:
36   InputWidget(QWidget *parent = 0);
37   virtual ~InputWidget();
38
39   const Network *currentNetwork() const;
40
41 protected slots:
42   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
43   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
44
45 private slots:
46   void sendText(QString text);
47   void changeNick(const QString &newNick) const;
48
49   void setNetwork(const Network *network);
50   void setIdentity(const IdentityId &identityId);
51   void updateNickSelector() const;
52   void updateEnabledState();
53
54   BufferInfo currentBufferInfo() const;
55
56 signals:
57   void userInput(BufferInfo, QString msg) const;
58
59 private:
60   Ui::InputWidget ui;
61   
62   NetworkId _networkId;
63   IdentityId _identityId;
64 };
65
66
67 class MouseWheelFilter : public QObject {
68   Q_OBJECT
69
70 public:
71   MouseWheelFilter(QObject *parent = 0);
72   virtual bool eventFilter(QObject *obj, QEvent *event);
73 };
74
75 #endif // INPUTWIDGET_H