mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
35 lines
No EOL
835 B
C++
35 lines
No EOL
835 B
C++
#include "about_tab.hpp"
|
|
|
|
|
|
namespace i18n = brls::i18n;
|
|
using namespace i18n::literals;
|
|
|
|
AboutTab::AboutTab()
|
|
{
|
|
// Subtitle
|
|
brls::Label *subTitle = new brls::Label(
|
|
brls::LabelStyle::REGULAR,
|
|
"menus/About_Title"_i18n ,
|
|
true
|
|
);
|
|
subTitle->setHorizontalAlign(NVG_ALIGN_CENTER);
|
|
this->addView(subTitle);
|
|
|
|
// Copyright
|
|
brls::Label *copyright = new brls::Label(
|
|
brls::LabelStyle::DESCRIPTION,
|
|
"menus/copyright"_i18n,
|
|
true
|
|
);
|
|
copyright->setHorizontalAlign(NVG_ALIGN_CENTER);
|
|
this->addView(copyright);
|
|
|
|
// Links
|
|
this->addView(new brls::Header("Disclaimers"));
|
|
brls::Label *links = new brls::Label(
|
|
brls::LabelStyle::SMALL,
|
|
"menus/Disclaimers"_i18n + "\n" + "menus/donate"_i18n,
|
|
true
|
|
);
|
|
this->addView(links);
|
|
} |