2019-09-29 12:43:40 +00:00
|
|
|
|
#ifndef FRMMAIN_H
|
|
|
|
|
#define FRMMAIN_H
|
|
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
2021-09-19 03:44:22 +00:00
|
|
|
|
namespace Ui {
|
2019-09-29 12:43:40 +00:00
|
|
|
|
class frmMain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class frmMain : public QMainWindow
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit frmMain(QWidget *parent = 0);
|
|
|
|
|
~frmMain();
|
|
|
|
|
|
2020-03-16 08:40:48 +00:00
|
|
|
|
protected:
|
|
|
|
|
void showEvent(QShowEvent *);
|
|
|
|
|
|
2019-09-29 12:43:40 +00:00
|
|
|
|
private:
|
|
|
|
|
Ui::frmMain *ui;
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void initForm();
|
|
|
|
|
void initTableWidget();
|
|
|
|
|
void initTreeWidget();
|
|
|
|
|
void initListWidget();
|
|
|
|
|
void initOther();
|
|
|
|
|
void initStyle();
|
|
|
|
|
void initTranslator();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FRMMAIN_H
|