| | |
| | | #define CLIENTMAINWINDOW_H |
| | | |
| | | #include <QMainWindow> |
| | | #include "auditproject.h" |
| | | #include "auditworkload.h" |
| | | #include "problemmoney.h" |
| | | #include "problemcount.h" |
| | | #include "problemrectification.h" |
| | | #include "problemnotmoney.h" |
| | | #include "punish.h" |
| | | #include "caseclue.h" |
| | | |
| | | namespace Ui { |
| | | class ClientMainWindow; |
| | |
| | | explicit ClientMainWindow(QWidget *parent = 0); |
| | | ~ClientMainWindow(); |
| | | |
| | | void initUi(); |
| | | private slots: |
| | | void on_pushButton_auditPro_clicked(); |
| | | |
| | | void on_pushButton_auditWorkload_clicked(); |
| | | |
| | | void on_pushButton_problemMoney_clicked(); |
| | | |
| | | void on_pushButton_problemCount_clicked(); |
| | | |
| | | void on_pushButton_problemRectification_clicked(); |
| | | |
| | | void on_pushButton_problemNotMoney_clicked(); |
| | | |
| | | void on_pushButton_punish_clicked(); |
| | | |
| | | void on_pushButton_caseClue_clicked(); |
| | | |
| | | private: |
| | | Ui::ClientMainWindow *ui; |
| | | AuditProject *m_auditPro; |
| | | AuditWorkload *m_auditworkload; |
| | | ProblemMoney *m_problemMon; |
| | | ProblemCount *m_problemCnt; |
| | | ProblemRectification *m_probleRect; |
| | | ProblemNotMoney *m_problemNotMon; |
| | | Punish *m_punish; |
| | | CaseClue *m_caseClue; |
| | | }; |
| | | |
| | | #endif // CLIENTMAINWINDOW_H |