36 lines
572 B
C++
36 lines
572 B
C++
#ifndef SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QVBoxLayout>
|
|
#include <QFileDialog>
|
|
|
|
#include "settings.h"
|
|
|
|
namespace Ui {
|
|
class SettingsDialog;
|
|
}
|
|
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsDialog(QWidget *parent = 0);
|
|
~SettingsDialog();
|
|
|
|
private slots:
|
|
void changeMediaPath();
|
|
void changeAudioDevice();
|
|
void closeAudioDeviceDialog();
|
|
|
|
private:
|
|
Ui::SettingsDialog *ui;
|
|
QDialog *m_deviceDialog;
|
|
|
|
private slots:
|
|
void layersChanged(int val);
|
|
|
|
};
|
|
|
|
#endif // SETTINGSDIALOG_H
|