summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmisc.h
authorwazlaf <wazlaf>2002-09-30 13:43:36 (UTC)
committer wazlaf <wazlaf>2002-09-30 13:43:36 (UTC)
commit5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d (patch) (side-by-side diff)
tree12d8e59152c434e0774f067d5b0163578d603daf /noncore/net/opieirc/ircmisc.h
parentb753c264b7acd26aba9f5a73c1fa0a7deb0b73a3 (diff)
downloadopie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.zip
opie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.tar.gz
opie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.tar.bz2
history functionality, tabs switch colors, extended settings dialog
Diffstat (limited to 'noncore/net/opieirc/ircmisc.h') (more/less context) (ignore 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 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __IRCMISC_H
#define __IRCMISC_H
#include <qtabwidget.h>
+#include <qlineedit.h>
#include <qtabbar.h>
#include <qlabel.h>
#include <qcolor.h>
-#include <qvector.h>
+#include <qarray.h>
/* IRCFramedColorLabel is used to display a color */
class IRCColorLabel : public QLabel {
Q_OBJECT
public:
IRCColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0);
QColor color();
void mousePressEvent(QMouseEvent *event);
protected:
QColor m_color;
};
class IRCFramedColorLabel : public QWidget {
Q_OBJECT
public:
IRCFramedColorLabel(QColor color, QWidget *parent = 0, const char *name = 0, WFlags f = 0);
QColor color();
protected:
IRCColorLabel *m_label;
};
/* Custom colored QTabWidget */
+class QExtTab : public QTab {
+public:
+ QColor color;
+};
+
class IRCTabWidget : public QTabWidget {
Q_OBJECT
public:
IRCTabWidget(QWidget *parent = 0, const char *name = 0);
- void setTabColor(int index, const QColor *color);
+ void setTabColor(int index, QColor color);
};
class IRCTabBar : public QTabBar {
Q_OBJECT
public:
IRCTabBar(QWidget *parent = 0, const char *name = 0);
- void setTabColor(int index, const QColor *color);
+ void setTabColor(int index, QColor color);
protected:
void paintLabel(QPainter*, const QRect&, QTab*, bool) const;
int insertTab(QTab *, int index = -1);
protected:
- QVector<QColor> m_colors;
+ QArray<QColor> m_colors;
+};
+
+/* A QLineEdit with history functionality */
+
+class IRCHistoryLineEdit : public QLineEdit {
+ Q_OBJECT
+public:
+ IRCHistoryLineEdit(QWidget *parent = 0, const char *name = 0);
+protected:
+ void keyPressEvent(QKeyEvent *);
+protected:
+ QStringList m_history;
+ int m_index;
};
#endif /* __IRCMISC_H */