Voicefile: remove < and > from voice strings before speaking.
[maemo-rb.git] / rbutil / rbutilqt / base / systeminfo.h
blob77388fcd16a78f8edecadc0cca0aff0b39950960
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2010 by Dominik Wenger
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 #ifndef SYSTEMINFO_H
22 #define SYSTEMINFO_H
24 #include <QtCore>
26 class SystemInfo : public QObject
28 Q_OBJECT
29 public:
30 //! Type of requested usb-id map
31 enum MapType {
32 MapDevice,
33 MapError,
34 MapIncompatible,
37 //! All system settings
38 enum SystemInfos {
39 ManualUrl,
40 BleedingUrl,
41 BootloaderUrl,
42 BootloaderInfoUrl,
43 DailyUrl,
44 DailyFontUrl,
45 DailyVoiceUrl,
46 DoomUrl,
47 ReleaseUrl,
48 ReleaseVoiceUrl,
49 ReleaseFontUrl,
50 ServerConfUrl,
51 GenlangUrl,
52 ThemesUrl,
53 ThemesInfoUrl,
54 RbutilUrl,
55 BleedingInfo,
56 CurPlatformName,
57 CurManual,
58 CurBootloaderMethod,
59 CurBootloaderName,
60 CurBootloaderFile,
61 CurEncoder,
62 CurBrand,
63 CurName,
64 CurBuildserverModel,
65 CurConfigureModel,
68 enum PlatformType {
69 PlatformAll,
70 PlatformAllDisabled,
71 PlatformBase,
72 PlatformBaseDisabled,
73 PlatformVariant,
74 PlatformVariantDisabled
77 //! return a list of all platforms (rbutil internal names)
78 static QStringList platforms(enum PlatformType type = PlatformAll,
79 QString variant="");
80 //! returns a map of all languages
81 static QMap<QString, QString> languages(void);
82 //! returns a map of usb-ids and their targets
83 static QMap<int, QString> usbIdMap(enum MapType);
84 //! get a value from system settings
85 static QVariant value(enum SystemInfos info);
86 //! get a value from system settings for a named platform.
87 static QVariant platformValue(QString platform, enum SystemInfos info);
89 private:
90 //! you shouldnt call this, its a fully static calls
91 SystemInfo() {}
92 //! create the setting objects if neccessary
93 static void ensureSystemInfoExists();
94 //! pointers to our setting objects
95 static QSettings *systemInfos;
98 #endif