mirror of
https://github.com/xdsopl/qsstv.git
synced 2025-12-06 03:42:00 +01:00
imported all content from archive: http://users.telenet.be/on4qz/qsstv/downloads/qsstv_9.2.6.tar.gz
34 lines
440 B
C++
34 lines
440 B
C++
#ifndef CONFIGDIALOG_H
|
|
#define CONFIGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class configDialog;
|
|
}
|
|
|
|
class configDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit configDialog(QWidget *parent = 0);
|
|
~configDialog();
|
|
void readSettings();
|
|
void writeSettings();
|
|
int exec();
|
|
bool soundNeedsRestart;
|
|
bool guiNeedsRestart;
|
|
|
|
|
|
signals:
|
|
void bgColorChanged();
|
|
|
|
|
|
private:
|
|
Ui::configDialog *ui;
|
|
|
|
};
|
|
|
|
#endif // CONFIGDIALOG_H
|