-rw-r--r-- | libopie2/opiecore/oglobal.h | 70 |
1 files changed, 44 insertions, 26 deletions
diff --git a/libopie2/opiecore/oglobal.h b/libopie2/opiecore/oglobal.h index 33dcb3c..d09d73e 100644 --- a/libopie2/opiecore/oglobal.h +++ b/libopie2/opiecore/oglobal.h | |||
@@ -1,25 +1,26 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | Copyright (C) 2003 Michael 'Mickey' Lauer <mickey@Vanille.de> | 3 | Copyright (C) 2003 Michael 'Mickey' Lauer <mickey@Vanille.de> |
4 | Copyright (C) 2004 Holger 'zecke' Freyther <zecke@handhelds.org> | ||
4 | =. | 5 | =. |
5 | .=l. | 6 | .=l. |
6 | .>+-= | 7 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 8 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 9 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | 10 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 11 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 12 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 13 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 14 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 15 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 16 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 17 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 18 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 19 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 20 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 21 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 22 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 23 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 24 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 25 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 26 | If not, write to the Free Software Foundation, |
@@ -32,6 +33,14 @@ _;:, .> :=|. This program is free software; you can | |||
32 | 33 | ||
33 | #include <qpe/global.h> | ||
34 | #include <qpe/timestring.h> | ||
35 | 34 | ||
36 | #include <opie2/oconfig.h> | 35 | #include <opie2/oconfig.h> |
36 | |||
37 | #ifndef private | ||
38 | #define HACK_DEFINED | ||
39 | #define private protected | ||
40 | #endif | ||
41 | #include <qpe/global.h> | ||
42 | #ifdef HACK_DEFINED | ||
43 | #undef private | ||
44 | #endif | ||
45 | |||
37 | #include <sys/types.h> | 46 | #include <sys/types.h> |
@@ -45,2 +54,3 @@ class QFile; | |||
45 | class QString; | 54 | class QString; |
55 | class DateFormat; | ||
46 | /** | 56 | /** |
@@ -54,2 +64,4 @@ class QString; | |||
54 | * @todo ODP implement the things from Global which are good | 64 | * @todo ODP implement the things from Global which are good |
65 | * @author mickey,alwin,zecke | ||
66 | * @version 0.1 | ||
55 | */ | 67 | */ |
@@ -86,3 +98,3 @@ public: | |||
86 | //@{ | 98 | //@{ |
87 | static QByteArray encodeBase64(const QByteArray& ); | 99 | static QByteArray encodeBase64(const QByteArray&, bool insertLF = false ); |
88 | static QByteArray decodeBase64(const QByteArray& ); | 100 | static QByteArray decodeBase64(const QByteArray& ); |
@@ -109,4 +121,6 @@ public: | |||
109 | */ | 121 | */ |
110 | static DateFormat dateFormat(); | ||
111 | #endif | 122 | #endif |
123 | static DateFormat dateFormat(); | ||
124 | static void setDateFormat( const DateFormat& ); | ||
125 | |||
112 | 126 | ||
@@ -114,5 +128,9 @@ public: | |||
114 | static void setUseAMPM( bool ); | 128 | static void setUseAMPM( bool ); |
115 | static void setDateFormat( const DateFormat& ); | ||
116 | //@} | 129 | //@} |
117 | 130 | ||
131 | //@{ | ||
132 | static Global::Command* builtinCommands(); | ||
133 | static QGuardedPtr<QWidget>* builtinRunning(); | ||
134 | //@} | ||
135 | |||
118 | private: | 136 | private: |