#ifndef EYE_INDICATOR_H_778150F2 #define EYE_INDICATOR_H_778150F2 #include #ifndef WX_PRECOMP #include #endif class EyeIndicator : public wxWindow { public: EyeIndicator(wxWindow* parent); void SetChecked(bool checked); private: static const wxImage& GetUncheckedImage(); static const wxImage& GetCheckedImage(); void OnPaint(wxPaintEvent& event); void Redraw(); bool intended_checked_ = false; wxBitmap rendered_; bool rendered_checked_ = false; }; #endif /* end of include guard: EYE_INDICATOR_H_778150F2 */ > index : lingo-ap-tracker
Autotracker for the Lingo Archipelago integration
about summary refs log tree commit diff stats
blob: 0321b5a926f83e07f26b5b1a3f9b6a91a393c888 (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
28
29
30
31
32
33
34