wumu
2024-12-02 bbacbbede6a3c7265f165642ab19afb61bbcac8d
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
#ifndef PROBLEMRECTIFICATIONRESULT_H
#define PROBLEMRECTIFICATIONRESULT_H
 
#include <QMainWindow>
#include "tableitemdelegate.h"
#include <QMenu>
#include <QAction>
 
namespace Ui {
class ProblemRectificationResult;
}
 
class ProblemRectificationResult : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit ProblemRectificationResult(QWidget *parent = 0);
    ~ProblemRectificationResult();
 
    void initUi();
    void readCompanyFromSQL();
 
private slots:
    void on_pushButton_addRow_clicked();
 
    void on_pushButton_save_clicked();
 
    void showMenuSlot(QPoint);
    void deleteAction();
    void on_comboBox_company_currentIndexChanged(const QString &arg1);
 
private:
    Ui::ProblemRectificationResult *ui;
    QMenu *m_menu;
};
 
#endif // PROBLEMRECTIFICATIONRESULT_H