about summary refs log tree commit diff stats
path: root/src/paintings_pane.h
blob: 2b792864ba52a1078c8d25d76eb5002c53c0935d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef PAINTINGS_PANE_H_815370D2
#define PAINTINGS_PANE_H_815370D2

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

class wxDataViewTreeCtrl;

class PaintingsPane : public wxPanel {
 public:
  explicit PaintingsPane(wxWindow* parent);

  void ResetIndicators();
  void UpdateIndicators(const std::vector<std::string>& paintings);

 private:
  void OnClickRevealPaintings(wxCommandEvent& event);

  wxDataViewTreeCtrl* tree_ctrl_;
  wxButton* reveal_btn_;
};

#endif /* end of include guard: PAINTINGS_PANE_H_815370D2 */