Files
Upsilon/apps/statistics/app.h
Émilie Feral 71608762aa [escher] Add a data source to tab to be hold by snapshots
Change-Id: I48b242ff433170d6b9618661e613a47669910a79
2017-05-19 11:25:04 +02:00

63 lines
1.8 KiB
C++

#ifndef STAT_APP_H
#define STAT_APP_H
#include <escher.h>
#include "box_controller.h"
#include "calculation_controller.h"
#include "store.h"
#include "store_controller.h"
#include "histogram_controller.h"
#include "../shared/text_field_delegate_app.h"
namespace Statistics {
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:
Snapshot();
App * unpack(Container * container) override;
void reset() override;
Descriptor * descriptor() override;
Store * store();
uint32_t * storeVersion();
uint32_t * barVersion();
uint32_t * rangeVersion();
int * selectedHistogramBarIndex();
BoxView::Quantile * selectedBoxQuantile();
private:
Store m_store;
uint32_t m_storeVersion;
uint32_t m_barVersion;
uint32_t m_rangeVersion;
int m_selectedHistogramBarIndex;
BoxView::Quantile m_selectedBoxQuantile;
};
private:
App(Container * container, Snapshot * snapshot);
CalculationController m_calculationController;
AlternateEmptyViewController m_calculationAlternateEmptyViewController;
ButtonRowController m_calculationHeader;
BoxController m_boxController;
AlternateEmptyViewController m_boxAlternateEmptyViewController;
ButtonRowController m_boxHeader;
HistogramController m_histogramController;
AlternateEmptyViewController m_histogramAlternateEmptyViewController;
ButtonRowController m_histogramHeader;
StackViewController m_histogramStackViewController;
StoreController m_storeController;
ButtonRowController m_storeHeader;
StackViewController m_storeStackViewController;
TabViewController m_tabViewController;
};
}
#endif