about summary refs log tree commit diff stats
path: root/tracker_panel.h
blob: 32f75373843d10dec52cf4034f0f534242973765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef TRACKER_PANEL_H_D675A54D
#define TRACKER_PANEL_H_D675A54D

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

class TrackerPanel : public wxPanel {
 public:
  TrackerPanel(wxWindow *parent);

 private:
  void OnPaint(wxPaintEvent &event);

  void Redraw();

  wxImage map_image_;
  wxBitmap rendered_;
};

#endif /* end of include guard: TRACKER_PANEL_H_D675A54D */