mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
#ifndef GEOMETRY_H
|
|
#define GEOMETRY_H
|
|
|
|
#include <escher.h>
|
|
#include "list/figures_controller.h"
|
|
#include "graph/graph_controller.h"
|
|
#include "other/other_view_controller.h"
|
|
#include "../shared/text_field_delegate_app.h"
|
|
|
|
namespace Geometry {
|
|
|
|
class App : public Shared::TextFieldDelegateApp {
|
|
public:
|
|
class Descriptor : public ::App::Descriptor {
|
|
public:
|
|
I18n::Message name() override;
|
|
I18n::Message upperName() override;
|
|
const Image * icon() override;
|
|
};
|
|
class Snapshot : public ::App::Snapshot, public TabViewDataSource {
|
|
public:
|
|
App * unpack(Container * container) override;
|
|
Descriptor * descriptor() override;
|
|
};
|
|
private:
|
|
App(Snapshot * snapshot);
|
|
|
|
FiguresController m_figuresController;
|
|
StackViewController m_stackViewController;
|
|
GraphController m_graphController;
|
|
AlternateEmptyViewController m_graphAlternateEmptyViewController;
|
|
StackViewController m_graphStackViewController;
|
|
ButtonRowController m_graphHeader;
|
|
OtherViewController m_otherViewController;
|
|
TabViewController m_tabViewController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |