33 lines
464 B
C++
33 lines
464 B
C++
#ifndef QFORMATSET_H
|
|
#define QFORMATSET_H
|
|
|
|
#include <QDialog>
|
|
#include <string>
|
|
|
|
namespace Ui {
|
|
class QFormatSet;
|
|
}
|
|
|
|
class QFormatSet : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QFormatSet(QWidget *parent = nullptr);
|
|
~QFormatSet();
|
|
|
|
private:
|
|
void handle();
|
|
void check_select();
|
|
|
|
private:
|
|
Ui::QFormatSet *ui;
|
|
|
|
public:
|
|
std::vector<std::string> values_{};
|
|
std::string xml_path_{};
|
|
bool isok_{false};
|
|
};
|
|
|
|
#endif // QFORMATSET_H
|