diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-01-30 16:38:08 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-01-30 16:38:08 -0500 |
commit | 19959f8479d1bb74f75890dcccbc038871771480 (patch) | |
tree | 56aab329819e56a7bcf405f08f2c0fbda9480270 /src/area_popup.h | |
parent | 90a208870cfe150f494e21b351152119f98633a2 (diff) | |
parent | 7cb55acb62c5a03df75edd0c3c8f228295c1bee8 (diff) | |
download | lingo-ap-tracker-19959f8479d1bb74f75890dcccbc038871771480.tar.gz lingo-ap-tracker-19959f8479d1bb74f75890dcccbc038871771480.tar.bz2 lingo-ap-tracker-19959f8479d1bb74f75890dcccbc038871771480.zip |
Merge branch 'main' into future
Diffstat (limited to 'src/area_popup.h')
-rw-r--r-- | src/area_popup.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/area_popup.h b/src/area_popup.h index d5f6a50..00c644d 100644 --- a/src/area_popup.h +++ b/src/area_popup.h | |||
@@ -7,19 +7,20 @@ | |||
7 | #include <wx/wx.h> | 7 | #include <wx/wx.h> |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #include "eye_indicator.h" | 10 | class AreaPopup : public wxScrolledCanvas { |
11 | |||
12 | class AreaPopup : public wxScrolledWindow { | ||
13 | public: | 11 | public: |
14 | AreaPopup(wxWindow* parent, int area_id); | 12 | AreaPopup(wxWindow* parent, int area_id); |
15 | 13 | ||
16 | void UpdateIndicators(); | 14 | void UpdateIndicators(); |
17 | 15 | ||
18 | private: | 16 | private: |
17 | void OnPaint(wxPaintEvent& event); | ||
18 | |||
19 | int area_id_; | 19 | int area_id_; |
20 | 20 | ||
21 | std::vector<wxStaticText*> section_labels_; | 21 | wxBitmap unchecked_eye_; |
22 | std::vector<EyeIndicator*> eye_indicators_; | 22 | wxBitmap checked_eye_; |
23 | wxBitmap rendered_; | ||
23 | }; | 24 | }; |
24 | 25 | ||
25 | #endif /* end of include guard: AREA_POPUP_H_03FAC988 */ | 26 | #endif /* end of include guard: AREA_POPUP_H_03FAC988 */ |