25 lines
509 B
C++
25 lines
509 B
C++
#include "./start_screen.hpp"
|
|
|
|
#include "./main_screen.hpp"
|
|
|
|
#include <memory>
|
|
|
|
StartScreen::StartScreen(void) {
|
|
}
|
|
|
|
Screen* StartScreen::poll(bool&) {
|
|
|
|
// TODO: imgui tox profile selector?
|
|
// +----------------------------
|
|
// | |*tox profile*| plugins |
|
|
// | +------+ +--------
|
|
// | | ICON | | fileselector/dropdown?
|
|
// | | | | password input
|
|
// | +------+ +--------
|
|
// +----------------------------
|
|
|
|
auto new_screen = std::make_unique<MainScreen>("tomato.tox");
|
|
return new_screen.release();
|
|
}
|
|
|