internal_system_v1/auditproject.cpp
New file @@ -0,0 +1,14 @@ #include "auditproject.h" #include "ui_auditproject.h" AuditProject::AuditProject(QWidget *parent) : QMainWindow(parent), ui(new Ui::AuditProject) { ui->setupUi(this); } AuditProject::~AuditProject() { delete ui; } internal_system_v1/auditproject.h
New file @@ -0,0 +1,22 @@ #ifndef AUDITPROJECT_H #define AUDITPROJECT_H #include <QMainWindow> namespace Ui { class AuditProject; } class AuditProject : public QMainWindow { Q_OBJECT public: explicit AuditProject(QWidget *parent = 0); ~AuditProject(); private: Ui::AuditProject *ui; }; #endif // AUDITPROJECT_H internal_system_v1/auditproject.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AuditProject</class> <widget class="QMainWindow" name="AuditProject"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>80</x> <y>40</y> <width>481</width> <height>71</height> </rect> </property> <property name="text"> <string>审计项目</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/auditworkload.cpp
New file @@ -0,0 +1,14 @@ #include "auditworkload.h" #include "ui_auditworkload.h" AuditWorkload::AuditWorkload(QWidget *parent) : QMainWindow(parent), ui(new Ui::AuditWorkload) { ui->setupUi(this); } AuditWorkload::~AuditWorkload() { delete ui; } internal_system_v1/auditworkload.h
New file @@ -0,0 +1,22 @@ #ifndef AUDITWORKLOAD_H #define AUDITWORKLOAD_H #include <QMainWindow> namespace Ui { class AuditWorkload; } class AuditWorkload : public QMainWindow { Q_OBJECT public: explicit AuditWorkload(QWidget *parent = 0); ~AuditWorkload(); private: Ui::AuditWorkload *ui; }; #endif // AUDITWORKLOAD_H internal_system_v1/auditworkload.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AuditWorkload</class> <widget class="QMainWindow" name="AuditWorkload"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>110</x> <y>70</y> <width>471</width> <height>111</height> </rect> </property> <property name="text"> <string>内审工作量</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/caseclue.cpp
New file @@ -0,0 +1,14 @@ #include "caseclue.h" #include "ui_caseclue.h" CaseClue::CaseClue(QWidget *parent) : QMainWindow(parent), ui(new Ui::CaseClue) { ui->setupUi(this); } CaseClue::~CaseClue() { delete ui; } internal_system_v1/caseclue.h
New file @@ -0,0 +1,22 @@ #ifndef CASECLUE_H #define CASECLUE_H #include <QMainWindow> namespace Ui { class CaseClue; } class CaseClue : public QMainWindow { Q_OBJECT public: explicit CaseClue(QWidget *parent = 0); ~CaseClue(); private: Ui::CaseClue *ui; }; #endif // CASECLUE_H internal_system_v1/caseclue.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>CaseClue</class> <widget class="QMainWindow" name="CaseClue"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>160</x> <y>120</y> <width>301</width> <height>101</height> </rect> </property> <property name="text"> <string>案件线索</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/clientmainwindow.cpp
@@ -6,9 +6,74 @@ ui(new Ui::ClientMainWindow) { ui->setupUi(this); initUi(); } ClientMainWindow::~ClientMainWindow() { delete ui; } void ClientMainWindow::initUi() { m_auditPro = new AuditProject(this); m_auditworkload = new AuditWorkload(this); m_problemMon = new ProblemMoney(this); m_problemCnt = new ProblemCount(this); m_probleRect = new ProblemRectification(this); m_problemNotMon = new ProblemNotMoney(this); m_punish = new Punish(this); m_caseClue = new CaseClue(this); ui->stackedWidget->addWidget(m_auditPro); ui->stackedWidget->addWidget(m_auditworkload); ui->stackedWidget->addWidget(m_problemMon); ui->stackedWidget->addWidget(m_problemCnt); ui->stackedWidget->addWidget(m_probleRect); ui->stackedWidget->addWidget(m_problemNotMon); ui->stackedWidget->addWidget(m_punish); ui->stackedWidget->addWidget(m_caseClue); ui->stackedWidget->setCurrentIndex(0); } void ClientMainWindow::on_pushButton_auditPro_clicked() { ui->stackedWidget->setCurrentIndex(0); } void ClientMainWindow::on_pushButton_auditWorkload_clicked() { ui->stackedWidget->setCurrentIndex(1); } void ClientMainWindow::on_pushButton_problemMoney_clicked() { ui->stackedWidget->setCurrentIndex(2); } void ClientMainWindow::on_pushButton_problemCount_clicked() { ui->stackedWidget->setCurrentIndex(3); } void ClientMainWindow::on_pushButton_problemRectification_clicked() { ui->stackedWidget->setCurrentIndex(4); } void ClientMainWindow::on_pushButton_problemNotMoney_clicked() { ui->stackedWidget->setCurrentIndex(5); } void ClientMainWindow::on_pushButton_punish_clicked() { ui->stackedWidget->setCurrentIndex(6); } void ClientMainWindow::on_pushButton_caseClue_clicked() { ui->stackedWidget->setCurrentIndex(7); } internal_system_v1/clientmainwindow.h
@@ -2,6 +2,14 @@ #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; @@ -15,8 +23,34 @@ 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 internal_system_v1/clientmainwindow.ui
@@ -35,7 +35,7 @@ <item> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QPushButton" name="pushButton"> <widget class="QPushButton" name="pushButton_auditPro"> <property name="minimumSize"> <size> <width>0</width> @@ -48,7 +48,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_2"> <widget class="QPushButton" name="pushButton_auditWorkload"> <property name="minimumSize"> <size> <width>0</width> @@ -61,7 +61,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_3"> <widget class="QPushButton" name="pushButton_problemMoney"> <property name="minimumSize"> <size> <width>0</width> @@ -74,7 +74,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_4"> <widget class="QPushButton" name="pushButton_problemCount"> <property name="minimumSize"> <size> <width>0</width> @@ -87,7 +87,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_5"> <widget class="QPushButton" name="pushButton_problemRectification"> <property name="minimumSize"> <size> <width>0</width> @@ -100,7 +100,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_6"> <widget class="QPushButton" name="pushButton_problemNotMoney"> <property name="minimumSize"> <size> <width>0</width> @@ -113,7 +113,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_7"> <widget class="QPushButton" name="pushButton_punish"> <property name="minimumSize"> <size> <width>0</width> @@ -126,7 +126,7 @@ </widget> </item> <item> <widget class="QPushButton" name="pushButton_15"> <widget class="QPushButton" name="pushButton_caseClue"> <property name="minimumSize"> <size> <width>0</width> @@ -149,10 +149,8 @@ </size> </property> <property name="currentIndex"> <number>0</number> <number>-1</number> </property> <widget class="QWidget" name="page"/> <widget class="QWidget" name="page_2"/> </widget> </item> </layout> @@ -169,7 +167,7 @@ <x>0</x> <y>0</y> <width>1075</width> <height>26</height> <height>25</height> </rect> </property> </widget> internal_system_v1/internal_system_v1.pro
@@ -25,10 +25,34 @@ SOURCES += \ main.cpp \ clientmainwindow.cpp clientmainwindow.cpp \ auditproject.cpp \ auditworkload.cpp \ problemmoney.cpp \ problemcount.cpp \ problemrectification.cpp \ problemnotmoney.cpp \ punish.cpp \ caseclue.cpp HEADERS += \ clientmainwindow.h clientmainwindow.h \ auditproject.h \ auditworkload.h \ problemmoney.h \ problemcount.h \ problemrectification.h \ problemnotmoney.h \ punish.h \ caseclue.h FORMS += \ clientmainwindow.ui clientmainwindow.ui \ auditproject.ui \ auditworkload.ui \ problemmoney.ui \ problemcount.ui \ problemrectification.ui \ problemnotmoney.ui \ punish.ui \ caseclue.ui internal_system_v1/problemcount.cpp
New file @@ -0,0 +1,14 @@ #include "problemcount.h" #include "ui_problemcount.h" ProblemCount::ProblemCount(QWidget *parent) : QMainWindow(parent), ui(new Ui::ProblemCount) { ui->setupUi(this); } ProblemCount::~ProblemCount() { delete ui; } internal_system_v1/problemcount.h
New file @@ -0,0 +1,22 @@ #ifndef PROBLEMCOUNT_H #define PROBLEMCOUNT_H #include <QMainWindow> namespace Ui { class ProblemCount; } class ProblemCount : public QMainWindow { Q_OBJECT public: explicit ProblemCount(QWidget *parent = 0); ~ProblemCount(); private: Ui::ProblemCount *ui; }; #endif // PROBLEMCOUNT_H internal_system_v1/problemcount.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ProblemCount</class> <widget class="QMainWindow" name="ProblemCount"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>190</x> <y>120</y> <width>421</width> <height>91</height> </rect> </property> <property name="text"> <string>问题个数</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/problemmoney.cpp
New file @@ -0,0 +1,14 @@ #include "problemmoney.h" #include "ui_problemmoney.h" ProblemMoney::ProblemMoney(QWidget *parent) : QMainWindow(parent), ui(new Ui::ProblemMoney) { ui->setupUi(this); } ProblemMoney::~ProblemMoney() { delete ui; } internal_system_v1/problemmoney.h
New file @@ -0,0 +1,22 @@ #ifndef PROBLEMMONEY_H #define PROBLEMMONEY_H #include <QMainWindow> namespace Ui { class ProblemMoney; } class ProblemMoney : public QMainWindow { Q_OBJECT public: explicit ProblemMoney(QWidget *parent = 0); ~ProblemMoney(); private: Ui::ProblemMoney *ui; }; #endif // PROBLEMMONEY_H internal_system_v1/problemmoney.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ProblemMoney</class> <widget class="QMainWindow" name="ProblemMoney"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>170</x> <y>130</y> <width>371</width> <height>51</height> </rect> </property> <property name="text"> <string>问题金额</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/problemnotmoney.cpp
New file @@ -0,0 +1,14 @@ #include "problemnotmoney.h" #include "ui_problemnotmoney.h" ProblemNotMoney::ProblemNotMoney(QWidget *parent) : QMainWindow(parent), ui(new Ui::ProblemNotMoney) { ui->setupUi(this); } ProblemNotMoney::~ProblemNotMoney() { delete ui; } internal_system_v1/problemnotmoney.h
New file @@ -0,0 +1,22 @@ #ifndef PROBLEMNOTMONEY_H #define PROBLEMNOTMONEY_H #include <QMainWindow> namespace Ui { class ProblemNotMoney; } class ProblemNotMoney : public QMainWindow { Q_OBJECT public: explicit ProblemNotMoney(QWidget *parent = 0); ~ProblemNotMoney(); private: Ui::ProblemNotMoney *ui; }; #endif // PROBLEMNOTMONEY_H internal_system_v1/problemnotmoney.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ProblemNotMoney</class> <widget class="QMainWindow" name="ProblemNotMoney"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>120</x> <y>80</y> <width>481</width> <height>111</height> </rect> </property> <property name="text"> <string>问题整改非金额</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/problemrectification.cpp
New file @@ -0,0 +1,14 @@ #include "problemrectification.h" #include "ui_problemrectification.h" ProblemRectification::ProblemRectification(QWidget *parent) : QMainWindow(parent), ui(new Ui::ProblemRectification) { ui->setupUi(this); } ProblemRectification::~ProblemRectification() { delete ui; } internal_system_v1/problemrectification.h
New file @@ -0,0 +1,22 @@ #ifndef PROBLEMRECTIFICATION_H #define PROBLEMRECTIFICATION_H #include <QMainWindow> namespace Ui { class ProblemRectification; } class ProblemRectification : public QMainWindow { Q_OBJECT public: explicit ProblemRectification(QWidget *parent = 0); ~ProblemRectification(); private: Ui::ProblemRectification *ui; }; #endif // PROBLEMRECTIFICATION_H internal_system_v1/problemrectification.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ProblemRectification</class> <widget class="QMainWindow" name="ProblemRectification"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>130</x> <y>120</y> <width>521</width> <height>111</height> </rect> </property> <property name="text"> <string>问题整改</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui> internal_system_v1/punish.cpp
New file @@ -0,0 +1,14 @@ #include "punish.h" #include "ui_punish.h" Punish::Punish(QWidget *parent) : QMainWindow(parent), ui(new Ui::Punish) { ui->setupUi(this); } Punish::~Punish() { delete ui; } internal_system_v1/punish.h
New file @@ -0,0 +1,22 @@ #ifndef PUNISH_H #define PUNISH_H #include <QMainWindow> namespace Ui { class Punish; } class Punish : public QMainWindow { Q_OBJECT public: explicit Punish(QWidget *parent = 0); ~Punish(); private: Ui::Punish *ui; }; #endif // PUNISH_H internal_system_v1/punish.ui
New file @@ -0,0 +1,45 @@ <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>Punish</class> <widget class="QMainWindow" name="Punish"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>MainWindow</string> </property> <widget class="QWidget" name="centralwidget"> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>130</x> <y>80</y> <width>511</width> <height>151</height> </rect> </property> <property name="text"> <string>处分</string> </property> </widget> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>25</height> </rect> </property> </widget> <widget class="QStatusBar" name="statusbar"/> </widget> <resources/> <connections/> </ui>