mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
28 lines
555 B
C++
28 lines
555 B
C++
#include "options.h"
|
|
|
|
ConfigurationCategory::ConfigurationCategory(QWidget *parent) :
|
|
OptionsCategory(parent)
|
|
{
|
|
setDisplayName(MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS);
|
|
setCategoryIcon("setting");
|
|
}
|
|
|
|
QVector<OptionsPage*> ConfigurationCategory::pages()
|
|
{
|
|
QVector<OptionsPage*> pages;
|
|
|
|
pages << new ConfigurationPage(this);
|
|
|
|
return pages;
|
|
}
|
|
|
|
ConfigurationPage::ConfigurationPage(QObject *parent) :
|
|
OptionsPage(parent)
|
|
{
|
|
}
|
|
|
|
QWidget *ConfigurationPage::widget()
|
|
{
|
|
return create_widget(DISPLAYLIST_CONFIGURATION_SETTINGS_LIST);
|
|
}
|