(Qt desktop) Add some missing menu entries

This commit is contained in:
twinaphex 2019-05-06 00:11:57 +02:00
parent 705851b147
commit 4ac4b779a9
5 changed files with 14 additions and 0 deletions

View File

@ -41,6 +41,9 @@ QWidget *InputPage::widget()
layout->add(MENU_ENUM_LABEL_INPUT_MAX_USERS); layout->add(MENU_ENUM_LABEL_INPUT_MAX_USERS);
layout->add(MENU_ENUM_LABEL_INPUT_UNIFIED_MENU_CONTROLS); layout->add(MENU_ENUM_LABEL_INPUT_UNIFIED_MENU_CONTROLS);
layout->add(MENU_ENUM_LABEL_QUIT_PRESS_TWICE);
layout->add(MENU_ENUM_LABEL_VIBRATE_ON_KEYPRESS);
layout->add(MENU_ENUM_LABEL_ENABLE_DEVICE_VIBRATION);
layout->add(MENU_ENUM_LABEL_INPUT_POLL_TYPE_BEHAVIOR); layout->add(MENU_ENUM_LABEL_INPUT_POLL_TYPE_BEHAVIOR);
layout->add(MENU_ENUM_LABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO); layout->add(MENU_ENUM_LABEL_INPUT_MENU_ENUM_TOGGLE_GAMEPAD_COMBO);
layout->add(MENU_ENUM_LABEL_MENU_INPUT_SWAP_OK_CANCEL); layout->add(MENU_ENUM_LABEL_MENU_INPUT_SWAP_OK_CANCEL);

View File

@ -33,6 +33,7 @@ QWidget *NotificationsPage::widget()
notificationsGroup->add(MENU_ENUM_LABEL_FPS_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_FPS_SHOW);
notificationsGroup->add(MENU_ENUM_LABEL_FRAMECOUNT_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_FRAMECOUNT_SHOW);
notificationsGroup->add(MENU_ENUM_LABEL_MEMORY_SHOW); notificationsGroup->add(MENU_ENUM_LABEL_MEMORY_SHOW);
notificationsGroup->add(MENU_ENUM_LABEL_STATISTICS_SHOW);
notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_PATH); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_PATH);
notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_SIZE); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_FONT_SIZE);
notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_MESSAGE_POS_X); notificationsGroup->add(MENU_ENUM_LABEL_VIDEO_MESSAGE_POS_X);

View File

@ -33,7 +33,11 @@ QWidget *PlaylistsPage::widget()
layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_RENAME); layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_RENAME);
layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_REMOVE); layout->add(MENU_ENUM_LABEL_PLAYLIST_ENTRY_REMOVE);
layout->add(MENU_ENUM_LABEL_PLAYLIST_SORT_ALPHABETICAL);
layout->add(MENU_ENUM_LABEL_PLAYLIST_USE_OLD_FORMAT); layout->add(MENU_ENUM_LABEL_PLAYLIST_USE_OLD_FORMAT);
layout->add(MENU_ENUM_LABEL_PLAYLIST_SHOW_SUBLABELS);
layout->add(MENU_ENUM_LABEL_PLAYLIST_FUZZY_ARCHIVE_MATCH);
layout->add(MENU_ENUM_LABEL_SCAN_WITHOUT_CORE_MATCH);
widget->setLayout(layout); widget->setLayout(layout);

View File

@ -31,6 +31,7 @@ QWidget *SavingPage::widget()
SettingsGroup *saveRamGroup = new SettingsGroup("SaveRAM"); SettingsGroup *saveRamGroup = new SettingsGroup("SaveRAM");
SettingsGroup *systemFilesDirGroup = new SettingsGroup("System Files"); SettingsGroup *systemFilesDirGroup = new SettingsGroup("System Files");
SettingsGroup *screenshotsDirGroup = new SettingsGroup("Screenshots"); SettingsGroup *screenshotsDirGroup = new SettingsGroup("Screenshots");
SettingsGroup *runtimeLogGroup = new SettingsGroup("Runtime Log");
savesGroup->add(MENU_ENUM_LABEL_SORT_SAVEFILES_ENABLE); savesGroup->add(MENU_ENUM_LABEL_SORT_SAVEFILES_ENABLE);
savesGroup->add(MENU_ENUM_LABEL_SAVEFILES_IN_CONTENT_DIR_ENABLE); savesGroup->add(MENU_ENUM_LABEL_SAVEFILES_IN_CONTENT_DIR_ENABLE);
@ -51,11 +52,15 @@ QWidget *SavingPage::widget()
screenshotsDirGroup->add(MENU_ENUM_LABEL_SCREENSHOTS_IN_CONTENT_DIR_ENABLE); screenshotsDirGroup->add(MENU_ENUM_LABEL_SCREENSHOTS_IN_CONTENT_DIR_ENABLE);
runtimeLogGroup->add(MENU_ENUM_LABEL_CONTENT_RUNTIME_LOG);
runtimeLogGroup->add(MENU_ENUM_LABEL_CONTENT_RUNTIME_LOG_AGGREGATE);
layout->addRow(savesGroup); layout->addRow(savesGroup);
layout->addRow(savestatesGroup); layout->addRow(savestatesGroup);
layout->addRow(saveRamGroup); layout->addRow(saveRamGroup);
layout->addRow(systemFilesDirGroup); layout->addRow(systemFilesDirGroup);
layout->addRow(screenshotsDirGroup); layout->addRow(screenshotsDirGroup);
layout->addRow(runtimeLogGroup);
widget->setLayout(layout); widget->setLayout(layout);

View File

@ -43,6 +43,7 @@ QWidget *UserInterfacePage::widget()
rarch_setting_t *kioskMode = menu_setting_find_enum(MENU_ENUM_LABEL_MENU_ENABLE_KIOSK_MODE); rarch_setting_t *kioskMode = menu_setting_find_enum(MENU_ENUM_LABEL_MENU_ENABLE_KIOSK_MODE);
menuGroup->add(MENU_ENUM_LABEL_SHOW_ADVANCED_SETTINGS); menuGroup->add(MENU_ENUM_LABEL_SHOW_ADVANCED_SETTINGS);
menuGroup->add(MENU_ENUM_LABEL_MENU_WIDGETS_ENABLE);
/* only on XMB and Ozone*/ /* only on XMB and Ozone*/
if (kioskMode) if (kioskMode)