00001 // -*- c++ -*- 00002 00003 #ifndef KRFBOPTIONS_H 00004 #define KRFBOPTIONS_H 00005 00006 class Config; 00007 00008 class KRFBServer 00009 { 00010 public: 00011 KRFBServer(); 00012 ~KRFBServer(); 00013 00014 int encodings(); 00015 00016 QString name; 00017 QString hostname; 00018 QString password; 00019 int display; 00020 00021 bool hexTile; 00022 bool corre; 00023 bool rre; 00024 bool copyrect; 00025 00026 bool colors256; 00027 bool shared; 00028 bool readOnly; 00029 bool deIconify; 00030 00031 int updateRate; 00032 int scaleFactor; 00033 }; 00034 00035 #endif // KRFBOPTIONS_H
1.4.2