mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 07:20:34 +00:00
28 lines
502 B
C++
28 lines
502 B
C++
#include "options.h"
|
|
|
|
LoggingCategory::LoggingCategory(QWidget *parent) :
|
|
OptionsCategory(parent)
|
|
{
|
|
setDisplayName(MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS);
|
|
setCategoryIcon("menu_log");
|
|
}
|
|
|
|
QVector<OptionsPage*> LoggingCategory::pages()
|
|
{
|
|
QVector<OptionsPage*> pages;
|
|
|
|
pages << new LoggingPage(this);
|
|
|
|
return pages;
|
|
}
|
|
|
|
LoggingPage::LoggingPage(QObject *parent) :
|
|
OptionsPage(parent)
|
|
{
|
|
}
|
|
|
|
QWidget *LoggingPage::widget()
|
|
{
|
|
return create_widget(DISPLAYLIST_LOGGING_SETTINGS_LIST);
|
|
}
|