summaryrefslogtreecommitdiff
path: root/noncore/comm/keypebble/kvncconndlg.h
Unidiff
Diffstat (limited to 'noncore/comm/keypebble/kvncconndlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/comm/keypebble/kvncconndlg.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/noncore/comm/keypebble/kvncconndlg.h b/noncore/comm/keypebble/kvncconndlg.h
new file mode 100644
index 0000000..fae7d62
--- a/dev/null
+++ b/noncore/comm/keypebble/kvncconndlg.h
@@ -0,0 +1,33 @@
1// -*- c++ -*-
2
3#ifndef KVNCCONNECTION_H
4#define KVNCCONNECTION_H
5
6#include "kvncconndlgbase.h"
7#include "krfbserver.h"
8
9
10class KVNCConnDlg : public KVNCConnDlgBase
11{
12 Q_OBJECT
13
14 public:
15 KVNCConnDlg( KRFBServer *options,
16 QWidget *parent = 0, char *name = 0, bool modal = true );
17 ~KVNCConnDlg();
18
19 protected:
20 void accept();
21 private slots:
22 void save();
23
24 private:
25 KRFBServer tmpOptions;
26 KRFBServer * options;
27};
28
29#endif // KVNCCONNECTION_H
30
31
32
33