-rw-r--r-- | noncore/comm/keypebble/krfbserver.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/noncore/comm/keypebble/krfbserver.h b/noncore/comm/keypebble/krfbserver.h new file mode 100644 index 0000000..f87eecc --- a/dev/null +++ b/noncore/comm/keypebble/krfbserver.h | |||
@@ -0,0 +1,34 @@ | |||
1 | // -*- c++ -*- | ||
2 | |||
3 | #ifndef KRFBOPTIONS_H | ||
4 | #define KRFBOPTIONS_H | ||
5 | |||
6 | class Config; | ||
7 | |||
8 | class KRFBServer | ||
9 | { | ||
10 | public: | ||
11 | KRFBServer(); | ||
12 | ~KRFBServer(); | ||
13 | |||
14 | int encodings(); | ||
15 | |||
16 | QString name; | ||
17 | QString hostname; | ||
18 | QString password; | ||
19 | int display; | ||
20 | |||
21 | bool hexTile; | ||
22 | bool corre; | ||
23 | bool rre; | ||
24 | bool copyrect; | ||
25 | |||
26 | bool colors256; | ||
27 | bool shared; | ||
28 | bool readOnly; | ||
29 | bool deIconify; | ||
30 | |||
31 | int updateRate; | ||
32 | }; | ||
33 | |||
34 | #endif // KRFBOPTIONS_H | ||