mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-03 00:38:58 +00:00
29 lines
540 B
C++
29 lines
540 B
C++
// Copyright 2019 threeSD Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QDialog>
|
|
#include "core/importer.h"
|
|
|
|
namespace Ui {
|
|
class MainDialog;
|
|
}
|
|
|
|
class MainDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainDialog(QWidget* parent = nullptr);
|
|
~MainDialog() override;
|
|
|
|
private:
|
|
void LoadPresetConfig();
|
|
void LaunchImportDialog();
|
|
|
|
std::vector<Core::Config> preset_config_list;
|
|
std::unique_ptr<Ui::MainDialog> ui;
|
|
};
|