summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2005-01-02 15:20:41 (UTC)
committer mickeyl <mickeyl>2005-01-02 15:20:41 (UTC)
commit71232a4e45f78041c2ab138edf45903bbf2b34ce (patch) (unidiff)
tree6c51dc86163e656c7ac6a3cd6ea7e7e0f1ab89c0
parent226a83c4b4334648de408249dba61bd1f7e6dba3 (diff)
downloadopie-71232a4e45f78041c2ab138edf45903bbf2b34ce.zip
opie-71232a4e45f78041c2ab138edf45903bbf2b34ce.tar.gz
opie-71232a4e45f78041c2ab138edf45903bbf2b34ce.tar.bz2
Add the Qtopia 1.7 SDK macros for quick-apps to easa compilation of 3rd party apps against our headers
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ChangeLog7
-rw-r--r--library/qpeapplication.h13
2 files changed, 17 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 913dc15..ff579d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 9
10 Internal 10 Internal
11 -------- 11 --------
12 * Added the Qtopia 1.7 SDK macros for quick-apps to easa compilation of 3rd party apps against our headers (mickeyl)
12 13
13 2004-11-26Opie 1.1.8 14 2004-11-26Opie 1.1.8
14 15
@@ -17,8 +18,8 @@
17 * PackageManager supports installation of local ipkg files (drw) 18 * PackageManager supports installation of local ipkg files (drw)
18 * PackageManager supports linking of applications to root (drw) 19 * PackageManager supports linking of applications to root (drw)
19 * PackageManager supports src/gz feeds (drw,wimpie) 20 * PackageManager supports src/gz feeds (drw,wimpie)
20 * Add a syslog information tab to sysinfo (mickeyl) 21 * Added a syslog information tab to sysinfo (mickeyl)
21 * Add new, more consistent, PIM icons + a GIMP teplate (ar) 22 * Added new, more consistent, PIM icons + a GIMP teplate (ar)
22 23
23 Fixed Bugs 24 Fixed Bugs
24 ---------- 25 ----------
@@ -29,7 +30,7 @@
29 * #1493 - Fixed one column layout bug of the launcher (hrw) 30 * #1493 - Fixed one column layout bug of the launcher (hrw)
30 * n.a. - PackageManager - (Minor UI tweak) in filter dialog, when option is enabled, set focus to widget that corresponds to that option (drw) 31 * n.a. - PackageManager - (Minor UI tweak) in filter dialog, when option is enabled, set focus to widget that corresponds to that option (drw)
31 * n.a. - PackageManager - (Minor UI tweak) fix double entry in source feed configuration when adding a new feed (drw) 32 * n.a. - PackageManager - (Minor UI tweak) fix double entry in source feed configuration when adding a new feed (drw)
32 * n.a. - Battery Applet - fix sizing of battery info popup 33 * n.a. - Battery Applet - fix sizing of battery info popup (drw,mickeyl)
33 34
34 Internal 35 Internal
35 -------- 36 --------
diff --git a/library/qpeapplication.h b/library/qpeapplication.h
index 00d3d31..849d5b3 100644
--- a/library/qpeapplication.h
+++ b/library/qpeapplication.h
@@ -220,6 +220,19 @@ inline void QPEApplication::setCurrentRotation( int r )
220#endif 220#endif
221} 221}
222 222
223/*
224 * Qtopia 1.7 SDK compatibility macros
225 * FIXME: Support Opie Quicklaunch Interface
226 */
227 #define QTOPIA_ADD_APPLICATION(NAME,IMPLEMENTATION) \
228 int main( int argc, char** argv ) \
229 { \
230 QPEApplication app = QPEApplication( argc, argv );\
231 IMPLEMENTATION* mw = new IMPLEMENTATION(); \
232 app.showMainWidget( mw ); \
233 app.exec(); \
234 }
235#define QTOPIA_MAIN // Bee-Bop-Alula
223 236
224/* 237/*
225 * -remove me 238 * -remove me