Numworks Epsilon  1.4.1
Graphing Calculator Operating System
even_odd_cell.h
Go to the documentation of this file.
1 #ifndef ESCHER_EVEN_ODD_CELL_H
2 #define ESCHER_EVEN_ODD_CELL_H
3 
5 
6 class EvenOddCell : public HighlightCell {
7 public:
8  EvenOddCell();
9  virtual void setEven(bool even);
10  virtual KDColor backgroundColor() const;
11  void drawRect(KDContext * ctx, KDRect rect) const override;
12 protected:
13  bool m_even;
14 };
15 
16 #endif
void drawRect(KDContext *ctx, KDRect rect) const override
virtual void setEven(bool even)
virtual KDColor backgroundColor() const
Definition: rect.h:26
Definition: color.h:6