author | imm <imm> | 2002-09-01 14:34:26 (UTC) |
---|---|---|
committer | imm <imm> | 2002-09-01 14:34:26 (UTC) |
commit | 09c844dbf402d76f58b01397e850bd5c17c0535b (patch) (side-by-side diff) | |
tree | c3f518bb7fd9a241f4b139146d0d2c89b2140b71 | |
parent | 90d1c76275ab950d96cda2a2f65dab1bbcc50a40 (diff) | |
download | opie-09c844dbf402d76f58b01397e850bd5c17c0535b.zip opie-09c844dbf402d76f58b01397e850bd5c17c0535b.tar.gz opie-09c844dbf402d76f58b01397e850bd5c17c0535b.tar.bz2 |
config fix
-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 @@ -5,36 +5,40 @@ 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 ); } 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 @@ -13,6 +13,6 @@ public: int encodings(); - void readSettings( Config *config ); - void writeSettings( Config *config ); + void readSettings(); + void writeSettings(); bool hexTile; 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 @@ -72,5 +72,4 @@ KVNC::KVNC( const char *name ) : QMainWindow( 0, name ) KVNC::~KVNC() { - } 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 @@ -48,4 +48,5 @@ void KVNCOptionsDlg::accept() 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 @@ -16,3 +16,2 @@ int main( int argc, char **argv ) return app.exec(); } - |