* \if ENGLISH * @brief Constructor, initializes the main window and Ribbon interface * @param parent Parent window pointer * \endif * * \if CHINESE * @brief 构造函数,初始化主窗口和Ribbon界面 * @param parent 父窗口指针 * \endif */
| 105 | * \endif |
| 106 | */ |
| 107 | MainWindow::MainWindow(QWidget* parent) : SARibbonMainWindow(parent), ui(new Ui::MainWindow) |
| 108 | { |
| 109 | ui->setupUi(this); |
| 110 | initUI(); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * \if ENGLISH |