diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-07 22:49:57 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-07 22:49:57 -0500 |
commit | 4fa8f5b6c933dcbab5940d39a515937e86e9d280 (patch) | |
tree | e61cdd340c79780523ff88e148bb56b5565fe430 /src/paintings_pane.h | |
parent | b06f534cd0023d753932b4932c95da5d4854b804 (diff) | |
download | lingo-ap-tracker-4fa8f5b6c933dcbab5940d39a515937e86e9d280.tar.gz lingo-ap-tracker-4fa8f5b6c933dcbab5940d39a515937e86e9d280.tar.bz2 lingo-ap-tracker-4fa8f5b6c933dcbab5940d39a515937e86e9d280.zip |
Added pane that shows painting mapping
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 */ | ||