mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-10 04:21:44 +00:00
23 lines
632 B
C++
23 lines
632 B
C++
|
#include "main_frame.hpp"
|
||
|
|
||
|
MainFrame::MainFrame() : TabFrame()
|
||
|
{
|
||
|
|
||
|
//this->setIcon(new Logo(LogoStyle::HEADER));
|
||
|
brls::Logger::debug("MainFrame");
|
||
|
setTitle(std::string(APP_TITLE) + " v" + std::string(APP_VERSION));
|
||
|
this->addTab("About", new AboutTab());
|
||
|
|
||
|
this->addSeparator();
|
||
|
|
||
|
this->addTab("Update CFW", new ListDownloadTab(cfw));
|
||
|
this->addTab("Update sigpatches", new ListDownloadTab(sigpatches));
|
||
|
this->addTab("Download firmwares", new ListDownloadTab(fw));
|
||
|
this->addTab("Download cheats", new ListDownloadTab(cheats));
|
||
|
|
||
|
|
||
|
this->addSeparator();
|
||
|
|
||
|
this->addTab("Tools", new ToolsTab());
|
||
|
}
|