| 20 | Q_DECLARE_LOGGING_CATEGORY(App) |
| 21 | |
| 22 | CMainWindow::CMainWindow(QWidget *parent) : QMainWindow(parent), |
| 23 | ui(new Ui::MainWindow), |
| 24 | m_bStart(false) |
| 25 | { |
| 26 | ui->setupUi(this); |
| 27 | |
| 28 | RabbitCommon::CTools::AddStyleMenu(ui->menuView); |
| 29 | ui->menuService->addMenu(RabbitCommon::CTools::GetLogMenu(ui->menuView)); |
| 30 | |
| 31 | Clean(); |
| 32 | InitTab(); |
| 33 | } |
| 34 | |
| 35 | CMainWindow::~CMainWindow() |
| 36 | { |