about summary refs log tree commit diff stats
path: root/tracker_panel.cpp
Commit message (Expand)AuthorAgeFilesLines
* Map + popups reflect checked locationsStar Rauchenberger2023-05-021-0/+13
* Show locations popup when hovering over areaStar Rauchenberger2023-05-021-1/+21
* Added areas to mapStar
#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 */