-rw-r--r-- | core/launcher/main.cpp | 56 | ||||
-rw-r--r-- | core/launcher/serverapp.cpp | 28 |
2 files changed, 1 insertions, 83 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index a86aca6..b119399 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp | |||
@@ -72,56 +72,7 @@ static void cleanup() | |||
72 | 72 | ||
73 | static void refreshTimeZoneConfig() | 73 | static void refreshTimeZoneConfig() |
74 | { | 74 | { |
75 | /* ### FIXME timezone handling */ | 75 | /* ### FIXME timezone handling for qtopia */ |
76 | #if 0 | ||
77 | // We need to help WorldTime in setting up its configuration for | ||
78 | // the current translation | ||
79 | // BEGIN no tr | ||
80 | const char *defaultTz[] = { | ||
81 | "America/New_York", | ||
82 | "America/Los_Angeles", | ||
83 | "Europe/Oslo", | ||
84 | "Asia/Tokyo", | ||
85 | "Asia/Hong_Kong", | ||
86 | "Australia/Brisbane", | ||
87 | 0 | ||
88 | }; | ||
89 | // END no tr | ||
90 | |||
91 | TimeZone curZone; | ||
92 | QString zoneID; | ||
93 | int zoneIndex; | ||
94 | Config cfg = Config( "WorldTime" ); | ||
95 | cfg.setGroup( "TimeZones" ); | ||
96 | if (!cfg.hasKey( "Zone0" )){ | ||
97 | // We have no existing timezones use the defaults which are untranslated strings | ||
98 | QString currTz = TimeZone::current().id(); | ||
99 | QStringList zoneDefaults; | ||
100 | zoneDefaults.append( currTz ); | ||
101 | for ( int i = 0; defaultTz[i] && zoneDefaults.count() < 6; i++ ) { | ||
102 | if ( defaultTz[i] != currTz ) | ||
103 | zoneDefaults.append( defaultTz[i] ); | ||
104 | } | ||
105 | zoneIndex = 0; | ||
106 | for (QStringList::Iterator it = zoneDefaults.begin(); it != zoneDefaults.end() ; ++it){ | ||
107 | cfg.writeEntry( "Zone" + QString::number( zoneIndex ) , *it); | ||
108 | zoneIndex++; | ||
109 | } | ||
110 | } | ||
111 | // We have an existing list of timezones refresh the | ||
112 | // translations of TimeZone name | ||
113 | zoneIndex = 0; | ||
114 | while (cfg.hasKey( "Zone"+ QString::number( zoneIndex ))){ | ||
115 | zoneID = cfg.readEntry( "Zone" + QString::number( zoneIndex )); | ||
116 | curZone = TimeZone( zoneID ); | ||
117 | if ( !curZone.isValid() ){ | ||
118 | odebug << "initEnvironment() Invalid TimeZone " << zoneID << "" << oendl; | ||
119 | break; | ||
120 | } | ||
121 | cfg.writeEntry( "ZoneName" + QString::number( zoneIndex ), curZone.city() ); | ||
122 | zoneIndex++; | ||
123 | } | ||
124 | #endif | ||
125 | } | 76 | } |
126 | 77 | ||
127 | void initEnvironment() | 78 | void initEnvironment() |
@@ -150,11 +101,6 @@ void initEnvironment() | |||
150 | config.writeEntry("Language", lang); | 101 | config.writeEntry("Language", lang); |
151 | config.write(); | 102 | config.write(); |
152 | 103 | ||
153 | #if 0 | ||
154 | setenv( "QWS_SIZE", "240x320", 0 ); | ||
155 | #endif | ||
156 | |||
157 | |||
158 | 104 | ||
159 | QString env(getenv("QWS_DISPLAY")); | 105 | QString env(getenv("QWS_DISPLAY")); |
160 | if (env.contains("Transformed")) { | 106 | if (env.contains("Transformed")) { |
diff --git a/core/launcher/serverapp.cpp b/core/launcher/serverapp.cpp index 54cc313..3d88873 100644 --- a/core/launcher/serverapp.cpp +++ b/core/launcher/serverapp.cpp | |||
@@ -516,34 +516,6 @@ void ServerApplication::login(bool at_poweron) | |||
516 | #include <time.h> | 516 | #include <time.h> |
517 | #endif | 517 | #endif |
518 | 518 | ||
519 | #if 0 | ||
520 | static bool blanked=FALSE; | ||
521 | |||
522 | static void blankScreen() | ||
523 | { | ||
524 | #ifdef QWS | ||
525 | QWidget w(0, 0, Qt::WStyle_Customize | Qt::WStyle_NoBorder | Qt::WStyle_Tool | Qt::WStyle_StaysOnTop | Qt::WPaintUnclipped); | ||
526 | w.resize( qt_screen->width(), qt_screen->height() ); | ||
527 | w.move(0, 0); | ||
528 | |||
529 | QPainter p(&w); | ||
530 | p.fillRect(w.rect(), QBrush(QColor(255,255,255)) ); | ||
531 | p.end(); | ||
532 | w.repaint(); | ||
533 | |||
534 | blanked = TRUE; | ||
535 | #endif | ||
536 | } | ||
537 | |||
538 | static void darkScreen() | ||
539 | { | ||
540 | /* ### Screen blanking ODevice */ | ||
541 | #if 0 | ||
542 | qpe_setBacklight(0); // force off | ||
543 | #endif | ||
544 | } | ||
545 | #endif | ||
546 | |||
547 | namespace { | 519 | namespace { |
548 | void execAutoStart(const QDateTime& suspendTime ) { | 520 | void execAutoStart(const QDateTime& suspendTime ) { |
549 | QString appName; | 521 | QString appName; |