mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-26 13:40:21 +00:00
13 lines
415 B
C++
13 lines
415 B
C++
|
#include "ui/MainApplication.hpp"
|
||
|
|
||
|
namespace inst::ui {
|
||
|
MainApplication *mainApp;
|
||
|
|
||
|
void MainApplication::OnLoad() {
|
||
|
mainApp = this;
|
||
|
|
||
|
this->mainPage = MainPage::New();
|
||
|
this->mainPage->SetOnInput(std::bind(&MainPage::onInput, this->mainPage, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
|
||
|
this->LoadLayout(this->mainPage);
|
||
|
}
|
||
|
}
|