42 lines
		
	
	
		
			712 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			712 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);
 | 
						|
 | 
						|
    void on_chooseImageButton_clicked();
 | 
						|
 | 
						|
    void on_preferencesButton_clicked();
 | 
						|
 | 
						|
private:
 | 
						|
    Ui::MainWindow *ui;
 | 
						|
};
 | 
						|
#endif // MAINWINDOW_H
 |