about summary refs log tree commit diff stats
path: root/src/paintings_pane.h
blob: f8d3e091686669ac1eec98bd6e135dd7fdf6bd07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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 UpdateIndicators();

 private:
  wxDataViewTreeCtrl* tree_ctrl_;
};

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