-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnadoinit.h
executable file
·31 lines (26 loc) · 1.2 KB
/
nadoinit.h
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
/*-----------------------------------------------------------------------------
| This file is part of Notatio Antiqua (c) 2009-2012 David Gippner |
-------------------------------------------------------------------------------
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; version 3 of the License.
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.
-----------------------------------------------------------------------------*/
#ifndef NADOINIT_H
#define NADOINIT_H
#include <QThread>
#include <QDirIterator>
#include <QSettings>
#include <QMessageBox>
class nadoinit : public QThread
{
Q_OBJECT
private:
void run();
public:
QStringList LaTeX_Path, Lilypond_Path, Gregorio_Path, templateFolder, dictFolder, helpFolder;
QString basePath, currentPath, endText;
bool isinit;
void setValues(QString path);
signals:
QString pathHasChanged(QString path);
};
#endif // NADOINIT_H