e5d6c1dea9f6cf67e0462e4b66cc2c422030dc45
[quassel.git] / src / qtui / inputwidget.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 #include <action.h>
32
33 class MultiLineEdit;
34
35 class InputWidget : public AbstractItemView {
36   Q_OBJECT
37
38 public:
39   InputWidget(QWidget *parent = 0);
40   virtual ~InputWidget();
41
42   const Network *currentNetwork() const;
43
44   inline MultiLineEdit* inputLine() const { return ui.inputEdit; }
45
46 protected:
47   virtual bool eventFilter(QObject *watched, QEvent *event);
48
49 protected slots:
50   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
51   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
52   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
53
54 private slots:
55   void setCustomFont(const QVariant &font);
56   void setUseCustomFont(const QVariant &);
57   void setEnableSpellCheck(const QVariant &);
58   void setShowNickSelector(const QVariant &);
59   void setMaxLines(const QVariant &);
60   void setMultiLineEnabled(const QVariant &);
61   void setScrollBarsEnabled(const QVariant &);
62
63   void on_inputEdit_textEntered(const QString &text) const;
64   void changeNick(const QString &newNick) const;
65
66   void setNetwork(NetworkId networkId);
67   void setIdentity(IdentityId identityId);
68   void connectMyIrcUser();
69   void updateNickSelector() const;
70   void updateEnabledState();
71
72   BufferInfo currentBufferInfo() const;
73
74   void currentCharFormatChanged(const QTextCharFormat &format);
75   void on_showStyleButton_toggled(bool checked);
76   void on_boldButton_clicked(bool checked);
77   void on_italicButton_clicked(bool checked);
78   void on_underlineButton_clicked(bool checked);
79   void colorChosen(QAction *action);
80   void colorHighlightChosen(QAction *action);
81
82 private:
83   Ui::InputWidget ui;
84
85   NetworkId _networkId;
86   IdentityId _identityId;
87   QMenu *_colorMenu, *_colorFillMenu;
88
89   void mergeFormatOnWordOrSelection(const QTextCharFormat &format);
90   void fontChanged(const QFont &f);
91   void colorChanged(const QColor &fg);
92   void colorHighlightChanged(const QColor &bg);
93   QIcon createColorToolButtonIcon(const QIcon &icon, const QColor &color);
94   QTextCharFormat getFormatOfWordOrSelection();
95   void setFormatOnWordOrSelection(const QTextCharFormat &format);
96 };
97
98
99 class MouseWheelFilter : public QObject {
100   Q_OBJECT
101
102 public:
103   MouseWheelFilter(QObject *parent = 0);
104   virtual bool eventFilter(QObject *obj, QEvent *event);
105 };
106
107 #endif // INPUTWIDGET_H