summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profilemanager.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/profilemanager.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/profilemanager.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/profilemanager.cpp b/noncore/apps/opie-console/profilemanager.cpp
index 72a5117..6ad08b5 100644
--- a/noncore/apps/opie-console/profilemanager.cpp
+++ b/noncore/apps/opie-console/profilemanager.cpp
@@ -19,25 +19,26 @@ void ProfileManager::load() {
19 ProfileConfig conf("opie-console-profiles"); 19 ProfileConfig conf("opie-console-profiles");
20 QStringList groups = conf.groups(); 20 QStringList groups = conf.groups();
21 QStringList::Iterator it; 21 QStringList::Iterator it;
22 22
23 /* 23 /*
24 * for each profile 24 * for each profile
25 */ 25 */
26 for ( it = groups.begin(); it != groups.end(); ++it ) { 26 for ( it = groups.begin(); it != groups.end(); ++it ) {
27 qWarning("group " + (*it) ); 27 qWarning("group " + (*it) );
28 conf.setGroup( (*it) ); 28 conf.setGroup( (*it) );
29 Profile prof; 29 Profile prof;
30 prof.setName( conf.readEntry("name") ); 30 prof.setName( conf.readEntry("name") );
31 prof.setIOLayer( conf.readEntry("iolayer") ); 31 prof.setIOLayer( conf.readEntry("iolayer").utf8() );
32 prof.setTerminalName( conf.readEntry("term").utf8() );
32 prof.setBackground( conf.readNumEntry("back") ); 33 prof.setBackground( conf.readNumEntry("back") );
33 prof.setForeground( conf.readNumEntry("fore") ); 34 prof.setForeground( conf.readNumEntry("fore") );
34 prof.setTerminal( conf.readNumEntry("terminal") ); 35 prof.setTerminal( conf.readNumEntry("terminal") );
35 prof.setConf( conf.items( (*it) ) ); 36 prof.setConf( conf.items( (*it) ) );
36 37
37 /* now add it */ 38 /* now add it */
38 m_list.append( prof ); 39 m_list.append( prof );
39 } 40 }
40 41
41} 42}
42void ProfileManager::clear() { 43void ProfileManager::clear() {
43 m_list.clear(); 44 m_list.clear();
@@ -56,25 +57,26 @@ Session* ProfileManager::fromProfile( const Profile& prof) {
56 * load widget? 57 * load widget?
57 * set colors + fonts 58 * set colors + fonts
58 */ 59 */
59 return session; 60 return session;
60} 61}
61void ProfileManager::save( ) { 62void ProfileManager::save( ) {
62 ProfileConfig conf("opie-console-profiles"); 63 ProfileConfig conf("opie-console-profiles");
63 conf.clearAll(); 64 conf.clearAll();
64 Profile::ValueList::Iterator it; 65 Profile::ValueList::Iterator it;
65 for (it = m_list.begin(); it != m_list.end(); ++it ) { 66 for (it = m_list.begin(); it != m_list.end(); ++it ) {
66 conf.setGroup( (*it).name() ); 67 conf.setGroup( (*it).name() );
67 conf.writeEntry( "name", (*it).name() ); 68 conf.writeEntry( "name", (*it).name() );
68 conf.writeEntry( "ioplayer", (*it).ioLayerName() ); 69 conf.writeEntry( "ioplayer", QString::fromUtf8( (*it).ioLayerName() ) );
70 conf.writeEntry( "term", QString::fromUtf8( (*it).terminalName() ) );
69 conf.writeEntry( "back", (*it).background() ); 71 conf.writeEntry( "back", (*it).background() );
70 conf.writeEntry( "fore", (*it).foreground() ); 72 conf.writeEntry( "fore", (*it).foreground() );
71 conf.writeEntry( "terminal", (*it).terminal() ); 73 conf.writeEntry( "terminal", (*it).terminal() );
72 /* now the config stuff */ 74 /* now the config stuff */
73 QMap<QString, QString> map = (*it).conf(); 75 QMap<QString, QString> map = (*it).conf();
74 QMap<QString, QString>::Iterator it; 76 QMap<QString, QString>::Iterator it;
75 for ( it = map.begin(); it != map.end(); ++it ) { 77 for ( it = map.begin(); it != map.end(); ++it ) {
76 conf.writeEntry( it.key(), it.data() ); 78 conf.writeEntry( it.key(), it.data() );
77 } 79 }
78 } 80 }
79} 81}
80void ProfileManager::setProfiles( const Profile::ValueList& list ) { 82void ProfileManager::setProfiles( const Profile::ValueList& list ) {