summaryrefslogtreecommitdiff
authorzecke <zecke>2002-09-28 20:07:52 (UTC)
committer zecke <zecke>2002-09-28 20:07:52 (UTC)
commitb6df65ad2ffb50f029b96ebf9d0d78dfa23f3f19 (patch) (side-by-side diff)
treea9cac491c119fb644ac75750cd715fce16c4c778
parentcb33923e1db6df3ead352f21c94b80a5785d70ca (diff)
downloadopie-b6df65ad2ffb50f029b96ebf9d0d78dfa23f3f19.zip
opie-b6df65ad2ffb50f029b96ebf9d0d78dfa23f3f19.tar.gz
opie-b6df65ad2ffb50f029b96ebf9d0d78dfa23f3f19.tar.bz2
Profiles, loading and saving completed
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/profile.cpp6
-rw-r--r--noncore/apps/opie-console/profile.h3
-rw-r--r--noncore/apps/opie-console/profilemanager.cpp23
3 files changed, 26 insertions, 6 deletions
diff --git a/noncore/apps/opie-console/profile.cpp b/noncore/apps/opie-console/profile.cpp
index cdf595e..c8f5eb0 100644
--- a/noncore/apps/opie-console/profile.cpp
+++ b/noncore/apps/opie-console/profile.cpp
@@ -35,2 +35,5 @@ Profile::~Profile() {
}
+QMap<QString, QString> Profile::conf()const {
+ return m_conf;
+}
QString Profile::name()const {
@@ -106 +109,4 @@ bool Profile::readBoolEntry( const QString& key, bool def )const {
}
+void Profile::setConf( const QMap<QString, QString>& conf ) {
+ m_conf = conf;
+};
diff --git a/noncore/apps/opie-console/profile.h b/noncore/apps/opie-console/profile.h
index eff2be1..9956bdb 100644
--- a/noncore/apps/opie-console/profile.h
+++ b/noncore/apps/opie-console/profile.h
@@ -42,3 +42,3 @@ public:
*/
- QMap<QString, QString> conf();
+ QMap<QString, QString> conf()const;
void clearConf();
@@ -57,2 +57,3 @@ public:
void setTerminal( int term );
+ void setConf( const QMap<QString, QString>& );
private:
diff --git a/noncore/apps/opie-console/profilemanager.cpp b/noncore/apps/opie-console/profilemanager.cpp
index 54b184d..c8a4db5 100644
--- a/noncore/apps/opie-console/profilemanager.cpp
+++ b/noncore/apps/opie-console/profilemanager.cpp
@@ -24,5 +24,2 @@ void ProfileManager::load() {
*/
- /*
- * QAsciiDict Parsing FIXME
- */
for ( it = groups.begin(); it != groups.end(); ++it ) {
@@ -35,3 +32,5 @@ void ProfileManager::load() {
prof.setTerminal( conf.readNumEntry("terminal") );
+ prof.setConf( conf.items( (*it) ) );
+ /* now add it */
m_list.append( prof );
@@ -54,3 +53,3 @@ Session* ProfileManager::fromProfile( const Profile& prof) {
* load emulation
- * load widget
+ * load widget?
* set colors + fonts
@@ -62,3 +61,17 @@ void ProfileManager::save( ) {
conf.clearAll();
- Session* se= 0l;
+ Profile::ValueList::Iterator it;
+ for (it = m_list.begin(); it != m_list.end(); ++it ) {
+ conf.setGroup( (*it).name() );
+ conf.writeEntry( "name", (*it).name() );
+ conf.writeEntry( "ioplayer", (*it).ioLayerName() );
+ conf.writeEntry( "back", (*it).background() );
+ conf.writeEntry( "fore", (*it).foreground() );
+ conf.writeEntry( "terminal", (*it).terminal() );
+ /* now the config stuff */
+ QMap<QString, QString> map = (*it).conf();
+ QMap<QString, QString>::Iterator it;
+ for ( it = map.begin(); it != map.end(); ++it ) {
+ conf.writeEntry( it.key(), it.data() );
+ }
+ }
// FIXME save