name: "Daedalus Extension" daedalus_only_allow: true panels { name: "WHERE" path: "Panels/entry_1" clue: "where" answer: "question" symbols: EXAMPLE } paintings { name: "EYE" path: "Components/Paintings/Daedalus/eyeRed" orientation: "north" } paintings { name: "PYRAMID" path: "Components/Paintings/Daedalus/pyramid" orientation: "west" } paintings { name: "TOWER" path: "Components/Paintings/Daedalus/tower" orientation: "west" } paintings { name: "GATE" path: "Components/Paintings/Daedalus/gate" orientation: "west" } paintings { name: "PUMPKIN" path: "Components/Paintings/Daedalus/pumpkin" orientation: "east" } paintings { name: "HOUSE" path: "Components/Paintings/Daedalus/house" orientation: "east" } paintings { name: "SNAKE" path: "Components/Paintings/Daedalus/snake" orientation: "east" } abel='branches'> Autotracker for the Lingo Archipelago integration
about summary refs log blame commit diff stats
path: root/src/report_popup.h
blob: 9e141bf1abca7c613d296a3668e8e85f6f2b1683 (plain) (tree)





























                                                          
#ifndef REPORT_POPUP_H_E065BED4
#define REPORT_POPUP_H_E065BED4

#include <wx/wxprec.h>

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

class ReportPopup : public wxScrolledCanvas {
 public:
  explicit ReportPopup(wxWindow* parent);

  void SetDoorId(int door_id);

  void Reset();

  void UpdateIndicators();

 private:
  void OnPaint(wxPaintEvent& event);

  int door_id_ = -1;

  wxBitmap unchecked_eye_;
  wxBitmap checked_eye_;
  wxBitmap rendered_;
};

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