1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2010 by Dominik Wenger
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
27 class SystemInfo
: public QObject
31 //! Type of requested usb-id map
38 //! All system settings
75 PlatformVariantDisabled
78 //! return a list of all platforms (rbutil internal names)
79 static QStringList
platforms(enum PlatformType type
= PlatformAll
,
81 //! returns a list of all languages
82 static QStringList
languages(void);
83 //! returns a map of usb-ids and their targets
84 static QMap
<int, QString
> usbIdMap(enum MapType
);
85 //! get a value from system settings
86 static QVariant
value(enum SystemInfos info
);
87 //! get a value from system settings for a named platform.
88 static QVariant
platformValue(QString platform
, enum SystemInfos info
);
91 //! you shouldnt call this, its a fully static calls
93 //! create the setting objects if neccessary
94 static void ensureSystemInfoExists();
95 //! pointers to our setting objects
96 static QSettings
*systemInfos
;