wumu
2024-05-07 5e74d49c960965e3134cda27f603024483a4a1d7
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 PROBLEMLIST_H
#define PROBLEMLIST_H
 
#include <QMainWindow>
#include "tableitemdelegate.h"
#include <QMenu>
#include <QAction>
 
namespace Ui {
class ProblemList;
}
 
class ProblemList : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit ProblemList(QWidget *parent = 0);
    ~ProblemList();
    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::ProblemList *ui;
    QMenu *m_menu;
};
 
#endif // PROBLEMLIST_H