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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIGURE_H
|
|
|
|
#define CONFIGURE_H
|
|
|
|
|
|
|
|
#include "ui_configurefrm.h"
|
2007-08-07 16:48:45 +00:00
|
|
|
#include "browsedirtree.h"
|
2008-01-25 00:12:25 +00:00
|
|
|
#include "rbsettings.h"
|
2007-07-25 20:21:06 +00:00
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
class Config : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2007-12-14 19:49:11 +00:00
|
|
|
Config(QWidget *parent = 0,int index=0);
|
2008-01-25 00:12:25 +00:00
|
|
|
void setSettings(RbSettings* sett);
|
2008-01-19 18:33:33 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
signals:
|
|
|
|
void settingsUpdated(void);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void accept(void);
|
|
|
|
void abort(void);
|
|
|
|
|
|
|
|
private:
|
2008-01-19 18:33:33 +00:00
|
|
|
void setUserSettings();
|
|
|
|
void setDevices();
|
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
Ui::ConfigForm ui;
|
2008-01-25 00:12:25 +00:00
|
|
|
RbSettings* settings;
|
|
|
|
|
2007-07-29 18:09:41 +00:00
|
|
|
QStringList findLanguageFiles(void);
|
|
|
|
QString languageName(const QString&);
|
|
|
|
QMap<QString, QString> lang;
|
|
|
|
QString language;
|
|
|
|
QString programPath;
|
2007-07-29 18:41:15 +00:00
|
|
|
QUrl proxy;
|
2007-10-07 18:02:54 +00:00
|
|
|
void updateCacheInfo(QString);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-07 16:48:45 +00:00
|
|
|
BrowseDirtree *browser;
|
2007-08-27 17:40:35 +00:00
|
|
|
BrowseDirtree *cbrowser;
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
private slots:
|
|
|
|
void setNoProxy(bool);
|
2007-07-29 18:41:15 +00:00
|
|
|
void setSystemProxy(bool);
|
2007-07-29 18:09:41 +00:00
|
|
|
void updateLanguage(void);
|
2007-08-02 21:29:31 +00:00
|
|
|
void browseFolder(void);
|
2007-08-27 17:40:35 +00:00
|
|
|
void browseCache(void);
|
2007-08-05 19:48:04 +00:00
|
|
|
void autodetect(void);
|
2007-08-07 16:48:45 +00:00
|
|
|
void setMountpoint(QString);
|
2007-08-27 17:40:35 +00:00
|
|
|
void setCache(QString);
|
|
|
|
void cacheClear(void);
|
2007-12-15 13:13:57 +00:00
|
|
|
void configTts(void);
|
2007-12-14 19:26:54 +00:00
|
|
|
void configEnc(void);
|
2007-12-15 13:13:57 +00:00
|
|
|
void updateTtsState(int);
|
2007-12-14 19:26:54 +00:00
|
|
|
void updateEncState(int);
|
2007-07-25 20:21:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|