summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmisc.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircmisc.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmisc.h27
1 files changed, 23 insertions, 4 deletions
diff --git a/noncore/net/opieirc/ircmisc.h b/noncore/net/opieirc/ircmisc.h
index 4df6ce0..7151e6b 100644
--- a/noncore/net/opieirc/ircmisc.h
+++ b/noncore/net/opieirc/ircmisc.h
@@ -13,60 +13,79 @@
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 18
19*/ 19*/
20 20
21#ifndef __IRCMISC_H 21#ifndef __IRCMISC_H
22#define __IRCMISC_H 22#define __IRCMISC_H
23 23
24#include <qtabwidget.h> 24#include <qtabwidget.h>
25#include <qlineedit.h>
25#include <qtabbar.h> 26#include <qtabbar.h>
26#include <qlabel.h> 27#include <qlabel.h>
27#include <qcolor.h> 28#include <qcolor.h>
28#include <qvector.h> 29#include <qarray.h>
29 30
30/* IRCFramedColorLabel is used to display a color */ 31/* IRCFramedColorLabel is used to display a color */
31 32
32class IRCColorLabel : public QLabel { 33class IRCColorLabel : public QLabel {
33 Q_OBJECT 34 Q_OBJECT
34public: 35public:
35 IRCColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0); 36 IRCColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0);
36 QColor color(); 37 QColor color();
37 void mousePressEvent(QMouseEvent *event); 38 void mousePressEvent(QMouseEvent *event);
38protected: 39protected:
39 QColor m_color; 40 QColor m_color;
40}; 41};
41 42
42class IRCFramedColorLabel : public QWidget { 43class IRCFramedColorLabel : public QWidget {
43 Q_OBJECT 44 Q_OBJECT
44public: 45public:
45 IRCFramedColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0); 46 IRCFramedColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0);
46 QColor color(); 47 QColor color();
47protected: 48protected:
48 IRCColorLabel *m_label; 49 IRCColorLabel *m_label;
49}; 50};
50 51
51/* Custom colored QTabWidget */ 52/* Custom colored QTabWidget */
52 53
54class QExtTab : public QTab {
55public:
56 QColor color;
57};
58
53class IRCTabWidget : public QTabWidget { 59class IRCTabWidget : public QTabWidget {
54 Q_OBJECT 60 Q_OBJECT
55public: 61public:
56 IRCTabWidget(QWidget *parent = 0, const char *name = 0); 62 IRCTabWidget(QWidget *parent = 0, const char *name = 0);
57 void setTabColor(int index, const QColor *color); 63 void setTabColor(int index, QColor color);
58}; 64};
59 65
60class IRCTabBar : public QTabBar { 66class IRCTabBar : public QTabBar {
61 Q_OBJECT 67 Q_OBJECT
62public: 68public:
63 IRCTabBar(QWidget *parent = 0, const char *name = 0); 69 IRCTabBar(QWidget *parent = 0, const char *name = 0);
64 void setTabColor(int index, const QColor *color); 70 void setTabColor(int index, QColor color);
65protected: 71protected:
66 void paintLabel(QPainter*, const QRect&, QTab*, bool) const; 72 void paintLabel(QPainter*, const QRect&, QTab*, bool) const;
67 int insertTab(QTab *, int index = -1); 73 int insertTab(QTab *, int index = -1);
68protected: 74protected:
69 QVector<QColor> m_colors; 75 QArray<QColor> m_colors;
76};
77
78/* A QLineEdit with history functionality */
79
80class IRCHistoryLineEdit : public QLineEdit {
81 Q_OBJECT
82public:
83 IRCHistoryLineEdit(QWidget *parent = 0, const char *name = 0);
84protected:
85 void keyPressEvent(QKeyEvent *);
86protected:
87 QStringList m_history;
88 int m_index;
70}; 89};
71 90
72#endif /* __IRCMISC_H */ 91#endif /* __IRCMISC_H */