author | zecke <zecke> | 2002-03-22 12:50:50 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-03-22 12:50:50 (UTC) |
commit | 72341ed4c9a872004c89186a56833c5fe61d48d3 (patch) (unidiff) | |
tree | 9f212beec761fa2e2b257fbdc596a92c07c9dbb7 | |
parent | d710cacb0ee021274ed5507a76a3cc0ca9a65a4e (diff) | |
download | opie-72341ed4c9a872004c89186a56833c5fe61d48d3.zip opie-72341ed4c9a872004c89186a56833c5fe61d48d3.tar.gz opie-72341ed4c9a872004c89186a56833c5fe61d48d3.tar.bz2 |
small wrapper around config to let us select any file
and treat it like a config
This will be used in a new kewl feature
-rw-r--r-- | libopie/libopie.pro | 5 | ||||
-rw-r--r-- | libopie/oconfig.cpp | 45 | ||||
-rw-r--r-- | libopie/oconfig.h | 48 |
3 files changed, 96 insertions, 2 deletions
diff --git a/libopie/libopie.pro b/libopie/libopie.pro index 502c629..ab56473 100644 --- a/libopie/libopie.pro +++ b/libopie/libopie.pro | |||
@@ -2,4 +2,4 @@ TEMPLATE = lib | |||
2 | CONFIG += qte warn_on release | 2 | CONFIG += qte warn_on release |
3 | HEADERS = tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h | 3 | HEADERS = tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h oconfig.h |
4 | SOURCES = xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp | 4 | SOURCES = xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp oconfig.cpp |
5 | TARGET = opie | 5 | TARGET = opie |
@@ -7 +7,2 @@ INCLUDEPATH += $(OPIEDIR)/include | |||
7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) | 7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) |
8 | #VERSION = 1.0.0 \ No newline at end of file | ||
diff --git a/libopie/oconfig.cpp b/libopie/oconfig.cpp new file mode 100644 index 0000000..d051d54 --- a/dev/null +++ b/libopie/oconfig.cpp | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | =. This file is part of the OPIE Project | ||
3 | .=l. Copyright (c) 2002 Holger Freyther <freyther@kde.org> | ||
4 | .>+-= | ||
5 | _;:, .> :=|. This library is free software; you can | ||
6 | .> <`_, > . <= redistribute it and/or modify it under | ||
7 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
8 | .="- .-=="i, .._ License as published by the Free Software | ||
9 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
10 | ._= =} : or (at your option) any later version. | ||
11 | .%`+i> _;_. | ||
12 | .i_,=:_. -<s. This library is distributed in the hope that | ||
13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
14 | : .. .:, . . . without even the implied warranty of | ||
15 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
16 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
17 | ..}^=.= = ; Library General Public License for more | ||
18 | ++= -. .` .: details. | ||
19 | : = ...= . :.=- | ||
20 | -. .:....=;==+<; You should have received a copy of the GNU | ||
21 | -_. . . )=. = Library General Public License along with | ||
22 | -- :-=` this library; see the file COPYING.LIB. | ||
23 | If not, write to the Free Software Foundation, | ||
24 | Inc., 59 Temple Place - Suite 330, | ||
25 | Boston, MA 02111-1307, USA. | ||
26 | |||
27 | */ | ||
28 | |||
29 | #include <opie/oconfig.h> | ||
30 | |||
31 | OConfig::OConfig(const QString &file) | ||
32 | : Config("tmpopie" ) | ||
33 | { | ||
34 | filename = file; | ||
35 | read(); | ||
36 | } | ||
37 | OConfig::~OConfig() | ||
38 | { | ||
39 | // Config will write the file for us | ||
40 | } | ||
41 | QString OConfig::fileName() const | ||
42 | { | ||
43 | return filename; | ||
44 | } | ||
45 | |||
diff --git a/libopie/oconfig.h b/libopie/oconfig.h new file mode 100644 index 0000000..c97fb6a --- a/dev/null +++ b/libopie/oconfig.h | |||
@@ -0,0 +1,48 @@ | |||
1 | /* | ||
2 | =. This file is part of the OPIE Project | ||
3 | .=l. Copyright (c) 2002 Holger 'zecke' Freyther<freyther@kde.org> | ||
4 | .>+-= | ||
5 | _;:, .> :=|. This library is free software; you can | ||
6 | .> <`_, > . <= redistribute it and/or modify it under | ||
7 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
8 | .="- .-=="i, .._ License as published by the Free Software | ||
9 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
10 | ._= =} : or (at your option) any later version. | ||
11 | .%`+i> _;_. | ||
12 | .i_,=:_. -<s. This library is distributed in the hope that | ||
13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
14 | : .. .:, . . . without even the implied warranty of | ||
15 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
16 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
17 | ..}^=.= = ; Library General Public License for more | ||
18 | ++= -. .` .: details. | ||
19 | : = ...= . :.=- | ||
20 | -. .:....=;==+<; You should have received a copy of the GNU | ||
21 | -_. . . )=. = Library General Public License along with | ||
22 | -- :-=` this library; see the file COPYING.LIB. | ||
23 | If not, write to the Free Software Foundation, | ||
24 | Inc., 59 Temple Place - Suite 330, | ||
25 | Boston, MA 02111-1307, USA. | ||
26 | |||
27 | */ | ||
28 | |||
29 | |||
30 | #include <qpe/config.h> | ||
31 | |||
32 | #ifndef opieconfig_h | ||
33 | #define opieconfig_h | ||
34 | |||
35 | /** It supports all Config items + it lets you decide | ||
36 | * which file to use. | ||
37 | */ | ||
38 | |||
39 | class OConfig : public Config { | ||
40 | public: | ||
41 | OConfig( const QString &filename ); | ||
42 | ~OConfig(); | ||
43 | QString fileName() const; | ||
44 | |||
45 | }; | ||
46 | |||
47 | #endif | ||
48 | |||