forked from len0rd/rockbox
Add option to show disabled targets in the configuration dialog.
Note that disabled targets support is not intended for use by end users. This is to make development (and testing of svn) easier and should get disabled for releases. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24513 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
69fe1ad830
commit
a9ab407f84
5 changed files with 268 additions and 217 deletions
|
@ -119,7 +119,8 @@ QStringList SystemInfo::platforms(enum SystemInfo::PlatformType type, QString va
|
||||||
{
|
{
|
||||||
QString target = systemInfos->value("platforms/"+a.at(i), "null").toString();
|
QString target = systemInfos->value("platforms/"+a.at(i), "null").toString();
|
||||||
// only add target if its not disabled
|
// only add target if its not disabled
|
||||||
if(systemInfos->value(target+"/status").toString() == "disabled")
|
if(type != PlatformAllDisabled
|
||||||
|
&& systemInfos->value(target+"/status").toString() == "disabled")
|
||||||
continue;
|
continue;
|
||||||
// report only base targets when PlatformBase is requested
|
// report only base targets when PlatformBase is requested
|
||||||
if(type == PlatformBase && target.contains('.'))
|
if(type == PlatformBase && target.contains('.'))
|
||||||
|
|
|
@ -65,6 +65,7 @@ class SystemInfo : public QObject
|
||||||
|
|
||||||
enum PlatformType {
|
enum PlatformType {
|
||||||
PlatformAll,
|
PlatformAll,
|
||||||
|
PlatformAllDisabled,
|
||||||
PlatformBase,
|
PlatformBase,
|
||||||
PlatformVariant
|
PlatformVariant
|
||||||
};
|
};
|
||||||
|
|
|
@ -99,6 +99,7 @@ Config::Config(QWidget *parent,int index) : QDialog(parent)
|
||||||
connect(ui.comboTts, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTtsState(int)));
|
connect(ui.comboTts, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTtsState(int)));
|
||||||
connect(ui.treeDevices, SIGNAL(itemSelectionChanged()), this, SLOT(updateEncState()));
|
connect(ui.treeDevices, SIGNAL(itemSelectionChanged()), this, SLOT(updateEncState()));
|
||||||
connect(ui.testTTS,SIGNAL(clicked()),this,SLOT(testTts()));
|
connect(ui.testTTS,SIGNAL(clicked()),this,SLOT(testTts()));
|
||||||
|
connect(ui.showDisabled, SIGNAL(toggled(bool)), this, SLOT(showDisabled(bool)));
|
||||||
setUserSettings();
|
setUserSettings();
|
||||||
setDevices();
|
setDevices();
|
||||||
}
|
}
|
||||||
|
@ -282,20 +283,38 @@ void Config::updateCacheInfo(QString path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Config::showDisabled(bool show)
|
||||||
|
{
|
||||||
|
qDebug() << "[Config] disabled targets shown:" << show;
|
||||||
|
if(show)
|
||||||
|
QMessageBox::warning(this, tr("Showing disabled targets"),
|
||||||
|
tr("You just enabled showing targets that are marked disabled. "
|
||||||
|
"Disabled targets are not recommended to end users. Please "
|
||||||
|
"use this option only if you know what you are doing."));
|
||||||
|
setDevices();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Config::setDevices()
|
void Config::setDevices()
|
||||||
{
|
{
|
||||||
|
|
||||||
// setup devices table
|
// setup devices table
|
||||||
qDebug() << "[Config] setting up devices list";
|
qDebug() << "[Config] setting up devices list";
|
||||||
|
|
||||||
QStringList platformList = SystemInfo::platforms();
|
QStringList platformList;
|
||||||
|
if(ui.showDisabled->isChecked())
|
||||||
|
platformList = SystemInfo::platforms(SystemInfo::PlatformAllDisabled);
|
||||||
|
else
|
||||||
|
platformList = SystemInfo::platforms(SystemInfo::PlatformAll);
|
||||||
|
|
||||||
QMap <QString, QString> manuf;
|
QMap <QString, QString> manuf;
|
||||||
QMap <QString, QString> devcs;
|
QMap <QString, QString> devcs;
|
||||||
for(int it = 0; it < platformList.size(); it++)
|
for(int it = 0; it < platformList.size(); it++)
|
||||||
{
|
{
|
||||||
QString curname = SystemInfo::name(platformList.at(it)) +
|
QString curname = SystemInfo::name(platformList.at(it)) +
|
||||||
" (" +ServerInfo::platformValue(platformList.at(it),ServerInfo::CurStatus).toString() + ")";
|
" (" +ServerInfo::platformValue(platformList.at(it),
|
||||||
|
ServerInfo::CurStatus).toString() + ")";
|
||||||
QString curbrand = SystemInfo::brand(platformList.at(it));
|
QString curbrand = SystemInfo::brand(platformList.at(it));
|
||||||
manuf.insertMulti(curbrand, platformList.at(it));
|
manuf.insertMulti(curbrand, platformList.at(it));
|
||||||
devcs.insert(platformList.at(it), curname);
|
devcs.insert(platformList.at(it), curname);
|
||||||
|
@ -341,6 +360,14 @@ void Config::setDevices()
|
||||||
items.append(w2);
|
items.append(w2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// remove any old items in list
|
||||||
|
QTreeWidgetItem* widgetitem;
|
||||||
|
do {
|
||||||
|
widgetitem = ui.treeDevices->takeTopLevelItem(0);
|
||||||
|
delete widgetitem;
|
||||||
|
}
|
||||||
|
while(widgetitem);
|
||||||
|
// add new items
|
||||||
ui.treeDevices->insertTopLevelItems(0, items);
|
ui.treeDevices->insertTopLevelItems(0, items);
|
||||||
if(w3 != 0)
|
if(w3 != 0)
|
||||||
ui.treeDevices->setCurrentItem(w3); // hilight old selection
|
ui.treeDevices->setCurrentItem(w3); // hilight old selection
|
||||||
|
|
|
@ -71,6 +71,7 @@ class Config : public QDialog
|
||||||
void updateTtsState(int);
|
void updateTtsState(int);
|
||||||
void updateEncState();
|
void updateEncState();
|
||||||
void testTts();
|
void testTts();
|
||||||
|
void showDisabled(bool);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<ui version="4.0">
|
<ui version="4.0">
|
||||||
<class>ConfigForm</class>
|
<class>ConfigForm</class>
|
||||||
<widget class="QDialog" name="ConfigForm">
|
<widget class="QDialog" name="ConfigForm">
|
||||||
|
@ -26,15 +27,15 @@
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tabDevice">
|
<widget class="QWidget" name="tabDevice">
|
||||||
<attribute name="title" >
|
|
||||||
<string>&Device</string>
|
|
||||||
</attribute>
|
|
||||||
<attribute name="icon">
|
<attribute name="icon">
|
||||||
<iconset resource="rbutilqt.qrc">
|
<iconset resource="rbutilqt.qrc">
|
||||||
<normaloff>:/icons/rbutil.png</normaloff>:/icons/rbutil.png</iconset>
|
<normaloff>:/icons/rbutil.png</normaloff>:/icons/rbutil.png</iconset>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QGridLayout" >
|
<attribute name="title">
|
||||||
<item row="0" column="0" >
|
<string>&Device</string>
|
||||||
|
</attribute>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0" colspan="2">
|
||||||
<widget class="QLabel" name="labelMountPoint">
|
<widget class="QLabel" name="labelMountPoint">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Select your device in the &filesystem</string>
|
<string>Select your device in the &filesystem</string>
|
||||||
|
@ -44,7 +45,7 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0" colspan="2" >
|
<item row="1" column="0" colspan="3">
|
||||||
<layout class="QHBoxLayout">
|
<layout class="QHBoxLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="mountPoint"/>
|
<widget class="QLineEdit" name="mountPoint"/>
|
||||||
|
@ -75,7 +76,27 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0" colspan="2" >
|
<item row="2" column="1">
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>118</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="2">
|
||||||
|
<widget class="QCheckBox" name="showDisabled">
|
||||||
|
<property name="text">
|
||||||
|
<string>Show disabled targets</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0" colspan="3">
|
||||||
<widget class="QTreeWidget" name="treeDevices">
|
<widget class="QTreeWidget" name="treeDevices">
|
||||||
<column>
|
<column>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
@ -84,7 +105,7 @@
|
||||||
</column>
|
</column>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="0" colspan="2" >
|
<item row="4" column="0">
|
||||||
<widget class="QPushButton" name="buttonAutodetect">
|
<widget class="QPushButton" name="buttonAutodetect">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Autodetect</string>
|
<string>&Autodetect</string>
|
||||||
|
@ -104,13 +125,13 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tabProxy">
|
<widget class="QWidget" name="tabProxy">
|
||||||
<attribute name="title" >
|
|
||||||
<string>&Proxy</string>
|
|
||||||
</attribute>
|
|
||||||
<attribute name="icon">
|
<attribute name="icon">
|
||||||
<iconset resource="rbutilqt.qrc">
|
<iconset resource="rbutilqt.qrc">
|
||||||
<normaloff>:/icons/network-idle.png</normaloff>:/icons/network-idle.png</iconset>
|
<normaloff>:/icons/network-idle.png</normaloff>:/icons/network-idle.png</iconset>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
<attribute name="title">
|
||||||
|
<string>&Proxy</string>
|
||||||
|
</attribute>
|
||||||
<layout class="QGridLayout">
|
<layout class="QGridLayout">
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QRadioButton" name="radioNoProxy">
|
<widget class="QRadioButton" name="radioNoProxy">
|
||||||
|
@ -221,13 +242,13 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tabLanguage">
|
<widget class="QWidget" name="tabLanguage">
|
||||||
<attribute name="title" >
|
|
||||||
<string>&Language</string>
|
|
||||||
</attribute>
|
|
||||||
<attribute name="icon">
|
<attribute name="icon">
|
||||||
<iconset resource="rbutilqt.qrc">
|
<iconset resource="rbutilqt.qrc">
|
||||||
<normaloff>:/icons/preferences-desktop-locale.png</normaloff>:/icons/preferences-desktop-locale.png</iconset>
|
<normaloff>:/icons/preferences-desktop-locale.png</normaloff>:/icons/preferences-desktop-locale.png</iconset>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
<attribute name="title">
|
||||||
|
<string>&Language</string>
|
||||||
|
</attribute>
|
||||||
<layout class="QGridLayout">
|
<layout class="QGridLayout">
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QListWidget" name="listLanguages"/>
|
<widget class="QListWidget" name="listLanguages"/>
|
||||||
|
@ -235,13 +256,13 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tabCache">
|
<widget class="QWidget" name="tabCache">
|
||||||
<attribute name="title" >
|
|
||||||
<string>Cac&he</string>
|
|
||||||
</attribute>
|
|
||||||
<attribute name="icon">
|
<attribute name="icon">
|
||||||
<iconset resource="rbutilqt.qrc">
|
<iconset resource="rbutilqt.qrc">
|
||||||
<normaloff>:/icons/package-x-generic.png</normaloff>:/icons/package-x-generic.png</iconset>
|
<normaloff>:/icons/package-x-generic.png</normaloff>:/icons/package-x-generic.png</iconset>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
<attribute name="title">
|
||||||
|
<string>Cac&he</string>
|
||||||
|
</attribute>
|
||||||
<attribute name="toolTip">
|
<attribute name="toolTip">
|
||||||
<string>Download cache settings</string>
|
<string>Download cache settings</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
@ -356,13 +377,13 @@
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tabTts">
|
<widget class="QWidget" name="tabTts">
|
||||||
<attribute name="title" >
|
|
||||||
<string>&TTS && Encoder</string>
|
|
||||||
</attribute>
|
|
||||||
<attribute name="icon">
|
<attribute name="icon">
|
||||||
<iconset resource="rbutilqt.qrc">
|
<iconset resource="rbutilqt.qrc">
|
||||||
<normaloff>:/icons/audio-input-microphone.png</normaloff>:/icons/audio-input-microphone.png</iconset>
|
<normaloff>:/icons/audio-input-microphone.png</normaloff>:/icons/audio-input-microphone.png</iconset>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
<attribute name="title">
|
||||||
|
<string>&TTS && Encoder</string>
|
||||||
|
</attribute>
|
||||||
<layout class="QVBoxLayout">
|
<layout class="QVBoxLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QGroupBox" name="groupBox_2">
|
<widget class="QGroupBox" name="groupBox_2">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue