From 4fa8f5b6c933dcbab5940d39a515937e86e9d280 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 7 Mar 2025 22:49:57 -0500 Subject: Added pane that shows painting mapping --- src/paintings_pane.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/paintings_pane.h (limited to 'src/paintings_pane.h') 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 @@ +#ifndef PAINTINGS_PANE_H_815370D2 +#define PAINTINGS_PANE_H_815370D2 + +#include + +#ifndef WX_PRECOMP +#include +#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 */ -- cgit 1.4.1