remove ignored pt.2
This commit is contained in:
36
outputdialog.h
Normal file
36
outputdialog.h
Normal file
@@ -0,0 +1,36 @@
|
||||
#ifndef OUTPUTDIALOG_H
|
||||
#define OUTPUTDIALOG_H
|
||||
|
||||
#include "check/check.h"
|
||||
#include "output/output_options.h"
|
||||
#include <QComboBox>
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class OutputDialog;
|
||||
}
|
||||
|
||||
class OutputDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
OutputOptions options;
|
||||
Check ✓
|
||||
|
||||
public:
|
||||
explicit OutputDialog(QWidget *parent = nullptr, Check & = *(new Check()));
|
||||
~OutputDialog();
|
||||
|
||||
private slots:
|
||||
void on_buttonBox_accepted();
|
||||
|
||||
void on_chooseFileButton_clicked();
|
||||
|
||||
void on_printHeaderCheckBox_stateChanged(int arg1);
|
||||
|
||||
void on_printTotalCheckBox_stateChanged(int arg1);
|
||||
|
||||
private:
|
||||
Ui::OutputDialog *ui;
|
||||
};
|
||||
|
||||
#endif // OUTPUTDIALOG_H
|
||||
Reference in New Issue
Block a user