mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
17 lines
409 B
C++
17 lines
409 B
C++
|
#include <qdialog.h>
|
||
|
#include <components/files/configurationmanager.hpp>
|
||
|
|
||
|
class DataFilesList;
|
||
|
class QDialogButtonBox;
|
||
|
|
||
|
class OpenDialog : public QDialog {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
OpenDialog(QWidget * parent = 0);
|
||
|
|
||
|
void getFileList(std::vector<boost::filesystem::path>& paths);
|
||
|
private:
|
||
|
DataFilesList * mFileSelector;
|
||
|
QDialogButtonBox * buttonBox;
|
||
|
Files::ConfigurationManager mCfgMgr;
|
||
|
};
|