2007-07-25 20:21:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Riebeling
|
2007-07-29 18:09:41 +00:00
|
|
|
* $Id$
|
2007-07-25 20:21:06 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
|
2008-07-07 21:40:44 +00:00
|
|
|
#include "version.h"
|
2007-07-25 20:21:06 +00:00
|
|
|
#include "configure.h"
|
2007-08-05 19:48:04 +00:00
|
|
|
#include "autodetection.h"
|
2007-07-25 20:21:06 +00:00
|
|
|
#include "ui_configurefrm.h"
|
2007-08-07 16:48:45 +00:00
|
|
|
#include "browsedirtree.h"
|
2007-12-14 19:26:54 +00:00
|
|
|
#include "encoders.h"
|
2007-12-15 13:13:57 +00:00
|
|
|
#include "tts.h"
|
2008-06-27 21:53:22 +00:00
|
|
|
#include "detect.h"
|
2007-07-25 20:21:06 +00:00
|
|
|
|
2007-07-29 18:41:15 +00:00
|
|
|
#include <stdio.h>
|
2007-09-23 13:12:34 +00:00
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
#if defined(UNICODE)
|
|
|
|
#define _UNICODE
|
|
|
|
#endif
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2007-07-29 18:41:15 +00:00
|
|
|
|
2008-07-25 19:28:24 +00:00
|
|
|
#define DEFAULT_LANG "English (en)"
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-12-14 19:49:11 +00:00
|
|
|
Config::Config(QWidget *parent,int index) : QDialog(parent)
|
2007-07-25 20:21:06 +00:00
|
|
|
{
|
2007-08-12 20:40:50 +00:00
|
|
|
programPath = qApp->applicationDirPath() + "/";
|
2007-07-25 20:21:06 +00:00
|
|
|
ui.setupUi(this);
|
2007-12-14 19:49:11 +00:00
|
|
|
ui.tabConfiguration->setCurrentIndex(index);
|
2007-07-25 20:21:06 +00:00
|
|
|
ui.radioManualProxy->setChecked(true);
|
|
|
|
QRegExpValidator *proxyValidator = new QRegExpValidator(this);
|
|
|
|
QRegExp validate("[0-9]*");
|
|
|
|
proxyValidator->setRegExp(validate);
|
|
|
|
ui.proxyPort->setValidator(proxyValidator);
|
2007-09-23 13:12:34 +00:00
|
|
|
#if !defined(Q_OS_LINUX) && !defined(Q_OS_WIN32)
|
|
|
|
ui.radioSystemProxy->setEnabled(false); // not on macox for now
|
2007-07-29 18:41:15 +00:00
|
|
|
#endif
|
2007-07-29 18:09:41 +00:00
|
|
|
// build language list and sort alphabetically
|
|
|
|
QStringList langs = findLanguageFiles();
|
|
|
|
for(int i = 0; i < langs.size(); ++i)
|
2007-09-03 14:37:00 +00:00
|
|
|
lang.insert(languageName(langs.at(i)) + tr(" (%1)").arg(langs.at(i)), langs.at(i));
|
2008-07-25 19:28:24 +00:00
|
|
|
lang.insert(DEFAULT_LANG, "en");
|
2007-07-29 18:09:41 +00:00
|
|
|
QMap<QString, QString>::const_iterator i = lang.constBegin();
|
|
|
|
while (i != lang.constEnd()) {
|
|
|
|
ui.listLanguages->addItem(i.key());
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
ui.listLanguages->setSelectionMode(QAbstractItemView::SingleSelection);
|
2007-08-01 07:10:10 +00:00
|
|
|
ui.proxyPass->setEchoMode(QLineEdit::Password);
|
2007-08-12 19:18:11 +00:00
|
|
|
ui.treeDevices->setAlternatingRowColors(true);
|
|
|
|
ui.listLanguages->setAlternatingRowColors(true);
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-07-30 19:35:48 +00:00
|
|
|
this->setModal(true);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
connect(ui.buttonOk, SIGNAL(clicked()), this, SLOT(accept()));
|
|
|
|
connect(ui.buttonCancel, SIGNAL(clicked()), this, SLOT(abort()));
|
|
|
|
connect(ui.radioNoProxy, SIGNAL(toggled(bool)), this, SLOT(setNoProxy(bool)));
|
2007-07-29 18:41:15 +00:00
|
|
|
connect(ui.radioSystemProxy, SIGNAL(toggled(bool)), this, SLOT(setSystemProxy(bool)));
|
2007-08-02 21:29:31 +00:00
|
|
|
connect(ui.browseMountPoint, SIGNAL(clicked()), this, SLOT(browseFolder()));
|
2007-08-05 19:48:04 +00:00
|
|
|
connect(ui.buttonAutodetect,SIGNAL(clicked()),this,SLOT(autodetect()));
|
2007-08-27 17:40:35 +00:00
|
|
|
connect(ui.buttonCacheBrowse, SIGNAL(clicked()), this, SLOT(browseCache()));
|
|
|
|
connect(ui.buttonCacheClear, SIGNAL(clicked()), this, SLOT(cacheClear()));
|
2007-12-15 13:13:57 +00:00
|
|
|
connect(ui.configTts, SIGNAL(clicked()), this, SLOT(configTts()));
|
2007-12-14 19:26:54 +00:00
|
|
|
connect(ui.configEncoder, SIGNAL(clicked()), this, SLOT(configEnc()));
|
2007-12-15 13:13:57 +00:00
|
|
|
connect(ui.comboTts, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTtsState(int)));
|
2008-07-06 19:57:22 +00:00
|
|
|
connect(ui.treeDevices, SIGNAL(itemSelectionChanged()), this, SLOT(updateEncState()));
|
2008-05-10 15:23:15 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-05 19:48:04 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
void Config::accept()
|
|
|
|
{
|
|
|
|
qDebug() << "Config::accept()";
|
2007-07-29 18:09:41 +00:00
|
|
|
// proxy: save entered proxy values, not displayed.
|
2007-07-29 18:41:15 +00:00
|
|
|
if(ui.radioManualProxy->isChecked()) {
|
|
|
|
proxy.setScheme("http");
|
|
|
|
proxy.setUserName(ui.proxyUser->text());
|
|
|
|
proxy.setPassword(ui.proxyPass->text());
|
|
|
|
proxy.setHost(ui.proxyHost->text());
|
|
|
|
proxy.setPort(ui.proxyPort->text().toInt());
|
|
|
|
}
|
2008-01-25 00:12:25 +00:00
|
|
|
|
|
|
|
settings->setProxy(proxy.toString());
|
2007-07-25 20:21:06 +00:00
|
|
|
qDebug() << "new proxy:" << proxy;
|
2007-07-29 18:09:41 +00:00
|
|
|
// proxy type
|
2007-07-25 20:21:06 +00:00
|
|
|
QString proxyType;
|
|
|
|
if(ui.radioNoProxy->isChecked()) proxyType = "none";
|
|
|
|
else if(ui.radioSystemProxy->isChecked()) proxyType = "system";
|
|
|
|
else proxyType = "manual";
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->setProxyType(proxyType);
|
2007-07-25 20:21:06 +00:00
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
// language
|
2008-07-25 19:28:24 +00:00
|
|
|
if(settings->curLang() != language && !language.isEmpty())
|
2007-07-29 18:09:41 +00:00
|
|
|
QMessageBox::information(this, tr("Language changed"),
|
|
|
|
tr("You need to restart the application for the changed language to take effect."));
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->setLang(language);
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-08-03 16:55:27 +00:00
|
|
|
// mountpoint
|
|
|
|
QString mp = ui.mountPoint->text();
|
|
|
|
if(QFileInfo(mp).isDir())
|
2008-05-18 10:38:26 +00:00
|
|
|
settings->setMountpoint(QDir::fromNativeSeparators(mp));
|
2007-08-03 16:55:27 +00:00
|
|
|
|
|
|
|
// platform
|
|
|
|
QString nplat;
|
2007-08-10 00:01:44 +00:00
|
|
|
if(ui.treeDevices->selectedItems().size() != 0) {
|
|
|
|
nplat = ui.treeDevices->selectedItems().at(0)->data(0, Qt::UserRole).toString();
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->setCurPlatform(nplat);
|
2007-08-10 00:01:44 +00:00
|
|
|
}
|
2007-08-03 16:55:27 +00:00
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
// cache settings
|
|
|
|
if(QFileInfo(ui.cachePath->text()).isDir())
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->setCachePath(ui.cachePath->text());
|
2007-08-27 17:40:35 +00:00
|
|
|
else // default to system temp path
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->setCachePath( QDir::tempPath());
|
|
|
|
settings->setCacheDisable(ui.cacheDisable->isChecked());
|
|
|
|
settings->setCacheOffline(ui.cacheOfflineMode->isChecked());
|
2007-08-27 17:40:35 +00:00
|
|
|
|
2007-08-28 23:10:42 +00:00
|
|
|
// tts settings
|
2008-02-06 21:51:35 +00:00
|
|
|
int i = ui.comboTts->currentIndex();
|
|
|
|
settings->setCurTTS(ui.comboTts->itemData(i).toString());
|
2008-05-10 15:23:15 +00:00
|
|
|
|
2008-07-07 21:40:44 +00:00
|
|
|
settings->setCurVersion(PUREVERSION);
|
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
// sync settings
|
2008-01-25 00:12:25 +00:00
|
|
|
settings->sync();
|
2007-07-25 20:21:06 +00:00
|
|
|
this->close();
|
|
|
|
emit settingsUpdated();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Config::abort()
|
|
|
|
{
|
|
|
|
qDebug() << "Config::abort()";
|
|
|
|
this->close();
|
|
|
|
}
|
|
|
|
|
2008-01-25 00:12:25 +00:00
|
|
|
void Config::setSettings(RbSettings* sett)
|
2007-07-25 20:21:06 +00:00
|
|
|
{
|
2008-01-25 00:12:25 +00:00
|
|
|
settings = sett;
|
|
|
|
|
2008-01-19 18:33:33 +00:00
|
|
|
setUserSettings();
|
|
|
|
setDevices();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::setUserSettings()
|
|
|
|
{
|
2007-08-02 21:29:31 +00:00
|
|
|
// set proxy
|
2008-01-25 00:12:25 +00:00
|
|
|
proxy = settings->proxy();
|
2007-07-25 20:21:06 +00:00
|
|
|
|
2007-08-03 16:55:27 +00:00
|
|
|
if(proxy.port() > 0)
|
|
|
|
ui.proxyPort->setText(QString("%1").arg(proxy.port()));
|
|
|
|
else ui.proxyPort->setText("");
|
2007-07-29 18:09:41 +00:00
|
|
|
ui.proxyHost->setText(proxy.host());
|
|
|
|
ui.proxyUser->setText(proxy.userName());
|
|
|
|
ui.proxyPass->setText(proxy.password());
|
2007-07-25 20:21:06 +00:00
|
|
|
|
2008-01-25 00:12:25 +00:00
|
|
|
QString proxyType = settings->proxyType();
|
2007-07-25 20:21:06 +00:00
|
|
|
if(proxyType == "manual") ui.radioManualProxy->setChecked(true);
|
|
|
|
else if(proxyType == "system") ui.radioSystemProxy->setChecked(true);
|
2007-08-09 16:01:02 +00:00
|
|
|
else ui.radioNoProxy->setChecked(true);
|
2007-07-25 20:21:06 +00:00
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
// set language selection
|
|
|
|
QList<QListWidgetItem*> a;
|
|
|
|
QString b;
|
|
|
|
// find key for lang value
|
|
|
|
QMap<QString, QString>::const_iterator i = lang.constBegin();
|
|
|
|
while (i != lang.constEnd()) {
|
2008-01-25 00:12:25 +00:00
|
|
|
if(i.value() == settings->curLang()) {
|
2007-07-29 18:09:41 +00:00
|
|
|
b = i.key();
|
|
|
|
break;
|
|
|
|
}
|
2008-07-25 19:28:24 +00:00
|
|
|
else if(settings->curLang().startsWith(i.value(), Qt::CaseInsensitive)) {
|
|
|
|
// check if there is a base language (en -> en_US, etc.)
|
|
|
|
b = i.key();
|
|
|
|
break;
|
|
|
|
}
|
2007-07-29 18:09:41 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
a = ui.listLanguages->findItems(b, Qt::MatchExactly);
|
|
|
|
if(a.size() > 0)
|
|
|
|
ui.listLanguages->setCurrentItem(a.at(0));
|
2008-07-25 19:28:24 +00:00
|
|
|
// don't connect before language list has been set up to prevent
|
|
|
|
// triggering the signal by selecting the saved language.
|
|
|
|
connect(ui.listLanguages, SIGNAL(itemSelectionChanged()), this, SLOT(updateLanguage()));
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
// devices tab
|
2008-05-18 10:38:26 +00:00
|
|
|
ui.mountPoint->setText(QDir::toNativeSeparators(settings->mountpoint()));
|
2007-08-02 21:29:31 +00:00
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
// cache tab
|
2008-01-25 00:12:25 +00:00
|
|
|
if(!QFileInfo(settings->cachePath()).isDir())
|
|
|
|
settings->setCachePath(QDir::tempPath());
|
|
|
|
ui.cachePath->setText(settings->cachePath());
|
|
|
|
ui.cacheDisable->setChecked(settings->cacheDisabled());
|
|
|
|
ui.cacheOfflineMode->setChecked(settings->cacheOffline());
|
|
|
|
updateCacheInfo(settings->cachePath());
|
2007-10-07 18:02:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Config::updateCacheInfo(QString path)
|
|
|
|
{
|
|
|
|
QList<QFileInfo> fs;
|
|
|
|
fs = QDir(path + "/rbutil-cache/").entryInfoList(QDir::Files | QDir::NoDotAndDotDot);
|
2007-08-27 17:40:35 +00:00
|
|
|
qint64 sz = 0;
|
|
|
|
for(int i = 0; i < fs.size(); i++) {
|
|
|
|
sz += fs.at(i).size();
|
|
|
|
qDebug() << fs.at(i).fileName() << fs.at(i).size();
|
|
|
|
}
|
2007-10-07 21:26:53 +00:00
|
|
|
ui.cacheSize->setText(tr("Current cache size is %L1 kiB.")
|
2007-08-27 17:40:35 +00:00
|
|
|
.arg(sz/1024));
|
2007-08-02 21:29:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-19 18:33:33 +00:00
|
|
|
void Config::setDevices()
|
2007-08-02 21:29:31 +00:00
|
|
|
{
|
2008-01-19 18:33:33 +00:00
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
// setup devices table
|
|
|
|
qDebug() << "Config::setDevices()";
|
2008-01-25 00:12:25 +00:00
|
|
|
|
|
|
|
QStringList platformList = settings->allPlatforms();
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
QMap <QString, QString> manuf;
|
|
|
|
QMap <QString, QString> devcs;
|
2008-01-25 00:12:25 +00:00
|
|
|
for(int it = 0; it < platformList.size(); it++)
|
|
|
|
{
|
|
|
|
QString curname = settings->name(platformList.at(it));
|
|
|
|
QString curbrand = settings->brand(platformList.at(it));
|
|
|
|
manuf.insertMulti(curbrand, platformList.at(it));
|
|
|
|
devcs.insert(platformList.at(it), curname);
|
2007-08-02 21:29:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString platform;
|
2008-01-25 00:12:25 +00:00
|
|
|
platform = devcs.value(settings->curPlatform());
|
2007-08-02 21:29:31 +00:00
|
|
|
|
|
|
|
// set up devices table
|
|
|
|
ui.treeDevices->header()->hide();
|
|
|
|
ui.treeDevices->expandAll();
|
|
|
|
ui.treeDevices->setColumnCount(1);
|
|
|
|
QList<QTreeWidgetItem *> items;
|
|
|
|
|
|
|
|
// get manufacturers
|
|
|
|
QStringList brands = manuf.uniqueKeys();
|
|
|
|
QTreeWidgetItem *w;
|
|
|
|
QTreeWidgetItem *w2;
|
2007-08-03 16:30:37 +00:00
|
|
|
QTreeWidgetItem *w3 = 0;
|
2007-08-02 21:29:31 +00:00
|
|
|
for(int c = 0; c < brands.size(); c++) {
|
|
|
|
qDebug() << brands.at(c);
|
|
|
|
w = new QTreeWidgetItem();
|
|
|
|
w->setFlags(Qt::ItemIsEnabled);
|
|
|
|
w->setText(0, brands.at(c));
|
|
|
|
items.append(w);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
// go through platforms again for sake of order
|
2008-01-25 00:12:25 +00:00
|
|
|
for(int it = 0; it < platformList.size(); it++) {
|
|
|
|
|
|
|
|
QString curname = settings->name(platformList.at(it));
|
|
|
|
QString curbrand = settings->brand(platformList.at(it));
|
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
if(curbrand != brands.at(c)) continue;
|
2008-01-25 00:12:25 +00:00
|
|
|
qDebug() << "adding:" << brands.at(c) << curname;
|
2007-08-02 21:29:31 +00:00
|
|
|
w2 = new QTreeWidgetItem(w, QStringList(curname));
|
2008-01-25 00:12:25 +00:00
|
|
|
w2->setData(0, Qt::UserRole, platformList.at(it));
|
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
if(platform.contains(curname)) {
|
|
|
|
w2->setSelected(true);
|
|
|
|
w->setExpanded(true);
|
|
|
|
w3 = w2; // save pointer to hilight old selection
|
|
|
|
}
|
|
|
|
items.append(w2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui.treeDevices->insertTopLevelItems(0, items);
|
2007-08-03 16:30:37 +00:00
|
|
|
if(w3 != 0)
|
|
|
|
ui.treeDevices->setCurrentItem(w3); // hilight old selection
|
2007-08-28 23:10:42 +00:00
|
|
|
|
|
|
|
// tts / encoder tab
|
2007-12-14 19:26:54 +00:00
|
|
|
|
|
|
|
//encoders
|
2008-05-10 15:23:15 +00:00
|
|
|
updateEncState();
|
2008-02-06 21:51:35 +00:00
|
|
|
|
2007-12-14 19:26:54 +00:00
|
|
|
//tts
|
2008-02-12 21:45:50 +00:00
|
|
|
QStringList ttslist = TTSBase::getTTSList();
|
2008-02-06 21:51:35 +00:00
|
|
|
for(int a = 0; a < ttslist.size(); a++)
|
2008-02-12 21:45:50 +00:00
|
|
|
ui.comboTts->addItem(TTSBase::getTTSName(ttslist.at(a)), ttslist.at(a));
|
2007-12-15 13:13:57 +00:00
|
|
|
//update index of combobox
|
2008-05-10 15:23:15 +00:00
|
|
|
int index = ui.comboTts->findData(settings->curTTS());
|
2007-08-30 22:20:11 +00:00
|
|
|
if(index < 0) index = 0;
|
2007-08-28 23:10:42 +00:00
|
|
|
ui.comboTts->setCurrentIndex(index);
|
2007-12-15 13:13:57 +00:00
|
|
|
updateTtsState(index);
|
2007-09-23 13:35:45 +00:00
|
|
|
|
2007-08-28 23:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-15 13:13:57 +00:00
|
|
|
void Config::updateTtsState(int index)
|
2007-08-28 23:10:42 +00:00
|
|
|
{
|
2008-02-06 21:51:35 +00:00
|
|
|
QString ttsName = ui.comboTts->itemData(index).toString();
|
2008-02-12 21:45:50 +00:00
|
|
|
TTSBase* tts = TTSBase::getTTS(ttsName);
|
2008-01-25 00:12:25 +00:00
|
|
|
tts->setCfg(settings);
|
2007-09-23 13:35:45 +00:00
|
|
|
|
2007-12-15 13:13:57 +00:00
|
|
|
if(tts->configOk())
|
|
|
|
{
|
2008-07-06 16:23:51 +00:00
|
|
|
ui.configTTSstatus->setText(tr("Configuration OK"));
|
2008-03-27 23:39:49 +00:00
|
|
|
ui.configTTSstatusimg->setPixmap(QPixmap(QString::fromUtf8(":/icons/go-next.png")));
|
2007-12-15 13:13:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-06 16:23:51 +00:00
|
|
|
ui.configTTSstatus->setText(tr("Configuration INVALID"));
|
2008-03-27 23:39:49 +00:00
|
|
|
ui.configTTSstatusimg->setPixmap(QPixmap(QString::fromUtf8(":/icons/dialog-error.png")));
|
2008-02-06 21:51:35 +00:00
|
|
|
}
|
2007-07-25 20:21:06 +00:00
|
|
|
}
|
|
|
|
|
2008-05-10 15:23:15 +00:00
|
|
|
void Config::updateEncState()
|
2007-12-14 19:26:54 +00:00
|
|
|
{
|
2008-07-06 19:57:22 +00:00
|
|
|
// FIXME: this is a workaround to make the encoder follow the device selection
|
|
|
|
// even with the settings (and thus the device) being saved. Needs to be redone
|
|
|
|
// properly later by extending the settings object
|
|
|
|
if(ui.treeDevices->selectedItems().size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QString devname = ui.treeDevices->selectedItems().at(0)->data(0, Qt::UserRole).toString();
|
|
|
|
QString olddevice = settings->curPlatform();
|
|
|
|
settings->setCurPlatform(devname);
|
2008-05-10 15:23:15 +00:00
|
|
|
QString encoder = settings->curEncoder();
|
2008-07-06 19:57:22 +00:00
|
|
|
ui.encoderName->setText(EncBase::getEncoderName(settings->curEncoder()));
|
|
|
|
settings->setCurPlatform(olddevice);
|
|
|
|
|
2008-02-13 18:11:09 +00:00
|
|
|
EncBase* enc = EncBase::getEncoder(encoder);
|
2008-01-25 00:12:25 +00:00
|
|
|
enc->setCfg(settings);
|
2007-12-14 19:26:54 +00:00
|
|
|
|
|
|
|
if(enc->configOk())
|
|
|
|
{
|
2008-07-06 16:23:51 +00:00
|
|
|
ui.configEncstatus->setText(tr("Configuration OK"));
|
2008-03-27 23:39:49 +00:00
|
|
|
ui.configEncstatusimg->setPixmap(QPixmap(QString::fromUtf8(":/icons/go-next.png")));
|
2007-12-14 19:26:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-06 16:23:51 +00:00
|
|
|
ui.configEncstatus->setText(tr("Configuration INVALID"));
|
2008-03-27 23:39:49 +00:00
|
|
|
ui.configEncstatusimg->setPixmap(QPixmap(QString::fromUtf8(":/icons/dialog-error.png")));
|
2007-12-14 19:26:54 +00:00
|
|
|
}
|
|
|
|
}
|
2007-07-25 20:21:06 +00:00
|
|
|
|
|
|
|
void Config::setNoProxy(bool checked)
|
|
|
|
{
|
|
|
|
bool i = !checked;
|
|
|
|
ui.proxyPort->setEnabled(i);
|
|
|
|
ui.proxyHost->setEnabled(i);
|
|
|
|
ui.proxyUser->setEnabled(i);
|
|
|
|
ui.proxyPass->setEnabled(i);
|
|
|
|
}
|
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-07-29 18:41:15 +00:00
|
|
|
void Config::setSystemProxy(bool checked)
|
|
|
|
{
|
|
|
|
bool i = !checked;
|
|
|
|
ui.proxyPort->setEnabled(i);
|
|
|
|
ui.proxyHost->setEnabled(i);
|
|
|
|
ui.proxyUser->setEnabled(i);
|
|
|
|
ui.proxyPass->setEnabled(i);
|
|
|
|
if(checked) {
|
|
|
|
// save values in input box
|
|
|
|
proxy.setScheme("http");
|
|
|
|
proxy.setUserName(ui.proxyUser->text());
|
|
|
|
proxy.setPassword(ui.proxyPass->text());
|
|
|
|
proxy.setHost(ui.proxyHost->text());
|
|
|
|
proxy.setPort(ui.proxyPort->text().toInt());
|
|
|
|
// show system values in input box
|
2008-06-27 21:53:22 +00:00
|
|
|
QUrl envproxy = Detect::systemProxy();
|
2007-12-23 10:11:51 +00:00
|
|
|
|
|
|
|
ui.proxyHost->setText(envproxy.host());
|
2008-01-23 21:54:40 +00:00
|
|
|
|
2007-09-23 13:12:34 +00:00
|
|
|
ui.proxyPort->setText(QString("%1").arg(envproxy.port()));
|
|
|
|
ui.proxyUser->setText(envproxy.userName());
|
|
|
|
ui.proxyPass->setText(envproxy.password());
|
|
|
|
|
2007-07-29 18:41:15 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ui.proxyHost->setText(proxy.host());
|
2007-08-03 16:55:27 +00:00
|
|
|
if(proxy.port() > 0)
|
|
|
|
ui.proxyPort->setText(QString("%1").arg(proxy.port()));
|
|
|
|
else ui.proxyPort->setText("");
|
2007-07-29 18:41:15 +00:00
|
|
|
ui.proxyUser->setText(proxy.userName());
|
|
|
|
ui.proxyPass->setText(proxy.password());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
QStringList Config::findLanguageFiles()
|
|
|
|
{
|
2007-08-12 20:40:50 +00:00
|
|
|
QDir dir(programPath);
|
2007-07-29 18:09:41 +00:00
|
|
|
QStringList fileNames;
|
2007-09-03 14:37:00 +00:00
|
|
|
QStringList langs;
|
2007-07-29 18:09:41 +00:00
|
|
|
fileNames = dir.entryList(QStringList("*.qm"), QDir::Files, QDir::Name);
|
|
|
|
|
|
|
|
QDir resDir(":/lang");
|
|
|
|
fileNames += resDir.entryList(QStringList("*.qm"), QDir::Files, QDir::Name);
|
|
|
|
|
2007-09-03 14:37:00 +00:00
|
|
|
QRegExp exp("^rbutil_(.*)\\.qm");
|
|
|
|
for(int i = 0; i < fileNames.size(); i++) {
|
|
|
|
QString a = fileNames.at(i);
|
|
|
|
a.replace(exp, "\\1");
|
|
|
|
langs.append(a);
|
|
|
|
}
|
|
|
|
langs.sort();
|
|
|
|
qDebug() << "Config::findLanguageFiles()" << langs;
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2007-09-03 14:37:00 +00:00
|
|
|
return langs;
|
2007-07-29 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString Config::languageName(const QString &qmFile)
|
|
|
|
{
|
|
|
|
QTranslator translator;
|
|
|
|
|
2007-09-03 14:37:00 +00:00
|
|
|
QString file = "rbutil_" + qmFile;
|
|
|
|
if(!translator.load(file, programPath))
|
|
|
|
translator.load(file, ":/lang");
|
2007-07-29 18:09:41 +00:00
|
|
|
|
2008-07-05 21:35:23 +00:00
|
|
|
return translator.translate("Configure", "English",
|
|
|
|
"This is the localized language name, i.e. your language.");
|
2007-07-29 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Config::updateLanguage()
|
|
|
|
{
|
|
|
|
qDebug() << "updateLanguage()";
|
|
|
|
QList<QListWidgetItem*> a = ui.listLanguages->selectedItems();
|
|
|
|
if(a.size() > 0)
|
2007-09-03 14:37:00 +00:00
|
|
|
language = lang.value(a.at(0)->text());
|
|
|
|
qDebug() << language;
|
2007-07-29 18:09:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-02 21:29:31 +00:00
|
|
|
void Config::browseFolder()
|
|
|
|
{
|
2007-09-14 20:22:53 +00:00
|
|
|
browser = new BrowseDirtree(this,tr("Select your device"));
|
2007-08-07 16:48:45 +00:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
|
|
|
|
browser->setFilter(QDir::AllDirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
|
|
|
|
#elif defined(Q_OS_WIN32)
|
|
|
|
browser->setFilter(QDir::Drives);
|
|
|
|
#endif
|
2007-09-14 14:37:43 +00:00
|
|
|
#if defined(Q_OS_MACX)
|
|
|
|
browser->setRoot("/Volumes");
|
|
|
|
#elif defined(Q_OS_LINUX)
|
2007-09-14 20:10:54 +00:00
|
|
|
browser->setDir("/media");
|
2007-09-14 14:37:43 +00:00
|
|
|
#endif
|
2007-09-14 19:27:35 +00:00
|
|
|
if( ui.mountPoint->text() != "" )
|
|
|
|
{
|
2007-09-14 20:10:54 +00:00
|
|
|
browser->setDir(ui.mountPoint->text());
|
2007-09-14 19:27:35 +00:00
|
|
|
}
|
2007-08-07 16:48:45 +00:00
|
|
|
browser->show();
|
|
|
|
connect(browser, SIGNAL(itemChanged(QString)), this, SLOT(setMountpoint(QString)));
|
2007-08-02 21:29:31 +00:00
|
|
|
}
|
2007-08-05 19:48:04 +00:00
|
|
|
|
2007-08-07 16:48:45 +00:00
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
void Config::browseCache()
|
|
|
|
{
|
|
|
|
cbrowser = new BrowseDirtree(this);
|
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
|
|
|
|
cbrowser->setFilter(QDir::AllDirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
|
|
|
|
#elif defined(Q_OS_WIN32)
|
|
|
|
cbrowser->setFilter(QDir::Drives);
|
|
|
|
#endif
|
2007-09-14 20:10:54 +00:00
|
|
|
cbrowser->setDir(ui.cachePath->text());
|
2007-08-27 17:40:35 +00:00
|
|
|
connect(cbrowser, SIGNAL(itemChanged(QString)), this, SLOT(setCache(QString)));
|
2008-04-06 19:50:38 +00:00
|
|
|
cbrowser->show();
|
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
}
|
|
|
|
|
2007-08-07 16:48:45 +00:00
|
|
|
void Config::setMountpoint(QString m)
|
|
|
|
{
|
|
|
|
ui.mountPoint->setText(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
void Config::setCache(QString c)
|
|
|
|
{
|
|
|
|
ui.cachePath->setText(c);
|
2007-10-07 18:02:54 +00:00
|
|
|
updateCacheInfo(c);
|
2007-08-27 17:40:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-05 19:48:04 +00:00
|
|
|
void Config::autodetect()
|
|
|
|
{
|
|
|
|
Autodetection detector(this);
|
2008-04-03 20:05:13 +00:00
|
|
|
detector.setSettings(settings);
|
2008-05-21 22:03:37 +00:00
|
|
|
// disable tree during detection as "working" feedback.
|
|
|
|
// TODO: replace the tree view with a splash screen during this time.
|
|
|
|
ui.treeDevices->setEnabled(false);
|
2008-05-21 22:27:48 +00:00
|
|
|
QCoreApplication::processEvents();
|
2007-08-05 19:48:04 +00:00
|
|
|
|
|
|
|
if(detector.detect()) //let it detect
|
|
|
|
{
|
|
|
|
QString devicename = detector.getDevice();
|
2007-08-30 18:14:56 +00:00
|
|
|
// deexpand all items
|
|
|
|
for(int a = 0; a < ui.treeDevices->topLevelItemCount(); a++)
|
|
|
|
ui.treeDevices->topLevelItem(a)->setExpanded(false);
|
|
|
|
//deselect the selected item(s)
|
2007-09-15 22:57:07 +00:00
|
|
|
for(int a = 0; a < ui.treeDevices->selectedItems().size(); a++)
|
2007-08-30 18:14:56 +00:00
|
|
|
ui.treeDevices->selectedItems().at(a)->setSelected(false);
|
2007-08-05 19:48:04 +00:00
|
|
|
|
|
|
|
// find the new item
|
2007-08-30 16:55:04 +00:00
|
|
|
// enumerate all platform items
|
2007-08-05 19:48:04 +00:00
|
|
|
QList<QTreeWidgetItem*> itmList= ui.treeDevices->findItems("*",Qt::MatchWildcard);
|
|
|
|
for(int i=0; i< itmList.size();i++)
|
|
|
|
{
|
|
|
|
//enumerate device items
|
|
|
|
for(int j=0;j < itmList.at(i)->childCount();j++)
|
|
|
|
{
|
|
|
|
QString data = itmList.at(i)->child(j)->data(0, Qt::UserRole).toString();
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-30 16:55:04 +00:00
|
|
|
if(devicename == data) // item found
|
2007-08-05 19:48:04 +00:00
|
|
|
{
|
|
|
|
itmList.at(i)->child(j)->setSelected(true); //select the item
|
|
|
|
itmList.at(i)->setExpanded(true); //expand the platform item
|
2007-09-03 14:37:00 +00:00
|
|
|
//ui.treeDevices->indexOfTopLevelItem(itmList.at(i)->child(j));
|
2007-08-05 19:48:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-14 20:52:38 +00:00
|
|
|
if(!detector.errdev().isEmpty()) {
|
|
|
|
QString text;
|
|
|
|
if(detector.errdev() == "sansae200")
|
|
|
|
text = tr("Sansa e200 in MTP mode found!\n"
|
|
|
|
"You need to change your player to MSC mode for installation. ");
|
|
|
|
if(detector.errdev() == "h10")
|
|
|
|
text = tr("H10 20GB in MTP mode found!\n"
|
|
|
|
"You need to change your player to UMS mode for installation. ");
|
|
|
|
text += tr("Unless you changed this installation will fail!");
|
|
|
|
|
|
|
|
QMessageBox::critical(this, tr("Fatal error"), text, QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
2008-04-05 21:48:54 +00:00
|
|
|
if(!detector.incompatdev().isEmpty()) {
|
|
|
|
QString text;
|
|
|
|
// we need to set the platform here to get the brand from the
|
|
|
|
// settings object
|
|
|
|
settings->setCurPlatform(detector.incompatdev());
|
|
|
|
text = tr("Detected an unsupported %1 player variant. Sorry, "
|
|
|
|
"Rockbox doesn't run on your player.").arg(settings->curBrand());
|
|
|
|
|
|
|
|
QMessageBox::critical(this, tr("Fatal error: incompatible player found"),
|
|
|
|
text, QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-05 19:48:04 +00:00
|
|
|
if(detector.getMountPoint() != "" )
|
|
|
|
{
|
2008-05-18 10:14:47 +00:00
|
|
|
ui.mountPoint->setText(QDir::toNativeSeparators(detector.getMountPoint()));
|
2007-08-05 19:48:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QMessageBox::warning(this, tr("Autodetection"),
|
|
|
|
tr("Could not detect a Mountpoint.\n"
|
|
|
|
"Select your Mountpoint manually."),
|
|
|
|
QMessageBox::Ok ,QMessageBox::Ok);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QMessageBox::warning(this, tr("Autodetection"),
|
|
|
|
tr("Could not detect a device.\n"
|
|
|
|
"Select your device and Mountpoint manually."),
|
|
|
|
QMessageBox::Ok ,QMessageBox::Ok);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-05 19:48:04 +00:00
|
|
|
}
|
2008-05-21 22:03:37 +00:00
|
|
|
ui.treeDevices->setEnabled(true);
|
2007-08-05 19:48:04 +00:00
|
|
|
}
|
2007-08-07 16:48:45 +00:00
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
void Config::cacheClear()
|
|
|
|
{
|
|
|
|
if(QMessageBox::critical(this, tr("Really delete cache?"),
|
|
|
|
tr("Do you really want to delete the cache? "
|
|
|
|
"Make absolutely sure this setting is correct as it will "
|
|
|
|
"remove <b>all</b> files in this folder!").arg(ui.cachePath->text()),
|
|
|
|
QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes)
|
|
|
|
return;
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
QString cache = ui.cachePath->text() + "/rbutil-cache/";
|
|
|
|
if(!QFileInfo(cache).isDir()) {
|
|
|
|
QMessageBox::critical(this, tr("Path wrong!"),
|
|
|
|
tr("The cache path is invalid. Aborting."), QMessageBox::Ok);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QDir dir(cache);
|
|
|
|
QStringList fn;
|
|
|
|
fn = dir.entryList(QStringList("*"), QDir::Files, QDir::Name);
|
|
|
|
qDebug() << fn;
|
|
|
|
|
|
|
|
for(int i = 0; i < fn.size(); i++) {
|
|
|
|
QString f = cache + fn.at(i);
|
|
|
|
QFile::remove(f);
|
|
|
|
qDebug() << "removed:" << f;
|
|
|
|
}
|
2008-01-25 00:12:25 +00:00
|
|
|
updateCacheInfo(settings->cachePath());
|
2007-08-27 17:40:35 +00:00
|
|
|
}
|
2007-08-28 23:10:42 +00:00
|
|
|
|
|
|
|
|
2007-12-15 13:13:57 +00:00
|
|
|
void Config::configTts()
|
2007-08-28 23:10:42 +00:00
|
|
|
{
|
2008-02-06 21:51:35 +00:00
|
|
|
int index = ui.comboTts->currentIndex();
|
2008-02-12 21:45:50 +00:00
|
|
|
TTSBase* tts = TTSBase::getTTS(ui.comboTts->itemData(index).toString());
|
2007-12-15 13:13:57 +00:00
|
|
|
|
2008-01-25 00:12:25 +00:00
|
|
|
tts->setCfg(settings);
|
2007-12-15 13:13:57 +00:00
|
|
|
tts->showCfg();
|
|
|
|
updateTtsState(ui.comboTts->currentIndex());
|
2007-08-28 23:10:42 +00:00
|
|
|
}
|
2007-08-29 17:31:43 +00:00
|
|
|
|
|
|
|
|
2007-12-14 19:26:54 +00:00
|
|
|
void Config::configEnc()
|
2007-08-29 17:31:43 +00:00
|
|
|
{
|
2008-05-10 15:23:15 +00:00
|
|
|
EncBase* enc = EncBase::getEncoder(settings->curEncoder());
|
2007-12-14 19:26:54 +00:00
|
|
|
|
2008-01-25 00:12:25 +00:00
|
|
|
enc->setCfg(settings);
|
2007-12-14 19:26:54 +00:00
|
|
|
enc->showCfg();
|
2008-05-10 15:23:15 +00:00
|
|
|
updateEncState();
|
2007-08-29 17:31:43 +00:00
|
|
|
}
|