checks-parser/mainwindow.h

38 lines
625 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "check/check.h"
#include "parser/parser.h"
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
class MainWindow : public QMainWindow {
Q_OBJECT
Check check;
Parser parser;
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
void setupStoresList();
Check get_check();
private slots:
void on_checkType_currentIndexChanged(int index);
void on_parseButton_clicked();
void on_storeType_currentIndexChanged(int index);
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H