Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Map + popups reflect checked locations | Star Rauchenberger | 2023-05-02 | 1 | -0/+13 |
* | Show locations popup when hovering over area | Star Rauchenberger | 2023-05-02 | 1 | -1/+21 |
* | Added areas to map | Star #ifndef AREA_POPUP_H_03FAC988
#define AREA_POPUP_H_03FAC988
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
class AreaPopup : public wxScrolledCanvas {
public:
AreaPopup(wxWindow* parent, int area_id);
void UpdateIndicators();
private:
void OnPaint(wxPaintEvent& event);
int area_id_;
wxBitmap unchecked_eye_;
wxBitmap checked_eye_;
wxBitmap rendered_;
};
#endif /* end of include guard: AREA_POPUP_H_03FAC988 */
|