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
| #ifndef COVERINFO_H
| #define COVERINFO_H
|
| #include <QMainWindow>
| #include "xlsxdocument.h"
| #include <QAxObject>
|
| namespace Ui {
| class CoverInfo;
| }
|
| class CoverInfo : public QMainWindow
| {
| Q_OBJECT
|
| public:
| explicit CoverInfo(QWidget *parent = 0);
| ~CoverInfo();
| void readInfo();
| void readDataFromSQL();
| private slots:
| void on_comboBox_currentIndexChanged(const QString &arg1);
|
| private:
| Ui::CoverInfo *ui;
| QMap<QString,int> m_com;
| };
|
| #endif // COVERINFO_H
|
|