-rw-r--r-- | noncore/comm/keypebble/krfboptions.cpp | 48 | ||||
-rw-r--r-- | noncore/comm/keypebble/krfboptions.h | 4 | ||||
-rw-r--r-- | noncore/comm/keypebble/kvnc.cpp | 1 | ||||
-rw-r--r-- | noncore/comm/keypebble/kvncoptionsdlg.cpp | 1 | ||||
-rw-r--r-- | noncore/comm/keypebble/main.cpp | 1 |
5 files changed, 29 insertions, 26 deletions
diff --git a/noncore/comm/keypebble/krfboptions.cpp b/noncore/comm/keypebble/krfboptions.cpp index 9daf3f0..8c4320b 100644 --- a/noncore/comm/keypebble/krfboptions.cpp +++ b/noncore/comm/keypebble/krfboptions.cpp @@ -1,46 +1,50 @@ #include <qpe/config.h> #include <qpe/qpeapplication.h> #include "krfboptions.h" KRFBOptions::KRFBOptions() { - Config config( "keypebble" ); - readSettings( &config ); + readSettings(); } KRFBOptions::~KRFBOptions() { - Config config( "keypebble" ); - writeSettings( &config ); + writeSettings(); } -void KRFBOptions::readSettings( Config *config ) +void KRFBOptions::readSettings() { - hexTile = config->readBoolEntry( "HexTile" ); - corre = config->readBoolEntry( "CORRE" ); - rre = config->readBoolEntry( "RRE" ); - copyrect = config->readBoolEntry( "CopyRect", true ); - colors256 = config->readBoolEntry( "Colors256" ); - shared = config->readBoolEntry( "Shared" ); - readOnly = config->readBoolEntry( "ReadOnly" ); - updateRate = config->readNumEntry( "UpdateRate", 50 ); + Config config( "keypebble" ); + config.setGroup("Settings"); + hexTile = config.readBoolEntry( "HexTile", 0 ); + corre = config.readBoolEntry( "CORRE", 0 ); + rre = config.readBoolEntry( "RRE", 0 ); + copyrect = config.readBoolEntry( "CopyRect", 1 ); + colors256 = config.readBoolEntry( "Colors256", 0 ); + shared = config.readBoolEntry( "Shared", 0 ); + readOnly = config.readBoolEntry( "ReadOnly", 0 ); + updateRate = config.readNumEntry( "UpdateRate", 50 ); + deIconify = config.readBoolEntry( "DeIconify", 0 ); } -void KRFBOptions::writeSettings( Config *config ) +void KRFBOptions::writeSettings() { - config->writeEntry( "HexTile", hexTile ); - config->writeEntry( "CORRE", corre ); - config->writeEntry( "RRE", rre ); - config->writeEntry( "CopyRect", copyrect ); - config->writeEntry( "Colors256", colors256 ); - config->writeEntry( "Shared", shared ); - config->writeEntry( "ReadOnly", readOnly ); - config->writeEntry( "UpdateRate", updateRate ); + Config config( "keypebble" ); + config.setGroup("Settings"); + config.writeEntry( "HexTile", hexTile ); + config.writeEntry( "CORRE", corre ); + config.writeEntry( "RRE", rre ); + config.writeEntry( "CopyRect", copyrect ); + config.writeEntry( "Colors256", colors256 ); + config.writeEntry( "Shared", shared ); + config.writeEntry( "ReadOnly", readOnly ); + config.writeEntry( "UpdateRate", updateRate ); + config.writeEntry( "DeIconify", deIconify ); } int KRFBOptions::encodings() { // Initially one because we always support raw encoding int count = 1; count += hexTile ? 1 : 0; diff --git a/noncore/comm/keypebble/krfboptions.h b/noncore/comm/keypebble/krfboptions.h index 41cea35..fd2b65c 100644 --- a/noncore/comm/keypebble/krfboptions.h +++ b/noncore/comm/keypebble/krfboptions.h @@ -7,18 +7,18 @@ class Config; class KRFBOptions { public: KRFBOptions(); ~KRFBOptions(); int encodings(); - void readSettings( Config *config ); - void writeSettings( Config *config ); + void readSettings(); + void writeSettings(); bool hexTile; bool corre; bool rre; bool copyrect; bool colors256; bool shared; diff --git a/noncore/comm/keypebble/kvnc.cpp b/noncore/comm/keypebble/kvnc.cpp index bb18999..43cffc5 100644 --- a/noncore/comm/keypebble/kvnc.cpp +++ b/noncore/comm/keypebble/kvnc.cpp @@ -66,17 +66,16 @@ KVNC::KVNC( const char *name ) : QMainWindow( 0, name ) connect( cornerButton, SIGNAL(pressed()), this, SLOT(showMenu()) ); canvas->setCornerWidget( cornerButton ); QTimer::singleShot( 0, canvas, SLOT(openConnection()) ); } KVNC::~KVNC() { - } void KVNC::openURL( const QUrl &url ) { canvas->openURL( url ); } void KVNC::setupActions() diff --git a/noncore/comm/keypebble/kvncoptionsdlg.cpp b/noncore/comm/keypebble/kvncoptionsdlg.cpp index b9f57d1..9d61c7b 100644 --- a/noncore/comm/keypebble/kvncoptionsdlg.cpp +++ b/noncore/comm/keypebble/kvncoptionsdlg.cpp @@ -42,12 +42,13 @@ void KVNCOptionsDlg::accept() options->hexTile = hex->isChecked(); options->corre = corre->isChecked(); options->rre = rre->isChecked(); options->copyrect = copyRect->isChecked(); options->deIconify = deIconify->isChecked(); options->colors256 = bit->isChecked(); options->shared = shared->isChecked(); options->updateRate = timeBox->value(); + options->writeSettings(); QDialog::accept(); } diff --git a/noncore/comm/keypebble/main.cpp b/noncore/comm/keypebble/main.cpp index a32a368..ee3cd79 100644 --- a/noncore/comm/keypebble/main.cpp +++ b/noncore/comm/keypebble/main.cpp @@ -10,9 +10,8 @@ int main( int argc, char **argv ) KVNC *view = new KVNC( "Keypebble" ); app.showMainWidget( view ); if ( argc > 1 ) view->openURL( QUrl(argv[1]) ); return app.exec(); } - |