Blame view

Giac_maj/epsilon-giac/escher/src/highlight_cell.cpp 345 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #include <escher/highlight_cell.h>
  
  HighlightCell::HighlightCell() :
    View(),
    m_highlighted(false)
  {
  }
  
  void HighlightCell::setHighlighted(bool highlight) {
    m_highlighted = highlight;
    reloadCell();
  }
  
  bool HighlightCell::isHighlighted() const {
    return m_highlighted;
  }
  
  void HighlightCell::reloadCell() {
    markRectAsDirty(bounds());
  }