blob: 20d4f9274269228ad8b9b6cddb1e263ed44cb823 (
plain) (
tree)
|
|
#ifndef TRACKER_PANEL_H_D675A54D
#define TRACKER_PANEL_H_D675A54D
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "area_window.h"
class TrackerPanel : public wxPanel {
public:
TrackerPanel(wxWindow *parent);
void UpdateIndicators();
private:
void OnPaint(wxPaintEvent &event);
void Redraw();
wxImage map_image_;
wxBitmap rendered_;
std::vector<AreaWindow *> area_windows_;
std::vector<AreaPopup *> area_popups_;
};
#endif /* end of include guard: TRACKER_PANEL_H_D675A54D */
|