-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.h
68 lines (55 loc) · 1.47 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTimer>
#include <QListWidgetItem>
#include "KCPresta.h"
#include "Logger.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void logError(const Exception& err);
void logDebug(const QString& msg);
void logWarning(const QString& msg);
void logNotice(const QString& msg);
private slots:
void start();
void stop();
void timeout();
void wyslijTowary();
void pobierzZamowienia();
void koniec();
void showLog(QListWidgetItem* item);
void on_buttonDoRealizacji_clicked();
void on_buttonDoOdbioru_clicked();
void on_buttonRezygnacja_clicked();
void on_buttonZrealizowane_clicked();
private:
void updateTimer();
void updateGUI();
void clearLog();
void updateZamowienia(KCPresta::ZamowienieStatus status);
Ui::MainWindow *ui;
bool mStart;
uint mInterwalSekundy;
uint mSekundy;
uint mMaxLogMsgs;
QTimer mTimer;
QMap<QListWidgetItem*, QString> mConsoleLog;
QMap<uint, QListWidgetItem*> mZamowieniaWidgetItem;
QMap<uint, Presta::OrderHeader> mZamowieniaHeaders;
PSWebService* mWebService;
Presta::Prestashop *mPresta;
KCFirma *mKCFirma;
KCPresta *mKCPresta;
Logger *mLogger;
QMap<KCPresta::ZamowienieStatus, QIcon> mZamowieniaIkony;
};
#endif // MAINWINDOW_H