blob: 74bf605b0e3e81da545c59f29b9349665b843e78 (
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
24
25
26
27
|
#include "tracker_panel.h"
TrackerPanel::TrackerPanel(wxWindow *parent) : wxPanel(parent, wxID_ANY) {
map_image_ = wxImage("assets/lingo_map.png", wxBITMAP_TYPE_PNG);
if (!map_image_.IsOk()) {
return;
}
Redraw();
Bind(wxEVT_PAINT, &TrackerPanel::OnPaint, this);
}
void TrackerPanel::OnPaint(wxPaintEvent &event) {
if (GetSize() != rendered_.GetSize()) {
Redraw();
}
wxPaintDC dc(this);
dc.DrawBitmap(rendered_, 0, 0);
}
void TrackerPanel::Redraw() {
wxSize sz = GetSize();
rendered_ = wxBitmap(
map_image_.Scale(sz.GetWidth(), sz.GetHeight(), wxIMAGE_QUALITY_NORMAL));
}
|