Refactor the system tray's context menu
[quassel.git] / src / uisupport / multilineedit.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 MULTILINEEDIT_H_
22 #define MULTILINEEDIT_H_
23
24 #include <QKeyEvent>
25 #include <QHash>
26 #include <QTextEdit>
27
28 #ifdef HAVE_KDE
29 #  include <KDE/KTextEdit>
30 #endif
31
32 class QKeyEvent;
33 class TabCompleter;
34
35 class MultiLineEdit : public
36 #ifdef HAVE_KDE
37                   KTextEdit
38 #else
39                   QTextEdit
40 #endif
41 {
42   Q_OBJECT
43
44 public:
45   enum Mode {
46     SingleLine,
47     MultiLine
48   };
49
50   MultiLineEdit(QWidget *parent = 0);
51   ~MultiLineEdit();
52
53   void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly
54
55   // Compatibility methods with the rest of the classes which still expect this to be a QLineEdit
56   inline QString text() { return toPlainText(); }
57   inline QString html() { return toHtml(); }
58   inline int cursorPosition() { return textCursor().position(); }
59   inline void insert(const QString &newText) { insertPlainText(newText); }
60   inline void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier)); }
61   inline bool hasSelectedText() { return textCursor().hasSelection(); }
62
63   inline bool isSingleLine() const { return _singleLine; }
64   inline bool pasteProtectionEnabled() const { return _pasteProtectionEnabled; }
65
66   virtual QSize sizeHint() const;
67   virtual QSize minimumSizeHint() const;
68
69   inline QString mircColorFromRGB(QString rgbColor) const { return _mircColorMap.key(rgbColor); }
70   inline QString rgbColorFromMirc(QString mircColor) const { return _mircColorMap[mircColor]; }
71   inline QMap<QString, QString>  mircColorMap() const { return _mircColorMap; }
72
73 public slots:
74   void setMode(Mode mode);
75   void setMinHeight(int numLines);
76   void setMaxHeight(int numLines);
77   void setScrollBarsEnabled(bool enable = true);
78   void setSpellCheckEnabled(bool enable = true);
79   void setPasteProtectionEnabled(bool enable = true, QWidget *msgBoxParent = 0);
80
81   // Note: Enabling wrap will make isSingleLine() not work correctly, so only use this if minHeight() > 1!
82   void setWordWrapEnabled(bool enable = true);
83
84 signals:
85   void textEntered(const QString &text);
86   void noTextEntered();
87
88 protected:
89   virtual void keyPressEvent(QKeyEvent * event);
90   virtual void resizeEvent(QResizeEvent *event);
91
92 private slots:
93   void on_returnPressed();
94   void on_returnPressed(const QString &text);
95   void on_textChanged();
96   void on_documentHeightChanged(qreal height);
97
98   bool addToHistory(const QString &text, bool temporary = false);
99   void historyMoveForward();
100   void historyMoveBack();
101
102   QString convertHtmlToMircCodes(const QString &text);
103   QString convertMircCodesToHtml(const QString &text);
104
105 private:
106   QStringList history;
107   QHash<int, QString> tempHistory;
108   qint32 idx;
109   Mode _mode;
110   bool _singleLine;
111   int _minHeight;
112   int _maxHeight;
113   bool _scrollBarsEnabled;
114   bool _pasteProtectionEnabled;
115
116   QSize _sizeHint;
117   qreal _lastDocumentHeight;
118
119   QMap<QString, QString> _mircColorMap;
120
121   void reset();
122   void showHistoryEntry();
123   void updateScrollBars();
124   void updateSizeHint();
125 };
126
127 #endif