mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-23 12:13:11 +00:00
21 lines
No EOL
1.3 KiB
C++
Executable file
21 lines
No EOL
1.3 KiB
C++
Executable file
#include "ui/MainApplication.hpp"
|
|
|
|
namespace inst::ui {
|
|
MainApplication *mainApp;
|
|
|
|
void MainApplication::OnLoad() {
|
|
mainApp = this;
|
|
|
|
this->mainPage = MainPage::New();
|
|
this->netinstPage = netInstPage::New();
|
|
this->nspinstPage = nspInstPage::New();
|
|
this->instpage = instPage::New();
|
|
this->optionspage = optionsPage::New();
|
|
this->mainPage->SetOnInput(std::bind(&MainPage::onInput, this->mainPage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
|
this->netinstPage->SetOnInput(std::bind(&netInstPage::onInput, this->netinstPage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
|
this->nspinstPage->SetOnInput(std::bind(&nspInstPage::onInput, this->nspinstPage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
|
this->instpage->SetOnInput(std::bind(&instPage::onInput, this->instpage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
|
this->optionspage->SetOnInput(std::bind(&optionsPage::onInput, this->optionspage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
|
this->LoadLayout(this->mainPage);
|
|
}
|
|
} |