author | kergoth <kergoth> | 2003-03-14 19:22:43 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-03-14 19:22:43 (UTC) |
commit | 4f483f13e3c624a0ce6161e6ddd6923b4d101f0e (patch) (unidiff) | |
tree | 40598ac7ae56246fd2875967345f6eccb13339b7 | |
parent | 52c72efc3bcc6b57c6960b5da3393b57182b5ee6 (diff) | |
download | opie-4f483f13e3c624a0ce6161e6ddd6923b4d101f0e.zip opie-4f483f13e3c624a0ce6161e6ddd6923b4d101f0e.tar.gz opie-4f483f13e3c624a0ce6161e6ddd6923b4d101f0e.tar.bz2 |
Two bugs fixed:
1) We werent checking for failure on execlp() of shutdown
2) We assumed that /sbin was in the PATH, as otherwise one cannot execute shutdown.
This is a flawed assumption, particularly in the case of running Opie as a nonroot
user. In the case of OZ 3.1rc3.1, /etc/profile no longer puts the sbin dirs in the PATH
(it never should have in the first place), and opie doesnt source $HOME/.profile in its
startup script, which resulted in the shutdown app failing to reboot or shutdown.
Fixed by using execle rather than execlp, and specifying /sbin and /usr/sbin as the executed
path for shutdown.
-rw-r--r-- | core/launcher/desktop.cpp | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 03a23dc..4c239a6 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp | |||
@@ -1,212 +1,214 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
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 <syslog.h> | ||
22 | |||
21 | #include "desktop.h" | 23 | #include "desktop.h" |
22 | #include "info.h" | 24 | #include "info.h" |
23 | #include "launcher.h" | 25 | #include "launcher.h" |
24 | #include "qcopbridge.h" | 26 | #include "qcopbridge.h" |
25 | #include "shutdownimpl.h" | 27 | #include "shutdownimpl.h" |
26 | #include "startmenu.h" | 28 | #include "startmenu.h" |
27 | #include "taskbar.h" | 29 | #include "taskbar.h" |
28 | #include "transferserver.h" | 30 | #include "transferserver.h" |
29 | #include "irserver.h" | 31 | #include "irserver.h" |
30 | #include "packageslave.h" | 32 | #include "packageslave.h" |
31 | #include "screensaver.h" | 33 | #include "screensaver.h" |
32 | 34 | ||
33 | #include <qpe/applnk.h> | 35 | #include <qpe/applnk.h> |
34 | #include <qpe/mimetype.h> | 36 | #include <qpe/mimetype.h> |
35 | #include <qpe/password.h> | 37 | #include <qpe/password.h> |
36 | #include <qpe/config.h> | 38 | #include <qpe/config.h> |
37 | #include <qpe/power.h> | 39 | #include <qpe/power.h> |
38 | #include <qpe/timeconversion.h> | 40 | #include <qpe/timeconversion.h> |
39 | #include <qpe/qcopenvelope_qws.h> | 41 | #include <qpe/qcopenvelope_qws.h> |
40 | #include <qpe/network.h> | 42 | #include <qpe/network.h> |
41 | #include <qpe/global.h> | 43 | #include <qpe/global.h> |
42 | 44 | ||
43 | #if defined( QT_QWS_SHARP ) || defined( QT_QWS_IPAQ ) | 45 | #if defined( QT_QWS_SHARP ) || defined( QT_QWS_IPAQ ) |
44 | #include <qpe/custom.h> | 46 | #include <qpe/custom.h> |
45 | #endif | 47 | #endif |
46 | 48 | ||
47 | #include <opie/odevice.h> | 49 | #include <opie/odevice.h> |
48 | 50 | ||
49 | #include <qgfx_qws.h> | 51 | #include <qgfx_qws.h> |
50 | #include <qmainwindow.h> | 52 | #include <qmainwindow.h> |
51 | #include <qmessagebox.h> | 53 | #include <qmessagebox.h> |
52 | #include <qtimer.h> | 54 | #include <qtimer.h> |
53 | #include <qwindowsystem_qws.h> | 55 | #include <qwindowsystem_qws.h> |
54 | 56 | ||
55 | #include <qvaluelist.h> | 57 | #include <qvaluelist.h> |
56 | 58 | ||
57 | #include <stdlib.h> | 59 | #include <stdlib.h> |
58 | #include <unistd.h> | 60 | #include <unistd.h> |
59 | #include <fcntl.h> | 61 | #include <fcntl.h> |
60 | 62 | ||
61 | 63 | ||
62 | using namespace Opie; | 64 | using namespace Opie; |
63 | 65 | ||
64 | class QCopKeyRegister | 66 | class QCopKeyRegister |
65 | { | 67 | { |
66 | public: | 68 | public: |
67 | QCopKeyRegister() : keyCode( 0 ) | 69 | QCopKeyRegister() : keyCode( 0 ) |
68 | { } | 70 | { } |
69 | QCopKeyRegister( int k, const QCString &c, const QCString &m ) | 71 | QCopKeyRegister( int k, const QCString &c, const QCString &m ) |
70 | : keyCode( k ), channel( c ), message( m ) | 72 | : keyCode( k ), channel( c ), message( m ) |
71 | { } | 73 | { } |
72 | 74 | ||
73 | int getKeyCode() const | 75 | int getKeyCode() const |
74 | { | 76 | { |
75 | return keyCode; | 77 | return keyCode; |
76 | } | 78 | } |
77 | QCString getChannel() const | 79 | QCString getChannel() const |
78 | { | 80 | { |
79 | return channel; | 81 | return channel; |
80 | } | 82 | } |
81 | QCString getMessage() const | 83 | QCString getMessage() const |
82 | { | 84 | { |
83 | return message; | 85 | return message; |
84 | } | 86 | } |
85 | 87 | ||
86 | private: | 88 | private: |
87 | int keyCode; | 89 | int keyCode; |
88 | QCString channel, message; | 90 | QCString channel, message; |
89 | }; | 91 | }; |
90 | 92 | ||
91 | typedef QValueList<QCopKeyRegister> KeyRegisterList; | 93 | typedef QValueList<QCopKeyRegister> KeyRegisterList; |
92 | KeyRegisterList keyRegisterList; | 94 | KeyRegisterList keyRegisterList; |
93 | 95 | ||
94 | static Desktop* qpedesktop = 0; | 96 | static Desktop* qpedesktop = 0; |
95 | static int loggedin = 0; | 97 | static int loggedin = 0; |
96 | static void login( bool at_poweron ) | 98 | static void login( bool at_poweron ) |
97 | { | 99 | { |
98 | if ( !loggedin ) { | 100 | if ( !loggedin ) { |
99 | Global::terminateBuiltin( "calibrate" ); | 101 | Global::terminateBuiltin( "calibrate" ); |
100 | Password::authenticate( at_poweron ); | 102 | Password::authenticate( at_poweron ); |
101 | loggedin = 1; | 103 | loggedin = 1; |
102 | QCopEnvelope e( "QPE/Desktop", "unlocked()" ); | 104 | QCopEnvelope e( "QPE/Desktop", "unlocked()" ); |
103 | } | 105 | } |
104 | } | 106 | } |
105 | 107 | ||
106 | bool Desktop::screenLocked() | 108 | bool Desktop::screenLocked() |
107 | { | 109 | { |
108 | return loggedin == 0; | 110 | return loggedin == 0; |
109 | } | 111 | } |
110 | 112 | ||
111 | /* | 113 | /* |
112 | Priority is number of alerts that are needed to pop up | 114 | Priority is number of alerts that are needed to pop up |
113 | alert. | 115 | alert. |
114 | */ | 116 | */ |
115 | class DesktopPowerAlerter : public QMessageBox | 117 | class DesktopPowerAlerter : public QMessageBox |
116 | { | 118 | { |
117 | public: | 119 | public: |
118 | DesktopPowerAlerter( QWidget *parent, const char *name = 0 ) | 120 | DesktopPowerAlerter( QWidget *parent, const char *name = 0 ) |
119 | : QMessageBox( tr( "Battery Status" ), "Low Battery", | 121 | : QMessageBox( tr( "Battery Status" ), "Low Battery", |
120 | QMessageBox::Critical, | 122 | QMessageBox::Critical, |
121 | QMessageBox::Ok | QMessageBox::Default, | 123 | QMessageBox::Ok | QMessageBox::Default, |
122 | QMessageBox::NoButton, QMessageBox::NoButton, | 124 | QMessageBox::NoButton, QMessageBox::NoButton, |
123 | parent, name, FALSE ) | 125 | parent, name, FALSE ) |
124 | { | 126 | { |
125 | currentPriority = INT_MAX; | 127 | currentPriority = INT_MAX; |
126 | alertCount = 0; | 128 | alertCount = 0; |
127 | } | 129 | } |
128 | 130 | ||
129 | void alert( const QString &text, int priority ); | 131 | void alert( const QString &text, int priority ); |
130 | void hideEvent( QHideEvent * ); | 132 | void hideEvent( QHideEvent * ); |
131 | private: | 133 | private: |
132 | int currentPriority; | 134 | int currentPriority; |
133 | int alertCount; | 135 | int alertCount; |
134 | }; | 136 | }; |
135 | 137 | ||
136 | void DesktopPowerAlerter::alert( const QString &text, int priority ) | 138 | void DesktopPowerAlerter::alert( const QString &text, int priority ) |
137 | { | 139 | { |
138 | alertCount++; | 140 | alertCount++; |
139 | if ( alertCount < priority ) | 141 | if ( alertCount < priority ) |
140 | return ; | 142 | return ; |
141 | if ( priority > currentPriority ) | 143 | if ( priority > currentPriority ) |
142 | return ; | 144 | return ; |
143 | currentPriority = priority; | 145 | currentPriority = priority; |
144 | setText( text ); | 146 | setText( text ); |
145 | show(); | 147 | show(); |
146 | } | 148 | } |
147 | 149 | ||
148 | 150 | ||
149 | void DesktopPowerAlerter::hideEvent( QHideEvent *e ) | 151 | void DesktopPowerAlerter::hideEvent( QHideEvent *e ) |
150 | { | 152 | { |
151 | QMessageBox::hideEvent( e ); | 153 | QMessageBox::hideEvent( e ); |
152 | alertCount = 0; | 154 | alertCount = 0; |
153 | currentPriority = INT_MAX; | 155 | currentPriority = INT_MAX; |
154 | } | 156 | } |
155 | 157 | ||
156 | 158 | ||
157 | void DesktopApplication::switchLCD ( bool on ) | 159 | void DesktopApplication::switchLCD ( bool on ) |
158 | { | 160 | { |
159 | if ( qApp ) { | 161 | if ( qApp ) { |
160 | DesktopApplication *dapp = (DesktopApplication *) qApp; | 162 | DesktopApplication *dapp = (DesktopApplication *) qApp; |
161 | 163 | ||
162 | if ( dapp-> m_screensaver ) { | 164 | if ( dapp-> m_screensaver ) { |
163 | if ( on ) { | 165 | if ( on ) { |
164 | dapp-> m_screensaver-> setDisplayState ( true ); | 166 | dapp-> m_screensaver-> setDisplayState ( true ); |
165 | dapp-> m_screensaver-> setBacklight ( -3 ); | 167 | dapp-> m_screensaver-> setBacklight ( -3 ); |
166 | } | 168 | } |
167 | else { | 169 | else { |
168 | dapp-> m_screensaver-> setDisplayState ( false ); | 170 | dapp-> m_screensaver-> setDisplayState ( false ); |
169 | } | 171 | } |
170 | } | 172 | } |
171 | } | 173 | } |
172 | } | 174 | } |
173 | 175 | ||
174 | 176 | ||
175 | DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType ) | 177 | DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType ) |
176 | : QPEApplication( argc, argv, appType ) | 178 | : QPEApplication( argc, argv, appType ) |
177 | { | 179 | { |
178 | m_ps = new PowerStatus; | 180 | m_ps = new PowerStatus; |
179 | m_ps_last = new PowerStatus; | 181 | m_ps_last = new PowerStatus; |
180 | pa = new DesktopPowerAlerter( 0 ); | 182 | pa = new DesktopPowerAlerter( 0 ); |
181 | 183 | ||
182 | m_apm_timer = new QTimer ( this ); | 184 | m_apm_timer = new QTimer ( this ); |
183 | connect ( m_apm_timer, SIGNAL( timeout ( )), this, SLOT( apmTimeout ( ))); | 185 | connect ( m_apm_timer, SIGNAL( timeout ( )), this, SLOT( apmTimeout ( ))); |
184 | reloadPowerWarnSettings ( ); | 186 | reloadPowerWarnSettings ( ); |
185 | 187 | ||
186 | m_last_button = 0; | 188 | m_last_button = 0; |
187 | m_button_timer = new QTimer ( ); | 189 | m_button_timer = new QTimer ( ); |
188 | connect ( m_button_timer, SIGNAL( timeout ( )), this, SLOT( sendHeldAction ( ))); | 190 | connect ( m_button_timer, SIGNAL( timeout ( )), this, SLOT( sendHeldAction ( ))); |
189 | 191 | ||
190 | channel = new QCopChannel( "QPE/System", this ); | 192 | channel = new QCopChannel( "QPE/System", this ); |
191 | connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), | 193 | connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), |
192 | this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) ); | 194 | this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) ); |
193 | 195 | ||
194 | channel = new QCopChannel( "QPE/Launcher", this ); | 196 | channel = new QCopChannel( "QPE/Launcher", this ); |
195 | connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), | 197 | connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), |
196 | this, SLOT( launcherMessage( const QCString&, const QByteArray& ) ) ); | 198 | this, SLOT( launcherMessage( const QCString&, const QByteArray& ) ) ); |
197 | 199 | ||
198 | m_screensaver = new OpieScreenSaver ( ); | 200 | m_screensaver = new OpieScreenSaver ( ); |
199 | m_screensaver-> setInterval ( -1 ); | 201 | m_screensaver-> setInterval ( -1 ); |
200 | QWSServer::setScreenSaver( m_screensaver ); | 202 | QWSServer::setScreenSaver( m_screensaver ); |
201 | 203 | ||
202 | rereadVolumes(); | 204 | rereadVolumes(); |
203 | connect( qApp, SIGNAL( volumeChanged( bool ) ), this, SLOT( rereadVolumes() ) ); | 205 | connect( qApp, SIGNAL( volumeChanged( bool ) ), this, SLOT( rereadVolumes() ) ); |
204 | 206 | ||
205 | apmTimeout ( ); | 207 | apmTimeout ( ); |
206 | 208 | ||
207 | grabKeyboard ( ); | 209 | grabKeyboard ( ); |
208 | } | 210 | } |
209 | 211 | ||
210 | 212 | ||
211 | DesktopApplication::~DesktopApplication() | 213 | DesktopApplication::~DesktopApplication() |
212 | { | 214 | { |
@@ -549,291 +551,299 @@ void Desktop::checkMemory() | |||
549 | if ( recoverMemory() ) | 551 | if ( recoverMemory() ) |
550 | ignoreNormal = TRUE; | 552 | ignoreNormal = TRUE; |
551 | else | 553 | else |
552 | QMessageBox::warning( 0 , "Memory Status", | 554 | QMessageBox::warning( 0 , "Memory Status", |
553 | "The memory smacks of shortage. \n" | 555 | "The memory smacks of shortage. \n" |
554 | "Please save data. " ); | 556 | "Please save data. " ); |
555 | break; | 557 | break; |
556 | case Normal: | 558 | case Normal: |
557 | memstate = Unknown; | 559 | memstate = Unknown; |
558 | if ( ignoreNormal ) | 560 | if ( ignoreNormal ) |
559 | ignoreNormal = FALSE; | 561 | ignoreNormal = FALSE; |
560 | // else | 562 | // else |
561 | // QMessageBox::information ( 0 , "Memory Status", | 563 | // QMessageBox::information ( 0 , "Memory Status", |
562 | // "There is enough memory again." ); | 564 | // "There is enough memory again." ); |
563 | break; | 565 | break; |
564 | case VeryLow: | 566 | case VeryLow: |
565 | memstate = Unknown; | 567 | memstate = Unknown; |
566 | QMessageBox::critical( 0 , "Memory Status", | 568 | QMessageBox::critical( 0 , "Memory Status", |
567 | "The memory is very low. \n" | 569 | "The memory is very low. \n" |
568 | "Please end this application \n" | 570 | "Please end this application \n" |
569 | "immediately." ); | 571 | "immediately." ); |
570 | recoverMemory(); | 572 | recoverMemory(); |
571 | } | 573 | } |
572 | existingMessage = FALSE; | 574 | existingMessage = FALSE; |
573 | #endif | 575 | #endif |
574 | } | 576 | } |
575 | 577 | ||
576 | static bool isVisibleWindow( int wid ) | 578 | static bool isVisibleWindow( int wid ) |
577 | { | 579 | { |
578 | #ifdef QWS | 580 | #ifdef QWS |
579 | const QList<QWSWindow> &list = qwsServer->clientWindows(); | 581 | const QList<QWSWindow> &list = qwsServer->clientWindows(); |
580 | QWSWindow* w; | 582 | QWSWindow* w; |
581 | for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { | 583 | for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { |
582 | if ( w->winId() == wid ) | 584 | if ( w->winId() == wid ) |
583 | return !w->isFullyObscured(); | 585 | return !w->isFullyObscured(); |
584 | } | 586 | } |
585 | #endif | 587 | #endif |
586 | return FALSE; | 588 | return FALSE; |
587 | } | 589 | } |
588 | 590 | ||
589 | static bool hasVisibleWindow( const QString& clientname ) | 591 | static bool hasVisibleWindow( const QString& clientname ) |
590 | { | 592 | { |
591 | #ifdef QWS | 593 | #ifdef QWS |
592 | const QList<QWSWindow> &list = qwsServer->clientWindows(); | 594 | const QList<QWSWindow> &list = qwsServer->clientWindows(); |
593 | QWSWindow* w; | 595 | QWSWindow* w; |
594 | for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { | 596 | for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { |
595 | if ( w->client() ->identity() == clientname && !w->isFullyObscured() ) | 597 | if ( w->client() ->identity() == clientname && !w->isFullyObscured() ) |
596 | return TRUE; | 598 | return TRUE; |
597 | } | 599 | } |
598 | #endif | 600 | #endif |
599 | return FALSE; | 601 | return FALSE; |
600 | } | 602 | } |
601 | 603 | ||
602 | 604 | ||
603 | void Desktop::executeOrModify( const QString& appLnkFile ) | 605 | void Desktop::executeOrModify( const QString& appLnkFile ) |
604 | { | 606 | { |
605 | AppLnk lnk( MimeType::appsFolderName() + "/" + appLnkFile ); | 607 | AppLnk lnk( MimeType::appsFolderName() + "/" + appLnkFile ); |
606 | if ( lnk.isValid() ) { | 608 | if ( lnk.isValid() ) { |
607 | QCString app = lnk.exec().utf8(); | 609 | QCString app = lnk.exec().utf8(); |
608 | Global::terminateBuiltin( "calibrate" ); | 610 | Global::terminateBuiltin( "calibrate" ); |
609 | if ( QCopChannel::isRegistered( "QPE/Application/" + app ) ) { | 611 | if ( QCopChannel::isRegistered( "QPE/Application/" + app ) ) { |
610 | // MRUList::addTask( &lnk ); | 612 | // MRUList::addTask( &lnk ); |
611 | if ( hasVisibleWindow( app ) ) | 613 | if ( hasVisibleWindow( app ) ) |
612 | QCopChannel::send( "QPE/Application/" + app, "nextView()" ); | 614 | QCopChannel::send( "QPE/Application/" + app, "nextView()" ); |
613 | else | 615 | else |
614 | QCopChannel::send( "QPE/Application/" + app, "raise()" ); | 616 | QCopChannel::send( "QPE/Application/" + app, "raise()" ); |
615 | } | 617 | } |
616 | else { | 618 | else { |
617 | lnk.execute(); | 619 | lnk.execute(); |
618 | } | 620 | } |
619 | } | 621 | } |
620 | } | 622 | } |
621 | 623 | ||
622 | // autoStarts apps on resume and start | 624 | // autoStarts apps on resume and start |
623 | void Desktop::execAutoStart() | 625 | void Desktop::execAutoStart() |
624 | { | 626 | { |
625 | QString appName; | 627 | QString appName; |
626 | int delay; | 628 | int delay; |
627 | QDateTime now = QDateTime::currentDateTime(); | 629 | QDateTime now = QDateTime::currentDateTime(); |
628 | Config cfg( "autostart" ); | 630 | Config cfg( "autostart" ); |
629 | cfg.setGroup( "AutoStart" ); | 631 | cfg.setGroup( "AutoStart" ); |
630 | appName = cfg.readEntry( "Apps", "" ); | 632 | appName = cfg.readEntry( "Apps", "" ); |
631 | delay = ( cfg.readEntry( "Delay", "0" ) ).toInt(); | 633 | delay = ( cfg.readEntry( "Delay", "0" ) ).toInt(); |
632 | // If the time between suspend and resume was longer then the | 634 | // If the time between suspend and resume was longer then the |
633 | // value saved as delay, start the app | 635 | // value saved as delay, start the app |
634 | if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) { | 636 | if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) { |
635 | QCopEnvelope e( "QPE/System", "execute(QString)" ); | 637 | QCopEnvelope e( "QPE/System", "execute(QString)" ); |
636 | e << QString( appName ); | 638 | e << QString( appName ); |
637 | } | 639 | } |
638 | } | 640 | } |
639 | 641 | ||
640 | #if defined(QPE_HAVE_TOGGLELIGHT) | 642 | #if defined(QPE_HAVE_TOGGLELIGHT) |
641 | #include <qpe/config.h> | 643 | #include <qpe/config.h> |
642 | 644 | ||
643 | #include <sys/ioctl.h> | 645 | #include <sys/ioctl.h> |
644 | #include <sys/types.h> | 646 | #include <sys/types.h> |
645 | #include <fcntl.h> | 647 | #include <fcntl.h> |
646 | #include <unistd.h> | 648 | #include <unistd.h> |
647 | #include <errno.h> | 649 | #include <errno.h> |
648 | #include <linux/ioctl.h> | 650 | #include <linux/ioctl.h> |
649 | #include <time.h> | 651 | #include <time.h> |
650 | #endif | 652 | #endif |
651 | 653 | ||
652 | 654 | ||
653 | void Desktop::togglePower() | 655 | void Desktop::togglePower() |
654 | { | 656 | { |
655 | static bool excllock = false; | 657 | static bool excllock = false; |
656 | 658 | ||
657 | qDebug ( "togglePower (locked == %d)", excllock ? 1 : 0 ); | 659 | qDebug ( "togglePower (locked == %d)", excllock ? 1 : 0 ); |
658 | 660 | ||
659 | if ( excllock ) | 661 | if ( excllock ) |
660 | return ; | 662 | return ; |
661 | 663 | ||
662 | excllock = true; | 664 | excllock = true; |
663 | 665 | ||
664 | bool wasloggedin = loggedin; | 666 | bool wasloggedin = loggedin; |
665 | loggedin = 0; | 667 | loggedin = 0; |
666 | suspendTime = QDateTime::currentDateTime(); | 668 | suspendTime = QDateTime::currentDateTime(); |
667 | 669 | ||
668 | #ifdef QWS | 670 | #ifdef QWS |
669 | 671 | ||
670 | if ( Password::needToAuthenticate ( true ) && qt_screen ) { | 672 | if ( Password::needToAuthenticate ( true ) && qt_screen ) { |
671 | // Should use a big black window instead. | 673 | // Should use a big black window instead. |
672 | // But this would not show up fast enough | 674 | // But this would not show up fast enough |
673 | QGfx *g = qt_screen-> screenGfx ( ); | 675 | QGfx *g = qt_screen-> screenGfx ( ); |
674 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); | 676 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); |
675 | delete g; | 677 | delete g; |
676 | } | 678 | } |
677 | #endif | 679 | #endif |
678 | 680 | ||
679 | ODevice::inst ( )-> suspend ( ); | 681 | ODevice::inst ( )-> suspend ( ); |
680 | 682 | ||
681 | DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call | 683 | DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call |
682 | QWSServer::screenSaverActivate ( false ); | 684 | QWSServer::screenSaverActivate ( false ); |
683 | 685 | ||
684 | { | 686 | { |
685 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep | 687 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep |
686 | } | 688 | } |
687 | 689 | ||
688 | if ( wasloggedin ) | 690 | if ( wasloggedin ) |
689 | login ( true ); | 691 | login ( true ); |
690 | 692 | ||
691 | execAutoStart(); | 693 | execAutoStart(); |
692 | //qcopBridge->closeOpenConnections(); | 694 | //qcopBridge->closeOpenConnections(); |
693 | 695 | ||
694 | excllock = false; | 696 | excllock = false; |
695 | } | 697 | } |
696 | 698 | ||
697 | void Desktop::toggleLight() | 699 | void Desktop::toggleLight() |
698 | { | 700 | { |
699 | QCopEnvelope e( "QPE/System", "setBacklight(int)" ); | 701 | QCopEnvelope e( "QPE/System", "setBacklight(int)" ); |
700 | e << -2; // toggle | 702 | e << -2; // toggle |
701 | } | 703 | } |
702 | 704 | ||
703 | void Desktop::toggleSymbolInput() | 705 | void Desktop::toggleSymbolInput() |
704 | { | 706 | { |
705 | tb->toggleSymbolInput(); | 707 | tb->toggleSymbolInput(); |
706 | } | 708 | } |
707 | 709 | ||
708 | void Desktop::toggleNumLockState() | 710 | void Desktop::toggleNumLockState() |
709 | { | 711 | { |
710 | tb->toggleNumLockState(); | 712 | tb->toggleNumLockState(); |
711 | } | 713 | } |
712 | 714 | ||
713 | void Desktop::toggleCapsLockState() | 715 | void Desktop::toggleCapsLockState() |
714 | { | 716 | { |
715 | tb->toggleCapsLockState(); | 717 | tb->toggleCapsLockState(); |
716 | } | 718 | } |
717 | 719 | ||
718 | void Desktop::styleChange( QStyle &s ) | 720 | void Desktop::styleChange( QStyle &s ) |
719 | { | 721 | { |
720 | QWidget::styleChange( s ); | 722 | QWidget::styleChange( s ); |
721 | int displayw = qApp->desktop() ->width(); | 723 | int displayw = qApp->desktop() ->width(); |
722 | int displayh = qApp->desktop() ->height(); | 724 | int displayh = qApp->desktop() ->height(); |
723 | 725 | ||
724 | QSize sz = tb->sizeHint(); | 726 | QSize sz = tb->sizeHint(); |
725 | 727 | ||
726 | tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); | 728 | tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); |
727 | } | 729 | } |
728 | 730 | ||
729 | void DesktopApplication::shutdown() | 731 | void DesktopApplication::shutdown() |
730 | { | 732 | { |
731 | if ( type() != GuiServer ) | 733 | if ( type() != GuiServer ) |
732 | return ; | 734 | return ; |
733 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); | 735 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); |
734 | connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ), | 736 | connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ), |
735 | this, SLOT( shutdown( ShutdownImpl::Type ) ) ); | 737 | this, SLOT( shutdown( ShutdownImpl::Type ) ) ); |
736 | sd->showMaximized(); | 738 | sd->showMaximized(); |
737 | } | 739 | } |
738 | 740 | ||
739 | void DesktopApplication::shutdown( ShutdownImpl::Type t ) | 741 | void DesktopApplication::shutdown( ShutdownImpl::Type t ) |
740 | { | 742 | { |
743 | |||
744 | char *opt = 0; | ||
745 | |||
741 | switch ( t ) { | 746 | switch ( t ) { |
742 | case ShutdownImpl::ShutdownSystem: | 747 | case ShutdownImpl::ShutdownSystem: |
743 | execlp( "shutdown", "shutdown", "-h", "now", ( void* ) 0 ); | 748 | opt = "-h"; |
744 | break; | 749 | // fall through |
745 | case ShutdownImpl::RebootSystem: | 750 | case ShutdownImpl::RebootSystem: |
746 | execlp( "shutdown", "shutdown", "-r", "now", ( void* ) 0 ); | 751 | if ( opt == 0 ) |
752 | opt = "-r"; | ||
753 | |||
754 | if ( execle( "shutdown", "shutdown", opt, "now", ( void* ) 0, "/sbin", "/usr/sbin", ( void* ) 0 ) < 0 ) | ||
755 | ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); | ||
756 | |||
747 | break; | 757 | break; |
748 | case ShutdownImpl::RestartDesktop: | 758 | case ShutdownImpl::RestartDesktop: |
749 | restart(); | 759 | restart(); |
750 | break; | 760 | break; |
751 | case ShutdownImpl::TerminateDesktop: | 761 | case ShutdownImpl::TerminateDesktop: |
752 | prepareForTermination( FALSE ); | 762 | prepareForTermination( FALSE ); |
753 | 763 | ||
754 | // This is a workaround for a Qt bug | 764 | // This is a workaround for a Qt bug |
755 | // clipboard applet has to stop its poll timer, or Qt/E | 765 | // clipboard applet has to stop its poll timer, or Qt/E |
756 | // will hang on quit() right before it emits aboutToQuit() | 766 | // will hang on quit() right before it emits aboutToQuit() |
757 | emit aboutToQuit ( ); | 767 | emit aboutToQuit ( ); |
758 | 768 | ||
759 | quit(); | 769 | quit(); |
760 | break; | 770 | break; |
761 | } | 771 | } |
762 | } | 772 | } |
763 | 773 | ||
764 | void DesktopApplication::restart() | 774 | void DesktopApplication::restart() |
765 | { | 775 | { |
766 | prepareForTermination( TRUE ); | 776 | prepareForTermination( TRUE ); |
767 | 777 | ||
768 | #ifdef Q_WS_QWS | 778 | #ifdef Q_WS_QWS |
769 | 779 | ||
770 | for ( int fd = 3; fd < 100; fd++ ) | 780 | for ( int fd = 3; fd < 100; fd++ ) |
771 | close( fd ); | 781 | close( fd ); |
772 | #if defined(QT_DEMO_SINGLE_FLOPPY) | 782 | #if defined(QT_DEMO_SINGLE_FLOPPY) |
773 | 783 | ||
774 | execl( "/sbin/init", "qpe", 0 ); | 784 | execl( "/sbin/init", "qpe", 0 ); |
775 | #elif defined(QT_QWS_CASSIOPEIA) | 785 | #elif defined(QT_QWS_CASSIOPEIA) |
776 | 786 | ||
777 | execl( "/bin/sh", "sh", 0 ); | 787 | execl( "/bin/sh", "sh", 0 ); |
778 | #else | 788 | #else |
779 | 789 | ||
780 | execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); | 790 | execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); |
781 | #endif | 791 | #endif |
782 | 792 | ||
783 | exit( 1 ); | 793 | exit( 1 ); |
784 | #endif | 794 | #endif |
785 | } | 795 | } |
786 | 796 | ||
787 | void Desktop::startTransferServer() | 797 | void Desktop::startTransferServer() |
788 | { | 798 | { |
789 | // start qcop bridge server | 799 | // start qcop bridge server |
790 | qcopBridge = new QCopBridge( 4243 ); | 800 | qcopBridge = new QCopBridge( 4243 ); |
791 | if ( !qcopBridge->ok() ) { | 801 | if ( !qcopBridge->ok() ) { |
792 | delete qcopBridge; | 802 | delete qcopBridge; |
793 | qcopBridge = 0; | 803 | qcopBridge = 0; |
794 | } | 804 | } |
795 | // start transfer server | 805 | // start transfer server |
796 | transferServer = new TransferServer( 4242 ); | 806 | transferServer = new TransferServer( 4242 ); |
797 | if ( !transferServer->ok() ) { | 807 | if ( !transferServer->ok() ) { |
798 | delete transferServer; | 808 | delete transferServer; |
799 | transferServer = 0; | 809 | transferServer = 0; |
800 | } | 810 | } |
801 | if ( !transferServer || !qcopBridge ) | 811 | if ( !transferServer || !qcopBridge ) |
802 | startTimer( 2000 ); | 812 | startTimer( 2000 ); |
803 | } | 813 | } |
804 | 814 | ||
805 | void Desktop::timerEvent( QTimerEvent *e ) | 815 | void Desktop::timerEvent( QTimerEvent *e ) |
806 | { | 816 | { |
807 | killTimer( e->timerId() ); | 817 | killTimer( e->timerId() ); |
808 | startTransferServer(); | 818 | startTransferServer(); |
809 | } | 819 | } |
810 | 820 | ||
811 | void Desktop::terminateServers() | 821 | void Desktop::terminateServers() |
812 | { | 822 | { |
813 | delete transferServer; | 823 | delete transferServer; |
814 | delete qcopBridge; | 824 | delete qcopBridge; |
815 | transferServer = 0; | 825 | transferServer = 0; |
816 | qcopBridge = 0; | 826 | qcopBridge = 0; |
817 | } | 827 | } |
818 | 828 | ||
819 | void DesktopApplication::rereadVolumes() | 829 | void DesktopApplication::rereadVolumes() |
820 | { | 830 | { |
821 | Config cfg( "qpe" ); | 831 | Config cfg( "qpe" ); |
822 | cfg. setGroup ( "Volume" ); | 832 | cfg. setGroup ( "Volume" ); |
823 | 833 | ||
824 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); | 834 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); |
825 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); | 835 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); |
826 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); | 836 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); |
827 | } | 837 | } |
828 | 838 | ||
829 | void DesktopApplication::soundAlarm() | 839 | void DesktopApplication::soundAlarm() |
830 | { | 840 | { |
831 | if ( me ( )-> m_alarm_sound ) | 841 | if ( me ( )-> m_alarm_sound ) |
832 | ODevice::inst ( )-> alarmSound ( ); | 842 | ODevice::inst ( )-> alarmSound ( ); |
833 | } | 843 | } |
834 | 844 | ||
835 | DesktopApplication *DesktopApplication::me ( ) | 845 | DesktopApplication *DesktopApplication::me ( ) |
836 | { | 846 | { |
837 | return (DesktopApplication *) qApp; | 847 | return (DesktopApplication *) qApp; |
838 | } | 848 | } |
839 | 849 | ||