summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oapplication.h
Unidiff
Diffstat (limited to 'libopie2/opiecore/oapplication.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oapplication.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/libopie2/opiecore/oapplication.h b/libopie2/opiecore/oapplication.h
index 6bc2b1c..3043910 100644
--- a/libopie2/opiecore/oapplication.h
+++ b/libopie2/opiecore/oapplication.h
@@ -1,89 +1,97 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 3
4              Copyright (C) 2003 Michael Lauer <mickey@tm.informatik.uni-frankfurt.de> 4              Copyright (C) 2003 Michael Lauer <mickey@tm.informatik.uni-frankfurt.de>
5 =. 5 =.
6 .=l. 6 .=l.
7           .>+-= 7           .>+-=
8 _;:,     .>    :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     ._= =}       : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
14    .%`+i>       _;_. 14    .%`+i>       _;_.
15    .i_,=:_.      -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17    : ..    .:,     . . . without even the implied warranty of 17    : ..    .:,     . . . without even the implied warranty of
18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.=       =       ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
21++=   -.     .`     .: details. 21++=   -.     .`     .: details.
22 :     =  ...= . :.=- 22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29*/ 29*/
30 30
31#ifndef OAPPLICATION_H 31#ifndef OAPPLICATION_H
32#define OAPPLICATION_H 32#define OAPPLICATION_H
33 33
34#define oApp OApplication::oApplication() 34#define oApp OApplication::oApplication()
35 35
36#ifdef QWS
36#include <qpe/qpeapplication.h> 37#include <qpe/qpeapplication.h>
38#else
39#include <qapplication.h>
40#endif
37 41
38class OApplicationPrivate; 42class OApplicationPrivate;
39class OConfig; 43class OConfig;
40 44
41class OApplication: public QPEApplication 45#ifdef QWS
46class OApplication : public QPEApplication
47#else
48class OApplication : public QApplication
49#endif
42{ 50{
43 Q_OBJECT 51 Q_OBJECT
44 52
45 public: 53 public:
46 /** 54 /**
47 * Constructor. Parses command-line arguments and sets the window caption. 55 * Constructor. Parses command-line arguments and sets the window caption.
48 * 56 *
49 * @param rAppName application name. Will be used for finding the 57 * @param rAppName application name. Will be used for finding the
50 * associated message, icon and configuration files 58 * associated message, icon and configuration files
51 * 59 *
52 */ 60 */
53 OApplication( int& argc, char** argv, const QCString& rAppName ); 61 OApplication( int& argc, char** argv, const QCString& rAppName );
54 /** 62 /**
55 * Destructor. Destroys the application object and its children. 63 * Destructor. Destroys the application object and its children.
56 */ 64 */
57 virtual ~OApplication(); 65 virtual ~OApplication();
58 /** 66 /**
59 * @returns the process-wide application object 67 * @returns the process-wide application object
60 * 68 *
61 * This is similar to the global @ref QApplication pointer qApp. It 69 * This is similar to the global @ref QApplication pointer qApp. It
62 * allows access to the single global OApplication object, since 70 * allows access to the single global OApplication object, since
63 * more than one cannot be created in the same application. It 71 * more than one cannot be created in the same application. It
64 * saves you the trouble of having to pass the pointer explicitly 72 * saves you the trouble of having to pass the pointer explicitly
65 * to every function that may require it. 73 * to every function that may require it.
66 */ 74 */
67 static OApplication* oApplication() { return _instance; }; 75 static OApplication* oApplication() { return _instance; };
68 /** 76 /**
69 * Returns the application name as given during creation. 77 * Returns the application name as given during creation.
70 * 78 *
71 * @returns a reference to the application name 79 * @returns a reference to the application name
72 */ 80 */
73 const QCString& appName() const { return _appname; }; 81 const QCString& appName() const { return _appname; };
74 /** 82 /**
75 * @returns the application session config object. 83 * @returns the application session config object.
76 * 84 *
77 * @see OConfig 85 * @see OConfig
78 */ 86 */
79 OConfig* config(); 87 OConfig* config();
80 /** 88 /**
81 * Shows the main @a widget and sets the name of the application as window caption. 89 * Shows the main @a widget and sets the name of the application as window caption.
82 */ 90 */
83 virtual void showMainWidget( QWidget* widget, bool nomax = false ); 91 virtual void showMainWidget( QWidget* widget, bool nomax = false );
84 /** 92 /**
85 * Set the application title. The application title will be concatenated 93 * Set the application title. The application title will be concatenated
86 * to the application name given in the constructor. 94 * to the application name given in the constructor.
87 * 95 *
88 * @param title the title. If not given, resets caption to appname 96 * @param title the title. If not given, resets caption to appname
89 */ 97 */