summaryrefslogtreecommitdiff
path: root/plasma/configdialog.h
blob: ea0d7a5e99b8ccdf261da9a6cc06046f15c1c48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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