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
73 PlatformVariantDisabled
76 //! return a list of all platforms (rbutil internal names)
77 static QStringList
platforms(enum PlatformType type
= PlatformAll
,
79 //! returns a list of all languages
80 static QStringList
languages(void);
81 //! returns a map of usb-ids and their targets
82 static QMap
<int, QString
> usbIdMap(enum MapType
);
83 //! get a value from system settings
84 static QVariant
value(enum SystemInfos info
);
85 //! get a value from system settings for a named platform.
86 static QVariant
platformValue(QString platform
, enum SystemInfos info
);
89 //! you shouldnt call this, its a fully static calls
91 //! create the setting objects if neccessary
92 static void ensureSystemInfoExists();
93 //! pointers to our setting objects
94 static QSettings
*systemInfos
;