2007-07-25 20:21:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Riebeling
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-07-25 20:21:06 +00:00
|
|
|
*
|
|
|
|
* 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"
|
2013-01-27 11:01:56 +00:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QUrl>
|
2007-07-25 20:21:06 +00:00
|
|
|
|
|
|
|
class Config : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-11-19 19:36:57 +00:00
|
|
|
Config(QWidget *parent = nullptr,int index=0);
|
2009-08-08 12:12:49 +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();
|
2009-08-08 12:12:49 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
Ui::ConfigForm ui;
|
2009-08-08 12:12:49 +00:00
|
|
|
|
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;
|
2011-07-15 19:14:26 +00:00
|
|
|
QString mountpoint;
|
2007-10-07 18:02:54 +00:00
|
|
|
void updateCacheInfo(QString);
|
2011-10-02 14:30:05 +00:00
|
|
|
void changeEvent(QEvent *event);
|
2013-04-06 19:15:05 +00:00
|
|
|
void selectDevice(QString device, QString mountpoint);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-07-25 20:21:06 +00:00
|
|
|
private slots:
|
2013-03-19 21:01:36 +00:00
|
|
|
void showProxyPassword(bool show);
|
2007-07-25 20:21:06 +00:00
|
|
|
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);
|
2011-07-15 19:14:26 +00:00
|
|
|
void refreshMountpoint(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);
|
2011-07-15 19:14:26 +00:00
|
|
|
void updateMountpoint(QString);
|
|
|
|
void updateMountpoint(int);
|
2007-08-27 17:40:35 +00:00
|
|
|
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);
|
2008-05-10 15:23:15 +00:00
|
|
|
void updateEncState();
|
2009-06-26 21:52:08 +00:00
|
|
|
void testTts();
|
2010-02-04 21:10:20 +00:00
|
|
|
void showDisabled(bool);
|
2007-07-25 20:21:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|