summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/settingsimpl.cpp
authorandyq <andyq>2002-10-17 22:50:20 (UTC)
committer andyq <andyq>2002-10-17 22:50:20 (UTC)
commitb61a21e46590228b6c5800d168fc57789ce733f6 (patch) (side-by-side diff)
treeda0732436919ccb19167eb124898615d499e5914 /noncore/settings/aqpkg/settingsimpl.cpp
parent51dbf76486cb81a7cb34c07483b344c8ea7a8a24 (diff)
downloadopie-b61a21e46590228b6c5800d168fc57789ce733f6.zip
opie-b61a21e46590228b6c5800d168fc57789ce733f6.tar.gz
opie-b61a21e46590228b6c5800d168fc57789ce733f6.tar.bz2
Changed dlg to add linkToRoot checkbox to destinations tab
Diffstat (limited to 'noncore/settings/aqpkg/settingsimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/settingsimpl.cpp47
1 files changed, 39 insertions, 8 deletions
diff --git a/noncore/settings/aqpkg/settingsimpl.cpp b/noncore/settings/aqpkg/settingsimpl.cpp
index 81e89ed..9ee3a33 100644
--- a/noncore/settings/aqpkg/settingsimpl.cpp
+++ b/noncore/settings/aqpkg/settingsimpl.cpp
@@ -24,2 +24,7 @@ using namespace std;
#include <qtabwidget.h>
+#include <qcheckbox.h>
+
+#ifdef QWS
+#include <qpe/config.h>
+#endif
@@ -85,2 +90,3 @@ void SettingsImpl :: editServer( int sel )
serverurl->setText( s->getServerUrl() );
+ active->setChecked( s->isServerActive() );
}
@@ -93,2 +99,3 @@ void SettingsImpl :: newServer()
servername->setFocus();
+ active->setChecked( true );
}
@@ -114,2 +121,4 @@ void SettingsImpl :: changeServerDetails()
s->setServerUrl( serverurl->text() );
+ s->setActive( active->isChecked() );
+
@@ -122,4 +131,4 @@ void SettingsImpl :: changeServerDetails()
// See if this server is the active server
- if ( dataMgr->getActiveServer() == serverName )
- dataMgr->setActiveServer( newName );
+// if ( dataMgr->getActiveServer() == serverName )
+// dataMgr->setActiveServer( newName );
@@ -131,3 +140,5 @@ void SettingsImpl :: changeServerDetails()
{
- dataMgr->getServerList().push_back( Server( newName, serverurl->text() ) );
+ Server s( newName, serverurl->text() );
+ dataMgr->getServerList().push_back( Server( newName, serverurl->text() ) );
+ dataMgr->getServerList().end()->setActive( active->isChecked() );
servers->insertItem( newName );
@@ -143,6 +154,7 @@ void SettingsImpl :: editDestination( int sel )
currentSelectedDestination = sel;
- Destination *s = dataMgr->getDestination( destinations->currentText() );
- destinationName = s->getDestinationName();
- destinationname->setText( s->getDestinationName() );
- destinationurl->setText( s->getDestinationPath() );
+ Destination *d = dataMgr->getDestination( destinations->currentText() );
+ destinationName = d->getDestinationName();
+ destinationname->setText( d->getDestinationName() );
+ destinationurl->setText( d->getDestinationPath() );
+ linkToRoot->setChecked( d->linkToRoot() );
}
@@ -155,2 +167,3 @@ void SettingsImpl :: newDestination()
destinationname->setFocus();
+ linkToRoot->setChecked( true );
}
@@ -169,3 +182,8 @@ void SettingsImpl :: changeDestinationDetails()
- QString newName = destinationname->text();
+#ifdef QWS
+ Config cfg( "aqpkg" );
+ cfg.setGroup( "destinations" );
+#endif
+
+ QString newName = destinationname->text();
if ( !newdestination )
@@ -176,2 +194,3 @@ void SettingsImpl :: changeDestinationDetails()
d->setDestinationPath( destinationurl->text() );
+ d->linkToRoot( linkToRoot->isChecked() );
@@ -186,2 +205,8 @@ void SettingsImpl :: changeDestinationDetails()
}
+#ifdef QWS
+ QString key = newName;
+ key += "_linkToRoot";
+ int val = d->linkToRoot();
+ cfg.writeEntry( key, val );
+#endif
}
@@ -193,2 +218,8 @@ void SettingsImpl :: changeDestinationDetails()
newdestination = false;
+
+#ifdef QWS
+ QString key = newName;
+ key += "_linkToRoot";
+ cfg.writeEntry( key, true );
+#endif
}