00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef APP_INCLUDES
00025 #define APP_INCLUDES
00026
00027 #include "../applications/addressbook/addressbook.h"
00028 #include "../applications/datebook/datebook.h"
00029 #include "../applications/todo/mainwindow.h"
00030 #include "../applications/qtmail/qtmailwindow.h"
00031
00032
00033 #include "../libraries/qtopiacalc/calculator.h"
00034
00035 #include "../applications/clock/clock.h"
00036 #include "../applications/helpbrowser/helpbrowser.h"
00037 #include "../applications/imageviewer/showimg.h"
00038 #include "../applications/mediaplayer/maindocumentwidgetstack.h"
00039
00040 #include "../applications/textedit/textedit.h"
00041
00042
00043 #include "../games/fifteen/fifteen.h"
00044 #include "../games/go/gowidget.h"
00045 #include "../games/mindbreaker/mindbreaker.h"
00046 #include "../games/minesweep/minesweep.h"
00047 #include "../games/qasteroids/toplevel.h"
00048 #include "../games/snake/interface.h"
00049 #include "../games/tetrix/qtetrix.h"
00050 #include "../games/solitaire/canvascardwindow.h"
00051
00052
00053
00054
00055 #include "../settings/systemtime/settime.h"
00056 #include "../settings/appearance/appearance.h"
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066 #endif
00067
00068
00069
00070 APP( "addressbook",AddressbookWindow,1,0 )
00071 APP( "datebook",DateBook,1,0 )
00072 APP( "todolist",TodoWindow,1,0 )
00073 APP( "qtmail",QTMailWindow,1,0 )
00074
00075
00076 APP( "calculator",Calculator,1,0 )
00077
00078 APP( "clock",Clock,1,0 )
00079 APP( "helpbrowser",HelpBrowser,1,1 )
00080 APP( "showimg",ImageViewer,1,0 )
00081 APP( "mpegplayer",MainDocumentWidgetStack,1,0 )
00082
00083 APP( "textedit",TextEdit,1,1 )
00084
00085
00086 APP( "fifteen",FifteenMainWindow,1,0 )
00087 APP( "go",GoMainWidget,1,0 )
00088 APP( "mindbreaker",MindBreaker,1,0 )
00089 APP( "minesweep",MineSweep,1,0 )
00090 APP( "qasteroids",KAstTopLevel,1,0 )
00091 APP( "snake",SnakeGame,1,0 )
00092 APP( "tetrix",QTetrix,1,0 )
00093 APP( "patience",CanvasCardWindow,1,0 )
00094
00095
00096
00097
00098 APP( "systemtime",SetDateTime,1,0 )
00099 APP( "appearance",AppearanceSettings,1,0 )
00100
00101
00102
00103
00104
00105
00106
00107
00108