summaryrefslogtreecommitdiff
path: root/plasma/configdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'plasma/configdialog.h')
-rw-r--r--plasma/configdialog.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/plasma/configdialog.h b/plasma/configdialog.h
new file mode 100644
index 0000000..ea0d7a5
--- /dev/null
+++ b/plasma/configdialog.h
@@ -0,0 +1,28 @@
+
+
+#ifndef CONFIGDIALOG_H
+#define CONFIGDIALOG_H
+
+#include "ui_config.h"
+
+class ConfigDialog : public QWidget
+{
+ Q_OBJECT
+
+ public:
+
+ ConfigDialog(QWidget* parent);
+ ~ConfigDialog();
+
+ void setSmoothScaling(bool smooth);
+ bool smoothScaling() const;
+ void setHost(QString host);
+ QString host() const;
+ void setPort(unsigned int port);
+ unsigned int port() const;
+
+ Ui::config ui;
+
+};
+
+#endif // CONFIGDIALOG_H