-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.h
More file actions
executable file
·41 lines (34 loc) · 872 Bytes
/
Copy pathmainwindow.h
File metadata and controls
executable file
·41 lines (34 loc) · 872 Bytes
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
#ifndef MAINWINDOW_H_BDIME
#define MAINWINDOW_H_BDIME
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QFileDialog>
#include <QClipboard>
#include <QDebug>
#include "temptablemodel.h"
#include "vendordelegate.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
tempTableModel *model;
private:
Ui::MainWindow *ui;
signals:
void SIGNALaddPrice(const QString &path);
public slots:
void SLOTaddPrice();
void SLOTgetArts();
void SLOTrepaint();
void SLOTerrorMsg(const QString &);
void SLOTmsg(const QString &);
void SLOTuodateLabelCount(int n, int N);
void SLOTupDateProgressBar();
void SLOTstartParsing(int);
void SLOTfinalParsing();
};
#endif // MAINWINDOW_H