-
Notifications
You must be signed in to change notification settings - Fork 0
/
pathswidget.cpp
65 lines (58 loc) · 2.84 KB
/
pathswidget.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***************************************************************************
* Copyright (C) 2011-2012 by Marcin Nawrocki <[email protected]> *
* *
* 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 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "pathswidget.h"
#include <QFileDialog>
PathsWidget::PathsWidget(QWidget *parent_) :
QWidget(parent_)
{
_pathsForm.setupUi(this);
}
void PathsWidget::on_dictionaryComboBox_currentIndexChanged(int index)
{
int version = _pathsForm.dictionaryComboBox->itemData(index).toInt();
_pathsForm.dictDirLineEdit->setText(_dataFilesPath[version]);
_pathsForm.dictDirLineEdit->home(false);
_pathsForm.sampleDirLineEdit->setText(_voiceSamplesPath[version]);
_pathsForm.sampleDirLineEdit->home(false);
}
void PathsWidget::addDictionary(QString iconName, QString description, int version)
{
_pathsForm.dictionaryComboBox->addItem(QIcon(iconName), description, QVariant(version));
}
void PathsWidget::setUserSelectedPath(VersionToStringMap& stringMap, QLineEdit* lineEdit)
{
QFileDialog fileDialog(0, "", QDir::currentPath());
fileDialog.setFileMode(QFileDialog::Directory);
if (fileDialog.exec() == QDialog::Accepted)
{
QString path = QDir::toNativeSeparators(fileDialog.directory().path());
int index = _pathsForm.dictionaryComboBox->currentIndex();
lineEdit->setText(path);
int version = _pathsForm.dictionaryComboBox->itemData(index).toInt();
stringMap[version] = path;
}
}
void PathsWidget::on_dictDirToolButton_clicked()
{
setUserSelectedPath(_dataFilesPath, _pathsForm.dictDirLineEdit);
}
void PathsWidget::on_sampleDirToolButton_clicked()
{
setUserSelectedPath(_voiceSamplesPath, _pathsForm.sampleDirLineEdit);
}