00001 // -*- c++ -*- 00002 00003 #ifndef KVNCCONNECTION_H 00004 #define KVNCCONNECTION_H 00005 00006 #include "kvncconndlgbase.h" 00007 #include "krfbserver.h" 00008 00009 00010 class KVNCConnDlg : public KVNCConnDlgBase 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 KVNCConnDlg( KRFBServer *options, 00016 QWidget *parent = 0, char *name = 0, bool modal = true ); 00017 ~KVNCConnDlg(); 00018 00019 protected: 00020 void accept(); 00021 private slots: 00022 void save(); 00023 void showPassword(int); 00024 00025 private: 00026 KRFBServer tmpOptions; 00027 KRFBServer * options; 00028 }; 00029 00030 #endif // KVNCCONNECTION_H 00031 00032 00033 00034
1.4.2