Numworks Epsilon  1.4.1
Graphing Calculator Operating System
highlight_cell.h
Go to the documentation of this file.
1 #ifndef ESCHER_HIGHLIGHT_CELL_H
2 #define ESCHER_HIGHLIGHT_CELL_H
3 
4 #include <escher/view.h>
5 #include <escher/responder.h>
6 
7 class HighlightCell : public View {
8 public:
10  virtual void setHighlighted(bool highlight);
11  bool isHighlighted() const { return m_highlighted; }
12  virtual void reloadCell();
13  virtual Responder * responder() {
14  return nullptr;
15  }
16 protected:
18 };
19 
20 #endif
virtual Responder * responder()
bool isHighlighted() const
Definition: view.h:23
virtual void setHighlighted(bool highlight)
virtual void reloadCell()