[submodule "vendor/hkutil"] path = vendor/hkutil url = https://github.com/hatkirby/hkutil.git [submodule "vendor/apclientpp"] path = vendor/apclientpp url = https://github.com/black-sliver/apclientpp.git [submodule "vendor/valijson"] path = vendor/valijson url = https://github.com/tristanpenman/valijson.git [submodule "vendor/wswrap"] path = vendor/wswrap url = https://github.com/black-sliver/wswrap.git [submodule "vendor/websocketpp"] path = vendor/websocketpp url = https://github.com/zaphoyd/websocketpp.git [submodule "vendor/asio"] path = vendor/asio url = https://github.com/chriskohlhoff/asio/ [submodule "vendor/vcpkg"] path = vendor/vcpkg url = https://github.com/Microsoft/vcpkg.git en' name='id' value='d7212d755dca7f4fd99cf4b775cd0d372d7bcbb2'/> Autotracker for the Lingo Archipelago integration
about summary refs log tree commit diff stats
path: root/src/area_popup.h
blob: b602b637cb7a22f7735ca0e69fea09312bd62840 (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
#ifndef AREA_POPUP_H_03FAC988
#define AREA_POPUP_H_03FAC988

#include <wx/wxprec.h>

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

#include "eye_indicator.h"

class AreaPopup : public wxPanel {
 public:
  AreaPopup(wxWindow* parent, int area_id);

  void UpdateIndicators();

 private:
  int area_id_;

  std::vector<wxStaticText*> section_labels_;
  std::vector<EyeIndicator*> eye_indicators_;
};

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