Files
Upsilon/apps/graph/graph/graph_controller.h
Émilie Feral bc9e504394 [apps/graph] add a method in list/graph controller to return the parent tabController
Change-Id: I4865b6a6096a96a570cc9cc8d0b8802294ba2225
2016-09-16 13:33:22 +02:00

21 lines
483 B
C++

#ifndef GRAPH_GRAPH_CONTROLLER_H
#define GRAPH_GRAPH_CONTROLLER_H
#include <escher.h>
#include "graph_view.h"
#include "../function_store.h"
class GraphController : public ViewController {
public:
GraphController(Responder * parentResponder, Graph::FunctionStore * functionStore);
View * view() override;
const char * title() const override;
bool handleEvent(Ion::Events::Event event) override;
private:
Responder * tabController() const;
GraphView m_view;
};
#endif