diff options
author | horchi <vdr@jwendel.de> | 2017-03-05 16:47:41 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-05 16:47:41 +0100 |
commit | 22ffee20bbacbc3378e4ba0df5b7f0c3daaeffc0 (patch) | |
tree | de46c945c62d43d1febb027b5bfa075e58c5b69a /plasma/configdialog.h | |
download | vdr-plugin-graphtftng-master.tar.gz vdr-plugin-graphtftng-master.tar.bz2 |
Diffstat (limited to 'plasma/configdialog.h')
-rw-r--r-- | plasma/configdialog.h | 28 |
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 |