mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
rbutilqt: made the sapi TTS more configurable, you can now select a specific voice in the config dialog. Also reworked some setSetting functions, to remove depencies.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16111 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2cffb1bf3d
commit
6b5780dae3
16 changed files with 269 additions and 97 deletions
|
|
@ -29,9 +29,8 @@ class Config : public QDialog
|
|||
Q_OBJECT
|
||||
public:
|
||||
Config(QWidget *parent = 0,int index=0);
|
||||
void setUserSettings(QSettings*);
|
||||
void setDevices(QSettings*);
|
||||
|
||||
void setSettings(QSettings* user,QSettings* device);
|
||||
|
||||
signals:
|
||||
void settingsUpdated(void);
|
||||
|
||||
|
|
@ -40,6 +39,9 @@ class Config : public QDialog
|
|||
void abort(void);
|
||||
|
||||
private:
|
||||
void setUserSettings();
|
||||
void setDevices();
|
||||
|
||||
Ui::ConfigForm ui;
|
||||
QSettings *userSettings;
|
||||
QSettings *devices;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue