author | zecke <zecke> | 2003-08-29 06:52:04 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-08-29 06:52:04 (UTC) |
commit | d8fadaf4f510803983d0b8b99994fd70e770ccab (patch) (unidiff) | |
tree | 3921c576b3dbd0dc4fd3ccfe4d39204522bf57a6 /library/qpeapplication.h | |
parent | b9861471966f8bb0e3bea2db58a0d1289add1d4f (diff) | |
download | opie-d8fadaf4f510803983d0b8b99994fd70e770ccab.zip opie-d8fadaf4f510803983d0b8b99994fd70e770ccab.tar.gz opie-d8fadaf4f510803983d0b8b99994fd70e770ccab.tar.bz2 |
-IF the app is visible and has more than once topLevel widget
iterate over the list and activate the next one.
-Install translation in .qm
-Add an else again ( was lost in a merge )
-rw-r--r-- | library/qpeapplication.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/library/qpeapplication.h b/library/qpeapplication.h index 770ea23..343e0b9 100644 --- a/library/qpeapplication.h +++ b/library/qpeapplication.h | |||
@@ -1,204 +1,207 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the 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 | #ifndef __QPE_APPLICATION_H__ | 20 | #ifndef __QPE_APPLICATION_H__ |
21 | #define __QPE_APPLICATION_H__ | 21 | #define __QPE_APPLICATION_H__ |
22 | 22 | ||
23 | #include <stdlib.h> // for setenv() | 23 | #include <stdlib.h> // for setenv() |
24 | 24 | ||
25 | #include <qglobal.h> | 25 | #include <qglobal.h> |
26 | #include <qapplication.h> | 26 | #include <qapplication.h> |
27 | #include <qdialog.h> | 27 | #include <qdialog.h> |
28 | #include <qwsdisplay_qws.h> | 28 | #include <qwsdisplay_qws.h> |
29 | #if defined(_WS_QWS_) && !defined(Q_WS_QWS) | 29 | #if defined(_WS_QWS_) && !defined(Q_WS_QWS) |
30 | #define Q_WS_QWS | 30 | #define Q_WS_QWS |
31 | #endif | 31 | #endif |
32 | #include "qpedecoration_qws.h" | 32 | #include "qpedecoration_qws.h" |
33 | #include "timestring.h" | 33 | #include "timestring.h" |
34 | 34 | ||
35 | class QCopChannel; | 35 | class QCopChannel; |
36 | class QPEApplicationData; | 36 | class QPEApplicationData; |
37 | class QWSEvent; | 37 | class QWSEvent; |
38 | class QWSKeyEvent; | 38 | class QWSKeyEvent; |
39 | 39 | ||
40 | 40 | ||
41 | class QPEApplication : public QApplication | 41 | class QPEApplication : public QApplication |
42 | { | 42 | { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | public: | 44 | public: |
45 | QPEApplication( int& argc, char **argv, Type=GuiClient ); | 45 | QPEApplication( int& argc, char **argv, Type=GuiClient ); |
46 | ~QPEApplication(); | 46 | ~QPEApplication(); |
47 | 47 | ||
48 | static QString qpeDir(); | 48 | static QString qpeDir(); |
49 | static QString documentDir(); | 49 | static QString documentDir(); |
50 | void applyStyle(); | 50 | void applyStyle(); |
51 | static int defaultRotation(); | 51 | static int defaultRotation(); |
52 | static void setDefaultRotation(int r); | 52 | static void setDefaultRotation(int r); |
53 | static void setCurrentRotation(int r); | 53 | static void setCurrentRotation(int r); |
54 | static void grabKeyboard(); | 54 | static void grabKeyboard(); |
55 | static void ungrabKeyboard(); | 55 | static void ungrabKeyboard(); |
56 | 56 | ||
57 | enum StylusMode { | 57 | enum StylusMode { |
58 | LeftOnly, | 58 | LeftOnly, |
59 | RightOnHold | 59 | RightOnHold |
60 | // RightOnHoldLeftDelayed, etc. | 60 | // RightOnHoldLeftDelayed, etc. |
61 | }; | 61 | }; |
62 | static void setStylusOperation( QWidget*, StylusMode ); | 62 | static void setStylusOperation( QWidget*, StylusMode ); |
63 | static StylusMode stylusOperation( QWidget* ); | 63 | static StylusMode stylusOperation( QWidget* ); |
64 | 64 | ||
65 | enum InputMethodHint { | 65 | enum InputMethodHint { |
66 | Normal, | 66 | Normal, |
67 | AlwaysOff, | 67 | AlwaysOff, |
68 | AlwaysOn | 68 | AlwaysOn |
69 | }; | 69 | }; |
70 | 70 | ||
71 | enum screenSaverHint { | 71 | enum screenSaverHint { |
72 | Disable = 0, | 72 | Disable = 0, |
73 | DisableLightOff = 1, | 73 | DisableLightOff = 1, |
74 | DisableSuspend = 2, | 74 | DisableSuspend = 2, |
75 | Enable = 100 | 75 | Enable = 100 |
76 | }; | 76 | }; |
77 | 77 | ||
78 | static void setInputMethodHint( QWidget *, InputMethodHint ); | 78 | static void setInputMethodHint( QWidget *, InputMethodHint ); |
79 | static InputMethodHint inputMethodHint( QWidget * ); | 79 | static InputMethodHint inputMethodHint( QWidget * ); |
80 | 80 | ||
81 | void showMainWidget( QWidget*, bool nomax=FALSE ); | 81 | void showMainWidget( QWidget*, bool nomax=FALSE ); |
82 | void showMainDocumentWidget( QWidget*, bool nomax=FALSE ); | 82 | void showMainDocumentWidget( QWidget*, bool nomax=FALSE ); |
83 | static void showDialog( QDialog*, bool nomax=FALSE ); | 83 | static void showDialog( QDialog*, bool nomax=FALSE ); |
84 | static int execDialog( QDialog*, bool nomax=FALSE ); | 84 | static int execDialog( QDialog*, bool nomax=FALSE ); |
85 | /* Merge setTempScreenSaverMode */ | 85 | /* Merge setTempScreenSaverMode */ |
86 | #ifdef QTOPIA_INTERNAL_INITAPP | 86 | #ifdef QTOPIA_INTERNAL_INITAPP |
87 | void initApp( int argv, char **argv ); | 87 | void initApp( int argv, char **argv ); |
88 | #endif | 88 | #endif |
89 | 89 | ||
90 | static void setKeepRunning(); | 90 | static void setKeepRunning(); |
91 | bool keepRunning() const; | 91 | bool keepRunning() const; |
92 | 92 | ||
93 | bool keyboardGrabbed() const; | 93 | bool keyboardGrabbed() const; |
94 | 94 | ||
95 | int exec(); | 95 | int exec(); |
96 | 96 | ||
97 | signals: | 97 | signals: |
98 | void clientMoused(); | 98 | void clientMoused(); |
99 | void timeChanged(); | 99 | void timeChanged(); |
100 | void clockChanged( bool pm ); | 100 | void clockChanged( bool pm ); |
101 | void micChanged( bool muted ); | 101 | void micChanged( bool muted ); |
102 | void volumeChanged( bool muted ); | 102 | void volumeChanged( bool muted ); |
103 | void appMessage( const QCString& msg, const QByteArray& data); | 103 | void appMessage( const QCString& msg, const QByteArray& data); |
104 | void weekChanged( bool startOnMonday ); | 104 | void weekChanged( bool startOnMonday ); |
105 | void dateFormatChanged( DateFormat ); | 105 | void dateFormatChanged( DateFormat ); |
106 | void flush(); | 106 | void flush(); |
107 | void reload(); | 107 | void reload(); |
108 | /* linkChanged signal */ | 108 | /* linkChanged signal */ |
109 | 109 | ||
110 | private slots: | 110 | private slots: |
111 | void systemMessage( const QCString &msg, const QByteArray &data ); | 111 | void systemMessage( const QCString &msg, const QByteArray &data ); |
112 | void pidMessage( const QCString &msg, const QByteArray &data ); | 112 | void pidMessage( const QCString &msg, const QByteArray &data ); |
113 | void removeSenderFromStylusDict(); | 113 | void removeSenderFromStylusDict(); |
114 | void hideOrQuit(); | 114 | void hideOrQuit(); |
115 | 115 | ||
116 | private: | ||
117 | inline QWidget *nextWidget( QWidgetList*, QWidget* ); | ||
118 | |||
116 | protected: | 119 | protected: |
117 | bool qwsEventFilter( QWSEvent * ); | 120 | bool qwsEventFilter( QWSEvent * ); |
118 | void internalSetStyle( const QString &style ); | 121 | void internalSetStyle( const QString &style ); |
119 | void prepareForTermination(bool willrestart); | 122 | void prepareForTermination(bool willrestart); |
120 | virtual void restart(); | 123 | virtual void restart(); |
121 | virtual void shutdown(); | 124 | virtual void shutdown(); |
122 | bool eventFilter( QObject *, QEvent * ); | 125 | bool eventFilter( QObject *, QEvent * ); |
123 | void timerEvent( QTimerEvent * ); | 126 | void timerEvent( QTimerEvent * ); |
124 | bool raiseAppropriateWindow(); | 127 | bool raiseAppropriateWindow(); |
125 | virtual void tryQuit(); | 128 | virtual void tryQuit(); |
126 | #if QT_VERSION > 233 | 129 | #if QT_VERSION > 233 |
127 | virtual void polish ( QWidget * ); // this is actually implemented in qt_override.cpp (!) | 130 | virtual void polish ( QWidget * ); // this is actually implemented in qt_override.cpp (!) |
128 | #endif | 131 | #endif |
129 | private: | 132 | private: |
130 | #ifndef QT_NO_TRANSLATION | 133 | #ifndef QT_NO_TRANSLATION |
131 | void installTranslation( const QString& baseName ); | 134 | void installTranslation( const QString& baseName ); |
132 | #endif | 135 | #endif |
133 | void mapToDefaultAction( QWSKeyEvent *ke, int defKey ); | 136 | void mapToDefaultAction( QWSKeyEvent *ke, int defKey ); |
134 | void processQCopFile(); | 137 | void processQCopFile(); |
135 | 138 | ||
136 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 139 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
137 | QCopChannel *sysChannel; | 140 | QCopChannel *sysChannel; |
138 | QCopChannel *pidChannel; | 141 | QCopChannel *pidChannel; |
139 | #endif | 142 | #endif |
140 | QPEApplicationData *d; | 143 | QPEApplicationData *d; |
141 | 144 | ||
142 | bool reserved_sh; | 145 | bool reserved_sh; |
143 | 146 | ||
144 | 147 | ||
145 | 148 | ||
146 | }; | 149 | }; |
147 | 150 | ||
148 | inline void QPEApplication::showDialog( QDialog* d, bool nomax ) | 151 | inline void QPEApplication::showDialog( QDialog* d, bool nomax ) |
149 | { | 152 | { |
150 | QSize sh = d->sizeHint(); | 153 | QSize sh = d->sizeHint(); |
151 | int w = QMAX(sh.width(),d->width()); | 154 | int w = QMAX(sh.width(),d->width()); |
152 | int h = QMAX(sh.height(),d->height()); | 155 | int h = QMAX(sh.height(),d->height()); |
153 | if ( !nomax | 156 | if ( !nomax |
154 | && ( w > qApp->desktop()->width()*3/4 | 157 | && ( w > qApp->desktop()->width()*3/4 |
155 | || h > qApp->desktop()->height()*3/4 ) ) | 158 | || h > qApp->desktop()->height()*3/4 ) ) |
156 | { | 159 | { |
157 | d->showMaximized(); | 160 | d->showMaximized(); |
158 | } else { | 161 | } else { |
159 | d->resize(w,h); | 162 | d->resize(w,h); |
160 | d->show(); | 163 | d->show(); |
161 | } | 164 | } |
162 | } | 165 | } |
163 | 166 | ||
164 | inline int QPEApplication::execDialog( QDialog* d, bool nomax ) | 167 | inline int QPEApplication::execDialog( QDialog* d, bool nomax ) |
165 | { | 168 | { |
166 | showDialog(d,nomax); | 169 | showDialog(d,nomax); |
167 | return d->exec(); | 170 | return d->exec(); |
168 | } | 171 | } |
169 | 172 | ||
170 | enum Transformation { Rot0, Rot90, Rot180, Rot270 }; /* from qgfxtransformed_qws.cpp */ | 173 | enum Transformation { Rot0, Rot90, Rot180, Rot270 }; /* from qgfxtransformed_qws.cpp */ |
171 | 174 | ||
172 | inline int TransToDeg ( Transformation t ) | 175 | inline int TransToDeg ( Transformation t ) |
173 | { | 176 | { |
174 | int d = static_cast<int>( t ); | 177 | int d = static_cast<int>( t ); |
175 | return d * 90; | 178 | return d * 90; |
176 | } | 179 | } |
177 | 180 | ||
178 | inline Transformation DegToTrans ( int d ) | 181 | inline Transformation DegToTrans ( int d ) |
179 | { | 182 | { |
180 | Transformation t = static_cast<Transformation>( d / 90 ); | 183 | Transformation t = static_cast<Transformation>( d / 90 ); |
181 | return t; | 184 | return t; |
182 | } | 185 | } |
183 | 186 | ||
184 | /* | 187 | /* |
185 | * Set current rotation of Opie, and rotation for newly started apps. | 188 | * Set current rotation of Opie, and rotation for newly started apps. |
186 | * Differs from setDefaultRotation in that 1) it rotates currently running apps, | 189 | * Differs from setDefaultRotation in that 1) it rotates currently running apps, |
187 | * and 2) does not set deforient or save orientation to qpe.conf. | 190 | * and 2) does not set deforient or save orientation to qpe.conf. |
188 | */ | 191 | */ |
189 | 192 | ||
190 | inline void QPEApplication::setCurrentRotation( int r ) | 193 | inline void QPEApplication::setCurrentRotation( int r ) |
191 | { | 194 | { |
192 | // setTransformation has been introduced in Qt/Embedded 2.3.4 snapshots | 195 | // setTransformation has been introduced in Qt/Embedded 2.3.4 snapshots |
193 | // for compatibility with the SharpROM use fallback to setDefaultTransformation() | 196 | // for compatibility with the SharpROM use fallback to setDefaultTransformation() |
194 | #if QT_VERSION > 233 | 197 | #if QT_VERSION > 233 |
195 | Transformation e = DegToTrans( r ); | 198 | Transformation e = DegToTrans( r ); |
196 | setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); | 199 | ::setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); |
197 | qApp->desktop()->qwsDisplay()->setTransformation( e ); | 200 | qApp->desktop()->qwsDisplay()->setTransformation( e ); |
198 | #else | 201 | #else |
199 | setDefaultRotation( r ); | 202 | setDefaultRotation( r ); |
200 | #endif | 203 | #endif |
201 | } | 204 | } |
202 | 205 | ||
203 | 206 | ||
204 | #endif | 207 | #endif |