about summary refs log tree commit diff stats
path: root/data/maps/the_great/rooms/Question Room Who.txtpb
blob: eb808828410f41280ec3bc9fc759bf5093f624b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: "Question Room Who"
panel_display_name: "Question Room"
panels {
  name: "QUESTION"
  path: "Panels/Questions/question_2"
  clue: "question"
  answer: "who"
  symbols: EXAMPLE
  proxies { answer: "why" path: "Panels/Question Proxies/question_2_proxied" }
  proxies { answer: "who" path: "Panels/Question Proxies/question_2_proxied2" }
  proxies { answer: "where" path: "Panels/Question Proxies/question_2_proxied3" }
  proxies { answer: "how" path: "Panels/Question Proxies/question_2_proxied4" }
  proxies { answer: "what" path: "Panels/Question Proxies/question_2_proxied5" }
  proxies { answer: "when" path: "Panels/Question Proxies/question_2_proxied6" }
  display_name: "QUESTION (Who)"
}
author Star Rauchenberger <fefferburbia@gmail.com> 2023-05-02 17:26:46 -0400 committer Star Rauchenberger <fefferburbia@gmail.com> 2023-05-02 17:26:46 -0400 Map + popups reflect checked locations' href='/lingo-ap-tracker/commit/tracker_frame.h?id=09d67fbad9df92caf2251d36b4abd7979fd27126'>09d67fb ^
bb12ecd ^
d7eb71d


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
35
36
37
38
39
40








                                
                       

                   


                                                
                                     
        

                 

                                             

                          
         

                                      
                                        
                                         

                                                

                                              
 

                                    
                               
                                       


                                                           
#ifndef TRACKER_FRAME_H_86BD8DFB
#define TRACKER_FRAME_H_86BD8DFB

#include <wx/wxprec.h>

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

class AchievementsPane;
class TrackerPanel;

wxDECLARE_EVENT(STATE_CHANGED, wxCommandEvent);
wxDECLARE_EVENT(STATUS_CHANGED, wxCommandEvent);

class TrackerFrame : public wxFrame {
 public:
  TrackerFrame();

  void SetStatusMessage(std::string message);

  void UpdateIndicators();

 private:
  void OnExit(wxCommandEvent &event);
  void OnAbout(wxCommandEvent &event);
  void OnConnect(wxCommandEvent &event);
  void OnSettings(wxCommandEvent &event);
  void OnCheckForUpdates(wxCommandEvent &event);

  void OnStateChanged(wxCommandEvent &event);
  void OnStatusChanged(wxCommandEvent &event);

  void CheckForUpdates(bool manual);

  TrackerPanel *tracker_panel_;
  AchievementsPane *achievements_pane_;
};

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