diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-10-10 07:00:14 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-10-10 07:00:14 +0000 |
| commit | 3b60dc4e32446afed425bd35f15b8000503c2788 (patch) | |
| tree | c84487d5d0a75954bdef1324ae7406a60d102d24 /examples/GuiClient/xmlConsoleDialog.h | |
| parent | 0a028cd53598276d375cde1d09e870294ad4d626 (diff) | |
| download | qxmpp-3b60dc4e32446afed425bd35f15b8000503c2788.tar.gz | |
first version of xml console
Diffstat (limited to 'examples/GuiClient/xmlConsoleDialog.h')
| -rw-r--r-- | examples/GuiClient/xmlConsoleDialog.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/GuiClient/xmlConsoleDialog.h b/examples/GuiClient/xmlConsoleDialog.h new file mode 100644 index 00000000..08caec59 --- /dev/null +++ b/examples/GuiClient/xmlConsoleDialog.h @@ -0,0 +1,26 @@ +#ifndef XMLCONSOLEDIALOG_H
+#define XMLCONSOLEDIALOG_H
+
+#include <QDialog>
+#include "QXmppLogger.h"
+
+namespace Ui {
+ class xmlConsoleDialog;
+}
+
+class xmlConsoleDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit xmlConsoleDialog(QWidget *parent = 0);
+ ~xmlConsoleDialog();
+
+public slots:
+ void message(QXmppLogger::MessageType, const QString &);
+
+private:
+ Ui::xmlConsoleDialog *ui;
+};
+
+#endif // XMLCONSOLEDIALOG_H
|
