mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
It is now possible to call the value of a defined sequence anywhere. Change-Id: I1990e93c50f9add175b7ea274e07004ba63289e5
33 lines
726 B
C++
33 lines
726 B
C++
#ifndef ON_BOARDING_APP_H
|
|
#define ON_BOARDING_APP_H
|
|
|
|
#include <escher.h>
|
|
#include "logo_controller.h"
|
|
#include "localization_controller.h"
|
|
#include "../shared/shared_app.h"
|
|
|
|
namespace OnBoarding {
|
|
|
|
class App : public ::App {
|
|
public:
|
|
class Snapshot : public ::SharedApp::Snapshot {
|
|
public:
|
|
App * unpack(Container * container) override;
|
|
Descriptor * descriptor() override;
|
|
};
|
|
|
|
int numberOfTimers() override;
|
|
Timer * timerAtIndex(int i) override;
|
|
bool processEvent(Ion::Events::Event) override;
|
|
void didBecomeActive(Window * window) override;
|
|
private:
|
|
App(Snapshot * snapshot);
|
|
void reinitOnBoarding();
|
|
LocalizationController m_localizationController;
|
|
LogoController m_logoController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|