-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwindow.h
44 lines (36 loc) · 936 Bytes
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void buildTable();
Ui::MainWindow *ui;
void certainMDNF();
void findMDNF(int, QStringList, int, int);
bool checkDuplicates(QStringList);
bool isBanned(int, QString);
bool isOverlapped(int, QString);
QString reverse(QString);
QString getTerm(QString, QString);
void updateVarCount(int);
QStringList getSimpleColumn(QString);
QStringList getColumn(QString);
QString get2from10(QString);
QString get10from2(QString);
void setOriginalState();
void MDNF();
signals:
void mySignal();
private slots:
void on_btnApply_clicked();
void on_btnApply2_clicked();
void changeCellValue(int row, int col);
};
#endif // MAINWINDOW_H