Fix fonts configuration for the input widget, too
[quassel.git] / src / qtui / inputwidget.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 MultiLineEdit;
33
34 class InputWidget : public AbstractItemView {
35   Q_OBJECT
36
37 public:
38   InputWidget(QWidget *parent = 0);
39   virtual ~InputWidget();
40
41   const Network *currentNetwork() const;
42
43   inline MultiLineEdit* inputLine() const { return ui.inputEdit; }
44
45 protected:
46   virtual bool eventFilter(QObject *watched, QEvent *event);
47
48 protected slots:
49   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
50   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
51   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
52
53 private slots:
54   void setCustomFont(const QVariant &font);
55   void setUseCustomFont(const QVariant &);
56   void setEnableSpellCheck(const QVariant &);
57   void setShowNickSelector(const QVariant &);
58   void setMaxLines(const QVariant &);
59   void setMultiLineEnabled(const QVariant &);
60   void setScrollBarsEnabled(const QVariant &);
61
62   void sendText(const QString &text) const;
63   void changeNick(const QString &newNick) const;
64
65   void setNetwork(NetworkId networkId);
66   void setIdentity(IdentityId identityId);
67   void connectMyIrcUser();
68   void updateNickSelector() const;
69   void updateEnabledState();
70
71   BufferInfo currentBufferInfo() const;
72
73 private:
74   Ui::InputWidget ui;
75
76   NetworkId _networkId;
77   IdentityId _identityId;
78 };
79
80
81 class MouseWheelFilter : public QObject {
82   Q_OBJECT
83
84 public:
85   MouseWheelFilter(QObject *parent = 0);
86   virtual bool eventFilter(QObject *obj, QEvent *event);
87 };
88
89 #endif // INPUTWIDGET_H