summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircsettings.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc/ircsettings.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircsettings.h17
1 files changed, 9 insertions, 8 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
@@ -4,45 +4,46 @@
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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 __IRCSETTINGS_H
#define __IRCSETTINGS_H
#include <qpe/config.h>
#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;
+ 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 */