diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-02 12:05:05 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-02 12:05:05 -0400 |
| commit | 22014b967d0d9651b72bffbe02aba75dc98180a4 (patch) | |
| tree | ffab7ffdc21463eb6cd7160fbce6f91e050f8c3e /area_popup.h | |
| parent | 4ec5bf36218ad715657bba7649598410feae2794 (diff) | |
| download | lingo-ap-tracker-22014b967d0d9651b72bffbe02aba75dc98180a4.tar.gz lingo-ap-tracker-22014b967d0d9651b72bffbe02aba75dc98180a4.tar.bz2 lingo-ap-tracker-22014b967d0d9651b72bffbe02aba75dc98180a4.zip | |
Show locations popup when hovering over area
Diffstat (limited to 'area_popup.h')
| -rw-r--r-- | area_popup.h | 18 |
1 files changed, 18 insertions, 0 deletions
| diff --git a/area_popup.h b/area_popup.h new file mode 100644 index 0000000..c3de4bb --- /dev/null +++ b/area_popup.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #ifndef AREA_POPUP_H_03FAC988 | ||
| 2 | #define AREA_POPUP_H_03FAC988 | ||
| 3 | |||
| 4 | #include <wx/wxprec.h> | ||
| 5 | |||
| 6 | #ifndef WX_PRECOMP | ||
| 7 | #include <wx/wx.h> | ||
| 8 | #endif | ||
| 9 | |||
| 10 | class AreaPopup : public wxPanel { | ||
| 11 | public: | ||
| 12 | AreaPopup(wxWindow* parent, int area_id); | ||
| 13 | |||
| 14 | private: | ||
| 15 | int area_id_; | ||
| 16 | }; | ||
| 17 | |||
| 18 | #endif /* end of include guard: AREA_POPUP_H_03FAC988 */ | ||
