summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircsettings.h
authordrw <drw>2002-12-30 00:52:51 (UTC)
committer drw <drw>2002-12-30 00:52:51 (UTC)
commitc7bbdeed0daeda9af5115ffa0f1fb1026a338e2d (patch) (side-by-side diff)
tree641b0a344cc9e274c39df282c4478dd74644d813 /noncore/net/opieirc/ircsettings.h
parent9ec4adfb12bd5c92427a79c6b63a064a0033a67a (diff)
downloadopie-c7bbdeed0daeda9af5115ffa0f1fb1026a338e2d.zip
opie-c7bbdeed0daeda9af5115ffa0f1fb1026a338e2d.tar.gz
opie-c7bbdeed0daeda9af5115ffa0f1fb1026a338e2d.tar.bz2
Use OTabWidget & OColorButtons in config dialog for consistency w/other apps (reduces executable size by ~4k as well).
Diffstat (limited to 'noncore/net/opieirc/ircsettings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircsettings.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/noncore/net/opieirc/ircsettings.h b/noncore/net/opieirc/ircsettings.h
index 190abaf..cb8d896 100644
--- a/noncore/net/opieirc/ircsettings.h
+++ b/noncore/net/opieirc/ircsettings.h
@@ -25,24 +25,25 @@
#include <qdialog.h>
#include <qlineedit.h>
+class OColorButton;
+
class IRCSettings : public QDialog {
Q_OBJECT
public:
IRCSettings(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags f = 0);
- QString getColorString(QWidget *widget);
~IRCSettings();
protected slots:
void accept();
protected:
- Config *m_config;
- QWidget *m_background;
- QWidget *m_text;
- QWidget *m_error;
- QWidget *m_self;
- QWidget *m_server;
- QWidget *m_other;
- QWidget *m_notification;
- QLineEdit *m_lines;
+ Config *m_config;
+ OColorButton *m_background;
+ OColorButton *m_text;
+ OColorButton *m_error;
+ OColorButton *m_self;
+ OColorButton *m_server;
+ OColorButton *m_other;
+ OColorButton *m_notification;
+ QLineEdit *m_lines;
};
#endif /* __IRCSETTINGS_H */