| 303 | |
| 304 | namespace cmd { |
| 305 | void init_app() { |
| 306 | reg(std::make_unique<app_about>()); |
| 307 | reg(std::make_unique<app_display_audio_subs>()); |
| 308 | reg(std::make_unique<app_display_full>()); |
| 309 | reg(std::make_unique<app_display_subs>()); |
| 310 | reg(std::make_unique<app_display_video_subs>()); |
| 311 | reg(std::make_unique<app_exit>()); |
| 312 | reg(std::make_unique<app_language>()); |
| 313 | reg(std::make_unique<app_log>()); |
| 314 | reg(std::make_unique<app_new_window>()); |
| 315 | reg(std::make_unique<app_options>()); |
| 316 | reg(std::make_unique<app_toggle_global_hotkeys>()); |
| 317 | reg(std::make_unique<app_toggle_toolbar>()); |
| 318 | #ifdef __WXMAC__ |
| 319 | reg(std::make_unique<app_minimize>()); |
| 320 | reg(std::make_unique<app_maximize>()); |
| 321 | reg(std::make_unique<app_bring_to_front>()); |
| 322 | #endif |
| 323 | #ifdef WITH_UPDATE_CHECKER |
| 324 | reg(std::make_unique<app_updates>()); |
| 325 | #endif |
| 326 | } |
| 327 | } |
no test coverage detected