summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileconfig.cpp10
-rw-r--r--noncore/apps/opie-console/profileconfig.h4
-rw-r--r--noncore/apps/opie-console/profilemanager.cpp5
3 files changed, 18 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/profileconfig.cpp b/noncore/apps/opie-console/profileconfig.cpp
index 8b16920..bd089c8 100644
--- a/noncore/apps/opie-console/profileconfig.cpp
+++ b/noncore/apps/opie-console/profileconfig.cpp
@@ -30,6 +30,16 @@ void ProfileConfig::clearAll() {
30void ProfileConfig::clearGroup( const QString& str ) { 30void ProfileConfig::clearGroup( const QString& str ) {
31 QString cur =git.key(); 31 QString cur =git.key();
32 setGroup( str ); 32 setGroup( str );
33 Config::clearGroup(); 33 Config::clearGroup();
34 setGroup( cur ); 34 setGroup( cur );
35} 35}
36QMap<QString, QString> ProfileConfig::items( const QString& group )const {
37 QMap<QString, QString> map;
38 QMap<QString, ConfigGroup>::ConstIterator it;
39 it = Config::groups.find( group );
40
41 if (it != Config::groups.end() )
42 map = it.data();
43
44 return map;
45}
diff --git a/noncore/apps/opie-console/profileconfig.h b/noncore/apps/opie-console/profileconfig.h
index e2e149c..f371ead 100644
--- a/noncore/apps/opie-console/profileconfig.h
+++ b/noncore/apps/opie-console/profileconfig.h
@@ -7,11 +7,15 @@
7 7
8class ProfileConfig : public Config { 8class ProfileConfig : public Config {
9public: 9public:
10 ProfileConfig( const QString& prof ); 10 ProfileConfig( const QString& prof );
11 ~ProfileConfig(); 11 ~ProfileConfig();
12 QStringList groups()const; 12 QStringList groups()const;
13 /**
14 * return the items in the group
15 */
16 QMap<QString, QString> items(const QString& group)const;
13 void clearGroup( const QString& ); 17 void clearGroup( const QString& );
14 void clearAll(); 18 void clearAll();
15 19
16}; 20};
17#endif 21#endif
diff --git a/noncore/apps/opie-console/profilemanager.cpp b/noncore/apps/opie-console/profilemanager.cpp
index db36686..54b184d 100644
--- a/noncore/apps/opie-console/profilemanager.cpp
+++ b/noncore/apps/opie-console/profilemanager.cpp
@@ -35,12 +35,15 @@ void ProfileManager::load() {
35 prof.setTerminal( conf.readNumEntry("terminal") ); 35 prof.setTerminal( conf.readNumEntry("terminal") );
36 36
37 m_list.append( prof ); 37 m_list.append( prof );
38 } 38 }
39 39
40} 40}
41void ProfileManager::clear() {
42 m_list.clear();
43}
41Profile::ValueList ProfileManager::all()const { 44Profile::ValueList ProfileManager::all()const {
42 return m_list; 45 return m_list;
43} 46}
44Session* ProfileManager::fromProfile( const Profile& prof) { 47Session* ProfileManager::fromProfile( const Profile& prof) {
45 Session* session = new Session(); 48 Session* session = new Session();
46 session->setName( prof.name() ); 49 session->setName( prof.name() );
@@ -52,11 +55,11 @@ Session* ProfileManager::fromProfile( const Profile& prof) {
52 * load widget 55 * load widget
53 * set colors + fonts 56 * set colors + fonts
54 */ 57 */
55 return session; 58 return session;
56} 59}
57void ProfileManager::save( ) { 60void ProfileManager::save( ) {
58 m_list.clear();
59 ProfileConfig conf("opie-console-profiles"); 61 ProfileConfig conf("opie-console-profiles");
62 conf.clearAll();
60 Session* se= 0l; 63 Session* se= 0l;
61 // FIXME save 64 // FIXME save
62} 65}