mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
26 lines
340 B
C++
26 lines
340 B
C++
#ifndef MAINDIALOG_H
|
|
#define MAINDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QProcess>
|
|
|
|
class MainDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainDialog();
|
|
|
|
QProcess *openmw;
|
|
|
|
public slots:
|
|
|
|
void start();
|
|
void showDataFiles();
|
|
void showSettings();
|
|
void finished(int, QProcess::ExitStatus exitStatus);
|
|
|
|
};
|
|
|
|
#endif
|