author | mickeyl <mickeyl> | 2003-05-19 13:56:38 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-19 13:56:38 (UTC) |
commit | 75d4ec5369e4c5d64e3becaa2a31dd78a5f8f998 (patch) (unidiff) | |
tree | be80eb3ee447deab179dbc6ceb7ecbf04f77f5df | |
parent | 250291019cac863e50ffce981a9c93b627448253 (diff) | |
download | opie-75d4ec5369e4c5d64e3becaa2a31dd78a5f8f998.zip opie-75d4ec5369e4c5d64e3becaa2a31dd78a5f8f998.tar.gz opie-75d4ec5369e4c5d64e3becaa2a31dd78a5f8f998.tar.bz2 |
- remove dangling SINGLE_APP support leftovers
- add new QCOP message toggleInputMethod() which is especially interesting for the use with opie-buttonsettings
-rw-r--r-- | core/launcher/taskbar.cpp | 119 | ||||
-rw-r--r-- | core/launcher/taskbar.h | 2 |
2 files changed, 45 insertions, 76 deletions
diff --git a/core/launcher/taskbar.cpp b/core/launcher/taskbar.cpp index 8af568d..feeba79 100644 --- a/core/launcher/taskbar.cpp +++ b/core/launcher/taskbar.cpp | |||
@@ -48,45 +48,18 @@ | |||
48 | #if defined( Q_WS_QWS ) | 48 | #if defined( Q_WS_QWS ) |
49 | #include <qwsdisplay_qws.h> | 49 | #include <qwsdisplay_qws.h> |
50 | #include <qgfx_qws.h> | 50 | #include <qgfx_qws.h> |
51 | #endif | 51 | #endif |
52 | 52 | ||
53 | 53 | ||
54 | using namespace Opie; | 54 | using namespace Opie; |
55 | 55 | ||
56 | #define FACTORY(T) \ | ||
57 | static QWidget *new##T( bool maximized ) { \ | ||
58 | QWidget *w = new T( 0, "test", QWidget::WDestructiveClose | QWidget::WGroupLeader ); \ | ||
59 | if ( maximized ) { \ | ||
60 | if ( qApp->desktop()->width() <= 350 ) { \ | ||
61 | w->showMaximized(); \ | ||
62 | } else { \ | ||
63 | w->resize( QSize( 300, 300 ) ); \ | ||
64 | } \ | ||
65 | } \ | ||
66 | w->show(); \ | ||
67 | return w; \ | ||
68 | } | ||
69 | |||
70 | |||
71 | #ifdef SINGLE_APP | ||
72 | #define APP(a,b,c,d) FACTORY(b) | ||
73 | #include "../launcher/apps.h" | ||
74 | #undef APP | ||
75 | #endif // SINGLE_APP | ||
76 | |||
77 | static Global::Command builtins[] = { | 56 | static Global::Command builtins[] = { |
78 | 57 | ||
79 | #ifdef SINGLE_APP | ||
80 | #define APP(a,b,c,d) { a, new##b, c }, | ||
81 | #include "../launcher/apps.h" | ||
82 | #undef APP | ||
83 | #endif | ||
84 | |||
85 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_CASSIOPEIA) || defined(QT_QWS_SL5XXX) | 58 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_CASSIOPEIA) || defined(QT_QWS_SL5XXX) |
86 | { "calibrate", TaskBar::calibrate, 1, 0 }, | 59 | { "calibrate", TaskBar::calibrate, 1, 0 }, |
87 | #endif | 60 | #endif |
88 | #if !defined(QT_QWS_CASSIOPEIA) | 61 | #if !defined(QT_QWS_CASSIOPEIA) |
89 | { "shutdown", Global::shutdown, 1, 0 }, | 62 | { "shutdown", Global::shutdown, 1, 0 }, |
90 | // { "run", run, 1, 0 }, | 63 | // { "run", run, 1, 0 }, |
91 | #endif | 64 | #endif |
92 | 65 | ||
@@ -146,25 +119,21 @@ TaskBar::TaskBar() : QHBox(0, 0, WStyle_Customize | WStyle_Tool | WStyle_StaysOn | |||
146 | { | 119 | { |
147 | Global::setBuiltinCommands(builtins); | 120 | Global::setBuiltinCommands(builtins); |
148 | 121 | ||
149 | sm = new StartMenu( this ); | 122 | sm = new StartMenu( this ); |
150 | 123 | ||
151 | inputMethods = new InputMethods( this ); | 124 | inputMethods = new InputMethods( this ); |
152 | connect( inputMethods, SIGNAL(inputToggled(bool)), | 125 | connect( inputMethods, SIGNAL(inputToggled(bool)), |
153 | this, SLOT(calcMaxWindowRect()) ); | 126 | this, SLOT(calcMaxWindowRect()) ); |
154 | //new QuickLauncher( this ); | ||
155 | 127 | ||
156 | stack = new QWidgetStack( this ); | 128 | stack = new QWidgetStack( this ); |
157 | stack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum ) ); | 129 | stack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum ) ); |
158 | label = new QLabel(stack); | 130 | label = new QLabel(stack); |
159 | 131 | ||
160 | //mru = new MRUList( stack ); | ||
161 | //stack->raiseWidget( mru ); | ||
162 | |||
163 | runningAppBar = new RunningAppBar(stack); | 132 | runningAppBar = new RunningAppBar(stack); |
164 | stack->raiseWidget(runningAppBar); | 133 | stack->raiseWidget(runningAppBar); |
165 | 134 | ||
166 | waitIcon = new Wait( this ); | 135 | waitIcon = new Wait( this ); |
167 | (void) new AppIcons( this ); | 136 | (void) new AppIcons( this ); |
168 | 137 | ||
169 | sysTray = new SysTray( this ); | 138 | sysTray = new SysTray( this ); |
170 | 139 | ||
@@ -257,58 +226,60 @@ void TaskBar::calcMaxWindowRect() | |||
257 | #else | 226 | #else |
258 | QWSServer::setMaxWindowRect( wr ); | 227 | QWSServer::setMaxWindowRect( wr ); |
259 | #endif | 228 | #endif |
260 | #endif | 229 | #endif |
261 | } | 230 | } |
262 | 231 | ||
263 | void TaskBar::receive( const QCString &msg, const QByteArray &data ) | 232 | void TaskBar::receive( const QCString &msg, const QByteArray &data ) |
264 | { | 233 | { |
265 | QDataStream stream( data, IO_ReadOnly ); | 234 | QDataStream stream( data, IO_ReadOnly ); |
266 | if ( msg == "message(QString)" ) { | 235 | if ( msg == "message(QString)" ) { |
267 | QString text; | 236 | QString text; |
268 | stream >> text; | 237 | stream >> text; |
269 | setStatusMessage( text ); | 238 | setStatusMessage( text ); |
270 | } else if ( msg == "hideInputMethod()" ) { | 239 | } else if ( msg == "hideInputMethod()" ) { |
271 | inputMethods->hideInputMethod(); | 240 | inputMethods->hideInputMethod(); |
272 | } else if ( msg == "showInputMethod()" ) { | 241 | } else if ( msg == "showInputMethod()" ) { |
273 | inputMethods->showInputMethod(); | 242 | inputMethods->showInputMethod(); |
274 | } else if ( msg == "reloadInputMethods()" ) { | 243 | } else if ( msg == "reloadInputMethods()" ) { |
275 | inputMethods->loadInputMethods(); | 244 | inputMethods->loadInputMethods(); |
276 | } else if ( msg == "reloadApps()" ) { | 245 | } else if ( msg == "toggleInputMethod()" ) { |
277 | sm->reloadApps(); | 246 | inputMethods->shown() ? inputMethods->hideInputMethod() : inputMethods->showInputMethod(); |
278 | } else if ( msg == "reloadApplets()" ) { | 247 | } else if ( msg == "reloadApps()" ) { |
279 | sysTray->clearApplets(); | 248 | sm->reloadApps(); |
280 | sysTray->addApplets(); | 249 | } else if ( msg == "reloadApplets()" ) { |
281 | sm->reloadApplets(); | 250 | sysTray->clearApplets(); |
282 | } else if ( msg == "soundAlarm()" ) { | 251 | sysTray->addApplets(); |
283 | DesktopApplication::soundAlarm ( ); | 252 | sm->reloadApplets(); |
284 | } | 253 | } else if ( msg == "soundAlarm()" ) { |
285 | else if ( msg == "setLed(int,bool)" ) { | 254 | DesktopApplication::soundAlarm ( ); |
286 | int led, status; | 255 | } |
287 | stream >> led >> status; | 256 | else if ( msg == "setLed(int,bool)" ) { |
288 | 257 | int led, status; | |
289 | QValueList <OLed> ll = ODevice::inst ( )-> ledList ( ); | 258 | stream >> led >> status; |
290 | if ( ll. count ( )){ | 259 | |
291 | OLed l = ll. contains ( Led_Mail ) ? Led_Mail : ll [0]; | 260 | QValueList <OLed> ll = ODevice::inst ( )-> ledList ( ); |
292 | bool canblink = ODevice::inst ( )-> ledStateList ( l ). contains ( Led_BlinkSlow ); | 261 | if ( ll. count ( )){ |
293 | 262 | OLed l = ll. contains ( Led_Mail ) ? Led_Mail : ll [0]; | |
294 | ODevice::inst ( )-> setLedState ( l, status ? ( canblink ? Led_BlinkSlow : Led_On ) : Led_Off ); | 263 | bool canblink = ODevice::inst ( )-> ledStateList ( l ). contains ( Led_BlinkSlow ); |
295 | } | 264 | |
296 | } | 265 | ODevice::inst ( )-> setLedState ( l, status ? ( canblink ? Led_BlinkSlow : Led_On ) : Led_Off ); |
297 | else if ( msg == "toggleMenu()" ) { | 266 | } |
298 | if ( sm-> launchMenu-> isVisible ( )) | 267 | } |
299 | sm-> launch ( ); | 268 | else if ( msg == "toggleMenu()" ) { |
300 | else { | 269 | if ( sm-> launchMenu-> isVisible ( )) |
301 | QCopEnvelope e ( "QPE/System", "toggleApplicationMenu()" ); | 270 | sm-> launch ( ); |
302 | } | 271 | else { |
303 | } | 272 | QCopEnvelope e ( "QPE/System", "toggleApplicationMenu()" ); |
304 | else if ( msg == "toggleStartMenu()" ) { | 273 | } |
305 | sm-> launch ( ); | 274 | } |
306 | } | 275 | else if ( msg == "toggleStartMenu()" ) { |
276 | sm-> launch ( ); | ||
277 | } | ||
307 | } | 278 | } |
308 | 279 | ||
309 | QWidget *TaskBar::calibrate(bool) | 280 | QWidget *TaskBar::calibrate(bool) |
310 | { | 281 | { |
311 | #ifdef Q_WS_QWS | 282 | #ifdef Q_WS_QWS |
312 | Calibrate *c = new Calibrate; | 283 | Calibrate *c = new Calibrate; |
313 | c->show(); | 284 | c->show(); |
314 | return c; | 285 | return c; |
@@ -333,12 +304,12 @@ void TaskBar::toggleSymbolInput() | |||
333 | inputMethods->hideInputMethod(); | 304 | inputMethods->hideInputMethod(); |
334 | } else { | 305 | } else { |
335 | inputMethods->showInputMethod("Unicode"); | 306 | inputMethods->showInputMethod("Unicode"); |
336 | } | 307 | } |
337 | } | 308 | } |
338 | 309 | ||
339 | bool TaskBar::recoverMemory() | 310 | bool TaskBar::recoverMemory() |
340 | { | 311 | { |
341 | //eturn mru->quitOldApps(); | 312 | //mru->quitOldApps() is no longer supported |
342 | return true; | 313 | return true; |
343 | } | 314 | } |
344 | 315 | ||
diff --git a/core/launcher/taskbar.h b/core/launcher/taskbar.h index a0bf395..0cfc123 100644 --- a/core/launcher/taskbar.h +++ b/core/launcher/taskbar.h | |||
@@ -23,17 +23,16 @@ | |||
23 | 23 | ||
24 | #include <qhbox.h> | 24 | #include <qhbox.h> |
25 | 25 | ||
26 | class QLabel; | 26 | class QLabel; |
27 | class QTimer; | 27 | class QTimer; |
28 | class InputMethods; | 28 | class InputMethods; |
29 | class Wait; | 29 | class Wait; |
30 | class SysTray; | 30 | class SysTray; |
31 | //class MRUList; | ||
32 | class RunningAppBar; | 31 | class RunningAppBar; |
33 | class QWidgetStack; | 32 | class QWidgetStack; |
34 | class QTimer; | 33 | class QTimer; |
35 | class QLabel; | 34 | class QLabel; |
36 | class StartMenu; | 35 | class StartMenu; |
37 | class LockKeyState; | 36 | class LockKeyState; |
38 | 37 | ||
39 | class TaskBar : public QHBox { | 38 | class TaskBar : public QHBox { |
@@ -67,17 +66,16 @@ private slots: | |||
67 | void receive( const QCString &msg, const QByteArray &data ); | 66 | void receive( const QCString &msg, const QByteArray &data ); |
68 | 67 | ||
69 | private: | 68 | private: |
70 | 69 | ||
71 | QTimer *waitTimer; | 70 | QTimer *waitTimer; |
72 | Wait *waitIcon; | 71 | Wait *waitIcon; |
73 | InputMethods *inputMethods; | 72 | InputMethods *inputMethods; |
74 | SysTray *sysTray; | 73 | SysTray *sysTray; |
75 | // MRUList *mru; | ||
76 | RunningAppBar* runningAppBar; | 74 | RunningAppBar* runningAppBar; |
77 | QWidgetStack *stack; | 75 | QWidgetStack *stack; |
78 | QTimer *clearer; | 76 | QTimer *clearer; |
79 | QLabel *label; | 77 | QLabel *label; |
80 | LockKeyState* lockState; | 78 | LockKeyState* lockState; |
81 | StartMenu *sm; | 79 | StartMenu *sm; |
82 | }; | 80 | }; |
83 | 81 | ||