diff options
Diffstat (limited to 'src/paintings_pane.h')
-rw-r--r-- | src/paintings_pane.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/paintings_pane.h b/src/paintings_pane.h new file mode 100644 index 0000000..f8d3e09 --- /dev/null +++ b/src/paintings_pane.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef PAINTINGS_PANE_H_815370D2 | ||
2 | #define PAINTINGS_PANE_H_815370D2 | ||
3 | |||
4 | #include <wx/wxprec.h> | ||
5 | |||
6 | #ifndef WX_PRECOMP | ||
7 | #include <wx/wx.h> | ||
8 | #endif | ||
9 | |||
10 | class wxDataViewTreeCtrl; | ||
11 | |||
12 | class PaintingsPane : public wxPanel { | ||
13 | public: | ||
14 | explicit PaintingsPane(wxWindow* parent); | ||
15 | |||
16 | void UpdateIndicators(); | ||
17 | |||
18 | private: | ||
19 | wxDataViewTreeCtrl* tree_ctrl_; | ||
20 | }; | ||
21 | |||
22 | #endif /* end of include guard: PAINTINGS_PANE_H_815370D2 */ | ||