summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/main.cpp59
1 files changed, 39 insertions, 20 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp
index d11b6c5..0b38738 100644
--- a/core/launcher/main.cpp
+++ b/core/launcher/main.cpp
@@ -5,132 +5,151 @@
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "desktop.h" 21#include "desktop.h"
22#include "taskbar.h" 22#include "taskbar.h"
23#include "stabmon.h" 23#include "stabmon.h"
24 24
25#include <qpe/qpeapplication.h> 25#include <qpe/qpeapplication.h>
26#include <qpe/network.h> 26#include <qpe/network.h>
27#include <qpe/config.h> 27#include <qpe/config.h>
28#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) 28#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ )
29#include <qpe/custom.h> 29#include <qpe/custom.h>
30#endif 30#endif
31 31
32#include <opie/odevice.h> 32#include <opie/odevice.h>
33 33
34#include <qmessagebox.h> 34#include <qmessagebox.h>
35#include <qfile.h> 35#include <qfile.h>
36#include <qimage.h> 36#include <qimage.h>
37#include <qwindowsystem_qws.h> 37#include <qwindowsystem_qws.h>
38#include <qwsmouse_qws.h> 38#include <qwsmouse_qws.h>
39#include <qpe/qcopenvelope_qws.h> 39#include <qpe/qcopenvelope_qws.h>
40#include <qpe/alarmserver.h> 40#include <qpe/alarmserver.h>
41 41
42#include <stdlib.h> 42#include <stdlib.h>
43#include <stdio.h> 43#include <stdio.h>
44#include <signal.h> 44#include <signal.h>
45#include <unistd.h> 45#include <unistd.h>
46 46
47#include "../calibrate/calibrate.h" 47#include "../calibrate/calibrate.h"
48 48
49using namespace Opie; 49using namespace Opie;
50 50
51void initEnvironment() 51void initEnvironment()
52{ 52{
53 Config config("locale"); 53 int rot;
54 config.setGroup( "Location" ); 54 Config config("locale");
55 QString tz = config.readEntry( "Timezone", getenv("TZ") ); 55
56 config.setGroup( "Location" );
57 QString tz = config.readEntry( "Timezone", getenv("TZ") );
56 58
57 // if not timezone set, pick New York 59 // if not timezone set, pick New York
58 if (tz.isNull()) 60 if (tz.isNull())
59 tz = "America/New_York"; 61 tz = "America/New_York";
60 62
61 setenv( "TZ", tz, 1 ); 63 setenv( "TZ", tz, 1 );
62 config.writeEntry( "Timezone", tz); 64 config.writeEntry( "Timezone", tz);
63 65
64 config.setGroup( "Language" ); 66 config.setGroup( "Language" );
65 QString lang = config.readEntry( "Language", getenv("LANG") ); 67 QString lang = config.readEntry( "Language", getenv("LANG") );
66 if ( !lang.isNull() ) 68 if ( !lang.isNull() )
67 setenv( "LANG", lang, 1 ); 69 setenv( "LANG", lang, 1 );
70
71#if !defined(QT_QWS_CASSIOPEIA) && !defined(QT_QWS_IPAQ) && !defined(QT_QWS_SL5XXX)
72 setenv( "QWS_SIZE", "240x320", 0 );
73#endif
74
75 /*
76 * Rotation:
77 * 1. use env var if set
78 * 2. use saved default if set
79 * 3. use physical orientation (currently fails due to ODevice
80 * using a QPixmap and therefore requiring a QApplication)
81 */
82 if ( ( rot = QPEApplication::defaultRotation ( ) ) == 0 ) {
83 Config config("qpe");
84 config.setGroup( "Rotation" );
85 if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 )
86 rot = ODevice::inst ( )-> rotation ( ) * 90;
87 }
88
89 setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1);
68} 90}
69 91
70 92
71int initApplication( int argc, char ** argv ) 93int initApplication( int argc, char ** argv )
72{ 94{
73 initEnvironment(); 95 initEnvironment();
74 96
75#if !defined(QT_QWS_CASSIOPEIA) && !defined(QT_QWS_IPAQ) && !defined(QT_QWS_SL5XXX)
76 setenv( "QWS_SIZE", "240x320", 0 );
77#endif
78
79 //Don't flicker at startup: 97 //Don't flicker at startup:
80 QWSServer::setDesktopBackground( QImage() ); 98 QWSServer::setDesktopBackground( QImage() );
99
81 DesktopApplication a( argc, argv, QApplication::GuiServer ); 100 DesktopApplication a( argc, argv, QApplication::GuiServer );
82 101
83 ODevice::inst ( )-> setSoftSuspend ( true ); 102 ODevice::inst ( )-> setSoftSuspend ( true );
84 103
85 { // init backlight 104 { // init backlight
86 QCopEnvelope e("QPE/System", "setBacklight(int)" ); 105 QCopEnvelope e("QPE/System", "setBacklight(int)" );
87 e << -3; // Forced on 106 e << -3; // Forced on
88 } 107 }
89 108
90 AlarmServer::initialize(); 109 AlarmServer::initialize();
91 110
92 Desktop *d = new Desktop(); 111 Desktop *d = new Desktop();
93 112
94 QObject::connect( &a, SIGNAL(power()), d, SLOT(togglePower()) ); 113 QObject::connect( &a, SIGNAL(power()), d, SLOT(togglePower()) );
95 QObject::connect( &a, SIGNAL(backlight()), d, SLOT(toggleLight()) ); 114 QObject::connect( &a, SIGNAL(backlight()), d, SLOT(toggleLight()) );
96 QObject::connect( &a, SIGNAL(symbol()), d, SLOT(toggleSymbolInput()) ); 115 QObject::connect( &a, SIGNAL(symbol()), d, SLOT(toggleSymbolInput()) );
97 QObject::connect( &a, SIGNAL(numLockStateToggle()), d, SLOT(toggleNumLockState()) ); 116 QObject::connect( &a, SIGNAL(numLockStateToggle()), d, SLOT(toggleNumLockState()) );
98 QObject::connect( &a, SIGNAL(capsLockStateToggle()), d, SLOT(toggleCapsLockState()) ); 117 QObject::connect( &a, SIGNAL(capsLockStateToggle()), d, SLOT(toggleCapsLockState()) );
99 QObject::connect( &a, SIGNAL(prepareForRestart()), d, SLOT(terminateServers()) ); 118 QObject::connect( &a, SIGNAL(prepareForRestart()), d, SLOT(terminateServers()) );
100 119
101 (void)new SysFileMonitor(d); 120 (void)new SysFileMonitor(d);
102 Network::createServer(d); 121 Network::createServer(d);
103 122
104 if ( QWSServer::mouseHandler() ->inherits("QCalibratedMouseHandler") ) { 123 if ( QWSServer::mouseHandler() ->inherits("QCalibratedMouseHandler") ) {
105 if ( !QFile::exists( "/etc/pointercal" ) ) { 124 if ( !QFile::exists( "/etc/pointercal" ) ) {
106 // Make sure calibration widget starts on top. 125 // Make sure calibration widget starts on top.
107 Calibrate *cal = new Calibrate; 126 Calibrate *cal = new Calibrate;
108 cal->exec(); 127 cal->exec();
109 delete cal; 128 delete cal;
110 } 129 }
111 } 130 }
112 131
113 d->show(); 132 d->show();
114 133
115 if ( QDate::currentDate ( ). year ( ) < 2000 ) { 134 if ( QDate::currentDate ( ). year ( ) < 2000 ) {
116 if ( QMessageBox::information ( 0, DesktopApplication::tr( "Information" ), DesktopApplication::tr( "<p>The system date doesn't seem to be valid.\n(%1)</p><p>Do you want to correct the clock ?</p>" ). arg( TimeString::dateString ( QDate::currentDate ( ))), QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) { 135 if ( QMessageBox::information ( 0, DesktopApplication::tr( "Information" ), DesktopApplication::tr( "<p>The system date doesn't seem to be valid.\n(%1)</p><p>Do you want to correct the clock ?</p>" ). arg( TimeString::dateString ( QDate::currentDate ( ))), QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) {
117 QCopEnvelope e ( "QPE/Application/systemtime", "setDocument(QString)" ); 136 QCopEnvelope e ( "QPE/Application/systemtime", "setDocument(QString)" );
118 e << QString ( ); 137 e << QString ( );
119 } 138 }
120 } 139 }
121 140
122 int rv = a.exec(); 141 int rv = a.exec();
123 142
124 delete d; 143 delete d;
125 144
126 ODevice::inst ( )-> setSoftSuspend ( false ); 145 ODevice::inst ( )-> setSoftSuspend ( false );
127 146
128 return rv; 147 return rv;
129} 148}
130 149
131static const char *pidfile_path = "/var/run/opie.pid"; 150static const char *pidfile_path = "/var/run/opie.pid";
132 151
133void create_pidfile ( ) 152void create_pidfile ( )
134{ 153{
135 FILE *f; 154 FILE *f;
136 155