diff options
Diffstat (limited to 'area_popup.h')
-rw-r--r-- | area_popup.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/area_popup.h b/area_popup.h index c3de4bb..b602b63 100644 --- a/area_popup.h +++ b/area_popup.h | |||
@@ -7,12 +7,19 @@ | |||
7 | #include <wx/wx.h> | 7 | #include <wx/wx.h> |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | #include "eye_indicator.h" | ||
11 | |||
10 | class AreaPopup : public wxPanel { | 12 | class AreaPopup : public wxPanel { |
11 | public: | 13 | public: |
12 | AreaPopup(wxWindow* parent, int area_id); | 14 | AreaPopup(wxWindow* parent, int area_id); |
13 | 15 | ||
16 | void UpdateIndicators(); | ||
17 | |||
14 | private: | 18 | private: |
15 | int area_id_; | 19 | int area_id_; |
20 | |||
21 | std::vector<wxStaticText*> section_labels_; | ||
22 | std::vector<EyeIndicator*> eye_indicators_; | ||
16 | }; | 23 | }; |
17 | 24 | ||
18 | #endif /* end of include guard: AREA_POPUP_H_03FAC988 */ | 25 | #endif /* end of include guard: AREA_POPUP_H_03FAC988 */ |