SVN_SILENT made messages (.desktop file)
[kdepim.git] / ktimetracker / preferences.h
blobbb7784b151c47eb04af3b5a7f45c2fdacf0d67ca
1 /*
2 * Copyright (C) 2000 by Jesper Pedersen <blackie@kde.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the
16 * Free Software Foundation, Inc.
17 * 51 Franklin Street, Fifth Floor
18 * Boston, MA 02110-1301 USA.
22 #ifndef KTIMETRACKER_PREFERENCES_H
23 #define KTIMETRACKER_PREFERENCES_H
25 #include <KPageDialog>
28 /**
29 Provide an interface to the configuration options for the program.
31 class Preferences : public KPageDialog
33 Q_OBJECT
35 public:
36 static Preferences *instance();
38 bool readBoolEntry( const QString& uid );
39 void writeEntry( const QString &key, bool value );
40 void deleteEntry( const QString &key );
42 private:
43 Preferences();
44 static Preferences *mInstance;
47 #endif // KTIMETRACKER_PREFERENCES_H