about summary refs log tree commit diff stats
path: root/data/maps/the_three_doors/rooms
ModeNameSize
-rw-r--r--Dead End Room.txtpb762log stats plain blame
-rw-r--r--First Second Room.txtpb803log stats plain blame
-rw-r--r--Loose Strings Room.txtpb415log stats plain blame
-rw-r--r--One Luck Room.txtpb401log stats plain blame
-rw-r--r--Silver Portal Room.txtpb764log stats plain blame
mail.com> 2023-05-01 17:54:50 -0400 committer Star Rauchenberger <fefferburbia@gmail.com> 2023-05-01 17:54:50 -0400 Added map background' href='/lingo-ap-tracker/commit/tracker_panel.h?h=v0.12.3&id=9798316b43773e4c7d15851202977a3069f28577'>9798316 ^
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








                                

                        
                                     
        

                                 

                          
         





                                    

                                          
                                        


                                                           
#ifndef TRACKER_PANEL_H_D675A54D
#define TRACKER_PANEL_H_D675A54D

#include <wx/wxprec.h>

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

#include "area_window.h"

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

  void UpdateIndicators();

 private:
  void OnPaint(wxPaintEvent &event);

  void Redraw();

  wxImage map_image_;
  wxBitmap rendered_;

  std::vector<AreaWindow *> area_windows_;
  std::vector<AreaPopup *> area_popups_;
};

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