blob: f9fc31cbd06f725f2c5904d37c99ed6873793ef0 [file] [log] [blame]
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -07001#ifndef SETTINGDIALOG_H
2#define SETTINGDIALOG_H
3#include "ui_settingdialog.h"
Zhenkai Zhu7d385562012-06-02 12:55:07 -07004#include <QKeyEvent>
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -07005
6class SettingDialog : public QDialog, private Ui::SettingDialog
7{
8 Q_OBJECT
9
10public:
11 SettingDialog(QWidget *parent = 0, QString nick = QString("NULL"), QString chatroom = QString("NULL"), QString prefix = QString("NULL"));
Zhenkai Zhu7d385562012-06-02 12:55:07 -070012 virtual void keyPressEvent(QKeyEvent *e);
Zhenkai Zhu3472e3f2012-06-02 00:44:42 -070013
14private slots:
15 void update();
16
17signals:
18 void updated(QString, QString, QString);
19
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -070020};
21
22#endif