about summary refs log tree commit diff stats
path: root/client/archipelago.tscn
Commit message (Expand)AuthorAgeFilesLines
* Create stub loaderStar Rauchenberger2025-10-031-0/+153
* Reorganized READMEsStar Rauchenberger2025-09-251-167/+0
* [Client] Center title on connection screenStar Rauchenberger2025-09-121-0/+1
* [Client] Warn when major version doesn't matchStar Rauchenberger2025-09-121-0/+4
* Client is starting to work!Star Rauchenberger2025-08-281-0/+162
previous revision' href='/lingo-ap-tracker/blame/area_popup.h?h=v0.6.5&id=4ec5bf36218ad715657bba7649598410feae2794'>^
09d67fb ^


22014b9 ^


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 */