summaryrefslogtreecommitdiff
path: root/core/launcher/apps.h
Unidiff
Diffstat (limited to 'core/launcher/apps.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/apps.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/core/launcher/apps.h b/core/launcher/apps.h
new file mode 100644
index 0000000..6216941
--- a/dev/null
+++ b/core/launcher/apps.h
@@ -0,0 +1,83 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
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
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
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.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21
22// To add a new app, include appropriate files and add another APP().
23
24#ifndef APP_INCLUDES
25#define APP_INCLUDES
26
27#include "../addressbook/addressbook.h"
28#include "../datebook/datebook.h"
29#include "../helpbrowser/helpbrowser.h"
30#include "../minesweep/minesweep.h"
31#include "../textedit/textedit.h"
32#include "../todo/mainwindow.h"
33#include "../citytime/citytime.h"
34#include "../clock/clock.h"
35#include "../calculator/calculatorimpl.h"
36#include "../sysinfo/sysinfo.h"
37#include "../settings/appearance/settings.h"
38//#include "../settings/language/settings.h"
39//#include "../settings/light-and-power/settings.h"
40//#include "../settings/rotation/settings.h"
41#include "../settings/systemtime/settime.h"
42#if !defined(QT_QPE_SMALL_BUILD)
43#include "../filebrowser/filebrowser.h"
44#include "../solitaire/canvascardwindow.h"
45#include "../snake/interface.h"
46#include "../parashoot/interface.h"
47#include "../mpegplayer/mediaplayer.h"
48#endif
49#if !defined(QT_DEMO_SINGLE_FLOPPY) && !defined(QT_QPE_SMALL_BUILD)
50#include "../embeddedkonsole/konsole.h"
51#include "../wordgame/wordgame.h"
52#endif
53
54#endif
55
56// app-id class maximize? documentary?
57
58 APP( "addressbook", AddressbookWindow, 1, 0 )
59 APP( "datebook", DateBook, 1, 0 )
60 APP( "helpbrowser", HelpBrowser, 1, 1 )
61 APP( "textedit", TextEdit, 1, 1 )
62 APP( "todo", TodoWindow, 1, 0 )
63 APP( "calculator", CalculatorImpl, 1, 0 )
64 APP( "citytime", CityTime, 1, 0 )
65 APP( "clock", Clock, 1, 0 )
66 APP( "minesweep", MineSweep, 1, 0 )
67 APP( "sysinfo", SystemInfo, 1, 0 )
68 APP( "appearance", AppearanceSettings, 1, 0 )
69 APP( "systemtime", SetDateTime, 1, 0 )
70#if !defined(QT_QPE_SMALL_BUILD)
71 //APP( "light-and-power", LightSettings, 1, 0 )
72 //APP( "sound", SoundSettings, 1, 0 )
73 APP( "filebrowser", FileBrowser, 1, 0 )
74 APP( "solitaire", CanvasCardWindow, 1, 0 )
75 APP( "snake", SnakeGame, 1, 0 )
76 APP( "parashoot", ParaShoot, 1, 0 )
77 APP( "mpegplayer", MediaPlayer, 1, 0 )
78#endif
79#if !defined(QT_DEMO_SINGLE_FLOPPY) && !defined(QT_QPE_SMALL_BUILD)
80 APP( "embeddedkonsole", Konsole, 1, 0 )
81 APP( "wordgame", WordGame, 1, 0 )
82#endif
83