OpenTTD Source  20240915-master-g3784a3d3d6
window_gui.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef WINDOW_GUI_H
11 #define WINDOW_GUI_H
12 
13 #include "vehiclelist.h"
14 #include "vehicle_type.h"
15 #include "viewport_type.h"
16 #include "company_type.h"
17 #include "tile_type.h"
18 #include "widget_type.h"
19 #include "string_type.h"
20 
24 enum FrameFlags {
25  FR_NONE = 0,
26  FR_TRANSPARENT = 1 << 0,
27  FR_BORDERONLY = 1 << 4,
28  FR_LOWERED = 1 << 5,
29  FR_DARKENED = 1 << 6,
30 };
31 
33 
35 public:
58 
62  int vsep_wide;
64  int hsep_wide;
66 
67  static const WidgetDimensions unscaled;
69 
70  static constexpr float ASPECT_LOCATION = 12.f / 14.f;
71  static constexpr float ASPECT_RENAME = 12.f / 14.f;
72  static constexpr float ASPECT_SETTINGS_BUTTON = 21.f / 12.f;
73  static constexpr float ASPECT_TOGGLE_SIZE = 12.f / 14.f;
74  static constexpr float ASPECT_LEFT_RIGHT_BUTTON = 8.f / 12.f;
75  static constexpr float ASPECT_UP_DOWN_BUTTON = 11.f / 12.f;
76  static constexpr float ASPECT_VEHICLE_ICON = 15.f / 12.f;
77  static constexpr float ASPECT_VEHICLE_FLAG = 11.f / 12.f;
78 
79 private:
85  WD_SHADEBOX_WIDTH = 12,
86  WD_STICKYBOX_WIDTH = 12,
87  WD_DEBUGBOX_WIDTH = 12,
88  WD_DEFSIZEBOX_WIDTH = 12,
89  WD_RESIZEBOX_WIDTH = 12,
90  WD_CLOSEBOX_WIDTH = 11,
91 
92  WD_CAPTION_HEIGHT = 14,
93  WD_DROPDOWN_HEIGHT = 12,
94  };
95 
96  friend NWidgetLeaf;
97 };
98 
100  .imgbtn = { .left = 1, .top = 1, .right = 1, .bottom = 1},
101  .inset = { .left = 2, .top = 1, .right = 2, .bottom = 1},
102  .vscrollbar = { .left = 2, .top = 3, .right = 2, .bottom = 3},
103  .hscrollbar = { .left = 3, .top = 2, .right = 3, .bottom = 2},
104  .bevel = { .left = 1, .top = 1, .right = 1, .bottom = 1},
105  .fullbevel = { .left = 1, .top = 1, .right = 1, .bottom = 1},
106  .framerect = { .left = 2, .top = 1, .right = 2, .bottom = 1},
107  .frametext = { .left = 6, .top = 6, .right = 6, .bottom = 6},
108  .matrix = { .left = 2, .top = 3, .right = 2, .bottom = 1},
109  .shadebox = { .left = 2, .top = 3, .right = 2, .bottom = 3},
110  .stickybox = { .left = 2, .top = 3, .right = 2, .bottom = 3},
111  .debugbox = { .left = 2, .top = 3, .right = 2, .bottom = 3},
112  .defsizebox = { .left = 2, .top = 3, .right = 2, .bottom = 3},
113  .resizebox = { .left = 2, .top = 2, .right = 2, .bottom = 2},
114  .closebox = { .left = 2, .top = 2, .right = 1, .bottom = 2},
115  .captiontext = { .left = 2, .top = 2, .right = 2, .bottom = 2},
116  .dropdowntext = { .left = 2, .top = 1, .right = 2, .bottom = 1},
117  .dropdownlist = { .left = 1, .top = 2, .right = 1, .bottom = 2},
118  .modalpopup = { .left = 20, .top = 10, .right = 20, .bottom = 10},
119  .picker = { .left = 3, .top = 3, .right = 3, .bottom = 3},
120  .sparse = { .left = 10, .top = 8, .right = 10, .bottom = 8},
121  .sparse_resize = { .left = 10, .top = 8, .right = 10, .bottom = 0},
122  .vsep_picker = 1,
123  .vsep_normal = 2,
124  .vsep_sparse = 4,
125  .vsep_wide = 8,
126  .hsep_normal = 2,
127  .hsep_wide = 6,
128  .hsep_indent = 10,
129 };
130 
131 /* widget.cpp */
132 void DrawFrameRect(int left, int top, int right, int bottom, Colours colour, FrameFlags flags);
133 
134 inline void DrawFrameRect(const Rect &r, Colours colour, FrameFlags flags)
135 {
136  DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, flags);
137 }
138 
139 void DrawCaption(const Rect &r, Colours colour, Owner owner, TextColour text_colour, StringID str, StringAlignment align, FontSize fs);
140 
141 /* window.cpp */
142 using WindowList = std::list<Window *>;
143 extern WindowList _z_windows;
144 extern Window *_focused_window;
145 
146 
153 };
154 
155 Point GetToolbarAlignedWindowPosition(int window_width);
156 
157 struct HotkeyList;
158 
163 
164  WindowDesc(WindowPosition default_pos, const char *ini_key, int16_t def_width_trad, int16_t def_height_trad,
165  WindowClass window_class, WindowClass parent_class, uint32_t flags,
166  const std::span<const NWidgetPart> nwid_parts, HotkeyList *hotkeys = nullptr,
167  const std::source_location location = std::source_location::current());
168 
169  ~WindowDesc();
170 
171  const std::source_location source_location;
175  const char *ini_key;
176  uint32_t flags;
177  const std::span<const NWidgetPart> nwid_parts;
179 
180  bool pref_sticky;
181  int16_t pref_width;
182  int16_t pref_height;
183 
184  int16_t GetDefaultWidth() const;
185  int16_t GetDefaultHeight() const;
186 
187  static void LoadFromConfig();
188  static void SaveToConfig();
189 
190 private:
193 
198  WindowDesc(const WindowDesc &) = delete;
199  WindowDesc& operator=(const WindowDesc &) = delete;
200 };
201 
206  WDF_CONSTRUCTION = 1 << 0,
207  WDF_MODAL = 1 << 1,
208  WDF_NO_FOCUS = 1 << 2,
209  WDF_NO_CLOSE = 1 << 3,
210 };
211 
215 struct ResizeInfo {
216  uint step_width;
217  uint step_height;
218 };
219 
225 };
226 
231  WF_TIMEOUT = 1 << 0,
232 
233  WF_DRAGGING = 1 << 3,
234  WF_SIZING_RIGHT = 1 << 4,
235  WF_SIZING_LEFT = 1 << 5,
237  WF_STICKY = 1 << 6,
239  WF_WHITE_BORDER = 1 << 8,
240  WF_HIGHLIGHTED = 1 << 9,
241  WF_CENTERED = 1 << 10,
242 };
244 
245 static const int TIMEOUT_DURATION = 7;
246 static const int WHITE_BORDER_DURATION = 3;
247 
257  int32_t scrollpos_x;
258  int32_t scrollpos_y;
261 };
262 
263 struct QueryString;
264 
265 /* misc_gui.cpp */
266 enum TooltipCloseCondition {
267  TCC_RIGHT_CLICK,
268  TCC_HOVER,
269  TCC_NONE,
270  TCC_EXIT_VIEWPORT,
271 };
272 
277 private:
278  static std::vector<Window *> closed_windows;
279 
280 protected:
282  void InitializePositionSize(int x, int y, int min_width, int min_height);
283  virtual void FindWindowPlacementAndResize(int def_width, int def_height);
284 
285  std::vector<int> scheduled_invalidation_data;
287 
288  /* Protected to prevent deletion anywhere outside Window::DeleteClosedWindows(). */
289  virtual ~Window();
290 
291 public:
292  Window(WindowDesc &desc);
293 
300  inline void *operator new[](size_t size) = delete;
301 
306 
307  int scale;
308 
309  uint8_t timeout_timer;
311 
312  int left;
313  int top;
314  int width;
315  int height;
316 
318 
320 
323  std::map<WidgetID, QueryString*> querystrings;
324  std::unique_ptr<NWidgetBase> nested_root;
328 
330 
332  WindowList::iterator z_position;
333 
334  template <class NWID>
335  inline const NWID *GetWidget(WidgetID widnum) const;
336  template <class NWID>
337  inline NWID *GetWidget(WidgetID widnum);
338 
339  const Scrollbar *GetScrollbar(WidgetID widnum) const;
341 
342  const QueryString *GetQueryString(WidgetID widnum) const;
344  void UpdateQueryStringSize();
345 
346  virtual const struct Textbuf *GetFocusedTextbuf() const;
347  virtual Point GetCaretPosition() const;
348  virtual Rect GetTextBoundingRect(const char *from, const char *to) const;
349  virtual ptrdiff_t GetTextCharacterAtPosition(const Point &pt) const;
350 
351  void InitNested(WindowNumber number = 0);
352  void CreateNestedTree();
354 
355  template<typename T, std::enable_if_t<std::is_base_of<StrongTypedefBase, T>::value, int> = 0>
356  void FinishInitNested(T number)
357  {
358  this->FinishInitNested(number.base());
359  }
360 
364  inline void SetTimeout()
365  {
366  this->flags |= WF_TIMEOUT;
367  this->timeout_timer = TIMEOUT_DURATION;
368  }
369 
373  inline void SetWhiteBorder()
374  {
375  this->flags |= WF_WHITE_BORDER;
376  this->white_border_timer = WHITE_BORDER_DURATION;
377  }
378 
380  void SetWidgetHighlight(WidgetID widget_index, TextColour highlighted_colour);
381  bool IsWidgetHighlighted(WidgetID widget_index) const;
382 
390  inline void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
391  {
392  NWidgetCore *nwid = this->GetWidget<NWidgetCore>(widget_index);
393  if (nwid != nullptr) nwid->SetDisabled(disab_stat);
394  }
395 
400  inline void DisableWidget(WidgetID widget_index)
401  {
402  SetWidgetDisabledState(widget_index, true);
403  }
404 
409  inline void EnableWidget(WidgetID widget_index)
410  {
411  SetWidgetDisabledState(widget_index, false);
412  }
413 
419  inline bool IsWidgetDisabled(WidgetID widget_index) const
420  {
421  return this->GetWidget<NWidgetCore>(widget_index)->IsDisabled();
422  }
423 
429  inline bool IsWidgetFocused(WidgetID widget_index) const
430  {
431  return this->nested_focus != nullptr && this->nested_focus->index == widget_index;
432  }
433 
440  inline bool IsWidgetGloballyFocused(WidgetID widget_index) const
441  {
442  return _focused_window == this && IsWidgetFocused(widget_index);
443  }
444 
450  inline void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
451  {
452  this->GetWidget<NWidgetCore>(widget_index)->SetLowered(lowered_stat);
453  }
454 
459  inline void ToggleWidgetLoweredState(WidgetID widget_index)
460  {
461  bool lowered_state = this->GetWidget<NWidgetCore>(widget_index)->IsLowered();
462  this->GetWidget<NWidgetCore>(widget_index)->SetLowered(!lowered_state);
463  }
464 
469  inline void LowerWidget(WidgetID widget_index)
470  {
471  SetWidgetLoweredState(widget_index, true);
472  }
473 
478  inline void RaiseWidget(WidgetID widget_index)
479  {
480  SetWidgetLoweredState(widget_index, false);
481  }
482 
487  inline void RaiseWidgetWhenLowered(WidgetID widget_index)
488  {
489  if (this->IsWidgetLowered(widget_index)) {
490  this->RaiseWidget(widget_index);
491  this->SetWidgetDirty(widget_index);
492  }
493  }
494 
500  inline bool IsWidgetLowered(WidgetID widget_index) const
501  {
502  return this->GetWidget<NWidgetCore>(widget_index)->IsLowered();
503  }
504 
505  void UnfocusFocusedWidget();
506  bool SetFocusedWidget(WidgetID widget_index);
507 
508  EventState HandleEditBoxKey(WidgetID wid, char32_t key, uint16_t keycode);
509  virtual void InsertTextString(WidgetID wid, const char *str, bool marked, const char *caret, const char *insert_location, const char *replacement_end);
510 
511  void HandleButtonClick(WidgetID widget);
512  int GetRowFromWidget(int clickpos, WidgetID widget, int padding, int line_height = -1) const;
513 
514  void RaiseButtons(bool autoraise = false);
515 
523  template<typename... Args>
524  void SetWidgetsDisabledState(bool disab_stat, Args... widgets)
525  {
526  (SetWidgetDisabledState(widgets, disab_stat), ...);
527  }
528 
534  template<typename... Args>
535  void SetWidgetsLoweredState(bool lowered_stat, Args... widgets)
536  {
537  (SetWidgetLoweredState(widgets, lowered_stat), ...);
538  }
539 
544  template<typename... Args>
545  void RaiseWidgetsWhenLowered(Args... widgets)
546  {
547  (this->RaiseWidgetWhenLowered(widgets), ...);
548  }
549 
550  void SetWidgetDirty(WidgetID widget_index) const;
551 
552  void DrawWidgets() const;
553  void DrawViewport() const;
554  void DrawSortButtonState(WidgetID widget, SortButtonState state) const;
555  static int SortButtonWidth();
556 
558  void CloseChildWindows(WindowClass wc = WC_INVALID) const;
559  virtual void Close(int data = 0);
560  static void DeleteClosedWindows();
561 
562  void SetDirty() const;
563  void ReInit(int rx = 0, int ry = 0, bool reposition = false);
564 
566  inline bool IsShaded() const
567  {
568  return this->shade_select != nullptr && this->shade_select->shown_plane == SZSP_HORIZONTAL;
569  }
570 
571  void SetShaded(bool make_shaded);
572 
573  void ScheduleResize();
574  void ProcessScheduledResize();
575  void InvalidateData(int data = 0, bool gui_scope = true);
578 
579  /*** Event handling ***/
580 
585  virtual void OnInit() { }
586 
587  virtual void ApplyDefaults();
588 
596  virtual Point OnInitialPosition(int16_t sm_width, int16_t sm_height, int window_number);
597 
602  virtual void OnPaint()
603  {
604  this->DrawWidgets();
605  }
606 
613  virtual void DrawWidget([[maybe_unused]] const Rect &r, [[maybe_unused]] WidgetID widget) const {}
614 
627  virtual void UpdateWidgetSize([[maybe_unused]] WidgetID widget, [[maybe_unused]] Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) {}
628 
635  virtual void SetStringParameters([[maybe_unused]] WidgetID widget) const {}
636 
640  virtual void OnFocus();
641 
646  virtual void OnFocusLost(bool closing);
647 
655  virtual EventState OnKeyPress([[maybe_unused]] char32_t key, [[maybe_unused]] uint16_t keycode) { return ES_NOT_HANDLED; }
656 
657  virtual EventState OnHotkey(int hotkey);
658 
665 
666 
673  virtual void OnClick([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget, [[maybe_unused]] int click_count) {}
674 
682  virtual bool OnRightClick([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget) { return false; }
683 
689  virtual void OnHover([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget) {}
690 
697  virtual bool OnTooltip([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget, [[maybe_unused]] TooltipCloseCondition close_cond) { return false; }
698 
704  virtual void OnMouseDrag([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget) {}
705 
711  virtual void OnDragDrop([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget) {}
712 
717  virtual void OnScroll([[maybe_unused]] Point delta) {}
718 
725  virtual void OnMouseOver([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget) {}
726 
731  virtual void OnMouseWheel([[maybe_unused]] int wheel) {}
732 
733 
737  virtual void OnMouseLoop() {}
738 
742  virtual void OnGameTick() {}
743 
747  virtual void OnRealtimeTick([[maybe_unused]] uint delta_ms) {}
748 
752  virtual void OnTimeout() {}
753 
754 
759  virtual void OnResize() {}
760 
766  virtual void OnDropdownSelect([[maybe_unused]] WidgetID widget, [[maybe_unused]] int index) {}
767 
768  virtual void OnDropdownClose(Point pt, WidgetID widget, int index, bool instant_close);
769 
774  virtual void OnEditboxChanged([[maybe_unused]] WidgetID widget) {}
775 
782  virtual void OnQueryTextFinished([[maybe_unused]] std::optional<std::string> str) {}
783 
789  virtual void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) {}
790 
797  virtual void OnPlaceObject([[maybe_unused]] Point pt, [[maybe_unused]] TileIndex tile) {}
798 
805  virtual bool OnVehicleSelect([[maybe_unused]] const struct Vehicle *v) { return false; }
806 
813  virtual bool OnVehicleSelect([[maybe_unused]] VehicleList::const_iterator begin, [[maybe_unused]] VehicleList::const_iterator end) { return false; }
814 
818  virtual void OnPlaceObjectAbort() {}
819 
820 
828  virtual void OnPlaceDrag([[maybe_unused]] ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt) {}
829 
839  virtual void OnPlaceMouseUp([[maybe_unused]] ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt, [[maybe_unused]] TileIndex start_tile, [[maybe_unused]] TileIndex end_tile) {}
840 
848  virtual void OnPlacePresize([[maybe_unused]] Point pt, [[maybe_unused]] TileIndex tile) {}
849 
850  /*** End of the event handling ***/
851 
856  virtual bool IsNewGRFInspectable() const { return false; }
857 
864  virtual void ShowNewGRFInspectWindow() const { NOT_REACHED(); }
865 
870  template <bool TtoBack>
871  struct WindowIterator {
872  typedef Window *value_type;
873  typedef value_type *pointer;
874  typedef value_type &reference;
875  typedef size_t difference_type;
876  typedef std::forward_iterator_tag iterator_category;
877 
878  explicit WindowIterator(WindowList::iterator start) : it(start)
879  {
880  this->Validate();
881  }
882  explicit WindowIterator(const Window *w) : it(w->z_position) {}
883 
884  bool operator==(const WindowIterator &other) const { return this->it == other.it; }
885  bool operator!=(const WindowIterator &other) const { return !(*this == other); }
886  Window * operator*() const { return *this->it; }
887  WindowIterator & operator++() { this->Next(); this->Validate(); return *this; }
888 
889  bool IsEnd() const { return this->it == _z_windows.end(); }
890 
891  private:
892  WindowList::iterator it;
893  void Validate()
894  {
895  while (!this->IsEnd() && *this->it == nullptr) this->Next();
896  }
897  void Next()
898  {
899  if constexpr (!TtoBack) {
900  ++this->it;
901  } else if (this->it == _z_windows.begin()) {
902  this->it = _z_windows.end();
903  } else {
904  --this->it;
905  }
906  }
907  };
910 
915  template <bool Tfront>
916  struct AllWindows {
917  AllWindows() {}
918  WindowIterator<Tfront> begin()
919  {
920  if constexpr (Tfront) {
921  auto back = _z_windows.end();
922  if (back != _z_windows.begin()) --back;
923  return WindowIterator<Tfront>(back);
924  } else {
925  return WindowIterator<Tfront>(_z_windows.begin());
926  }
927  }
929  };
933 };
934 
942 template <class It, class Pred>
943 inline bool AllEqual(It begin, It end, Pred pred)
944 {
945  return std::adjacent_find(begin, end, std::not_fn(pred)) == end;
946 }
947 
954 template <class NWID>
955 inline NWID *Window::GetWidget(WidgetID widnum)
956 {
957  auto it = this->widget_lookup.find(widnum);
958  if (it == std::end(this->widget_lookup)) return nullptr;
959  NWID *nwid = dynamic_cast<NWID *>(it->second);
960  assert(nwid != nullptr);
961  return nwid;
962 }
963 
965 template <>
966 inline const NWidgetBase *Window::GetWidget<NWidgetBase>(WidgetID widnum) const
967 {
968  auto it = this->widget_lookup.find(widnum);
969  if (it == std::end(this->widget_lookup)) return nullptr;
970  return it->second;
971 }
972 
979 template <class NWID>
980 inline const NWID *Window::GetWidget(WidgetID widnum) const
981 {
982  return const_cast<Window *>(this)->GetWidget<NWID>(widnum);
983 }
984 
985 
989 class PickerWindowBase : public Window {
990 
991 public:
993  {
994  this->parent = parent;
995  }
996 
997  void Close([[maybe_unused]] int data = 0) override;
998 };
999 
1001 Window *FindWindowFromPt(int x, int y);
1002 
1003 template<typename T, std::enable_if_t<std::is_base_of<StrongTypedefBase, T>::value, int> = 0>
1005 {
1006  return BringWindowToFrontById(cls, number.base());
1007 }
1008 
1017 template <typename Wcls>
1018 Wcls *AllocateWindowDescFront(WindowDesc &desc, int window_number, bool return_existing = false)
1019 {
1020  Wcls *w = static_cast<Wcls *>(BringWindowToFrontById(desc.cls, window_number));
1021  if (w != nullptr) return return_existing ? w : nullptr;
1022  return new Wcls(desc, window_number);
1023 }
1024 
1025 void RelocateAllWindows(int neww, int newh);
1026 
1027 void GuiShowTooltips(Window *parent, StringID str, TooltipCloseCondition close_tooltip, uint paramcount = 0);
1028 
1029 /* widget.cpp */
1030 WidgetID GetWidgetFromPos(const Window *w, int x, int y);
1031 
1032 extern Point _cursorpos_drag_start;
1033 
1034 extern int _scrollbar_start_pos;
1035 extern int _scrollbar_size;
1036 extern uint8_t _scroller_click_timeout;
1037 
1038 extern bool _scrolling_viewport;
1039 extern bool _mouse_hovering;
1040 
1048 };
1050 
1051 void SetFocusedWindow(Window *w);
1052 
1053 void ScrollbarClickHandler(Window *w, NWidgetCore *nw, int x, int y);
1054 
1055 #endif /* WINDOW_GUI_H */
Window::timeout_timer
uint8_t timeout_timer
Timer value of the WF_TIMEOUT for flags.
Definition: window_gui.h:309
Window::WindowIterator
Iterator to iterate all valid Windows.
Definition: window_gui.h:871
ViewportData
Data structure for a window viewport.
Definition: window_gui.h:255
Window::SetTimeout
void SetTimeout()
Set the timeout flag of the window and initiate the timer.
Definition: window_gui.h:364
Window::OnPlaceObject
virtual void OnPlaceObject([[maybe_unused]] Point pt, [[maybe_unused]] TileIndex tile)
The user clicked some place on the map when a tile highlight mode has been set.
Definition: window_gui.h:797
WindowDesc::pref_width
int16_t pref_width
User-preferred width of the window. Zero if unset.
Definition: window_gui.h:181
Window::OnVehicleSelect
virtual bool OnVehicleSelect([[maybe_unused]] const struct Vehicle *v)
The user clicked on a vehicle while HT_VEHICLE has been set.
Definition: window_gui.h:805
Window::OnScroll
virtual void OnScroll([[maybe_unused]] Point delta)
Handle the request for (viewport) scrolling.
Definition: window_gui.h:717
WC_INVALID
@ WC_INVALID
Invalid window.
Definition: window_type.h:718
WindowDesc::default_height_trad
int16_t default_height_trad
Preferred initial height of the window (pixels at 1x zoom).
Definition: window_gui.h:192
WidgetDimensions::imgbtn
RectPadding imgbtn
Padding around image button image.
Definition: window_gui.h:36
WF_SIZING
@ WF_SIZING
Window is being resized.
Definition: window_gui.h:236
WidgetDimensions::dropdownlist
RectPadding dropdownlist
Padding of complete drop down list.
Definition: window_gui.h:53
Window::OnInitialPosition
virtual Point OnInitialPosition(int16_t sm_width, int16_t sm_height, int window_number)
Compute the initial position of the window.
Definition: window.cpp:1711
Window::SetWhiteBorder
void SetWhiteBorder()
Set the timeout flag of the window and initiate the timer.
Definition: window_gui.h:373
SortButtonState
SortButtonState
State of a sort direction button.
Definition: window_gui.h:221
HotkeyList
List of hotkeys for a window.
Definition: hotkeys.h:37
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:30
Window::~Window
virtual ~Window()
Remove window and all its child windows from the window stack.
Definition: window.cpp:1084
WidgetDimensions::scaled
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition: window_gui.h:68
Window::GetFocusedTextbuf
virtual const struct Textbuf * GetFocusedTextbuf() const
Get the current input text buffer.
Definition: window.cpp:365
WDF_CONSTRUCTION
@ WDF_CONSTRUCTION
This window is used for construction; close it whenever changing company.
Definition: window_gui.h:206
_scrolling_viewport
bool _scrolling_viewport
A viewport is being scrolled with the mouse.
Definition: window.cpp:90
Window::shade_select
NWidgetStacked * shade_select
Selection widget (NWID_SELECTION) to use for shading the window. If nullptr, window cannot shade.
Definition: window_gui.h:326
WF_SIZING_RIGHT
@ WF_SIZING_RIGHT
Window is being resized towards the right.
Definition: window_gui.h:234
WidgetDimensions::WidgetDrawDistances
WidgetDrawDistances
Distances used in drawing widgets.
Definition: window_gui.h:84
Window::ApplyDefaults
virtual void ApplyDefaults()
Read default values from WindowDesc configuration an apply them to the window.
Definition: window.cpp:194
Window::OnDropdownClose
virtual void OnDropdownClose(Point pt, WidgetID widget, int index, bool instant_close)
A dropdown window associated to this window has been closed.
Definition: window.cpp:287
ViewportDragDropSelectionProcess
ViewportDragDropSelectionProcess
Drag and drop selection process, or, what to do with an area of land when you've selected it.
Definition: viewport_type.h:111
ScrollbarClickHandler
void ScrollbarClickHandler(Window *w, NWidgetCore *nw, int x, int y)
Special handling for the scrollbar widget type.
Definition: widget.cpp:242
Window::InitializePositionSize
void InitializePositionSize(int x, int y, int min_width, int min_height)
Set the position and smallest size of the window.
Definition: window.cpp:1402
widget_type.h
Window::SetWidgetDirty
void SetWidgetDirty(WidgetID widget_index) const
Invalidate a widget, i.e.
Definition: window.cpp:551
Window::GetTextCharacterAtPosition
virtual ptrdiff_t GetTextCharacterAtPosition(const Point &pt) const
Get the character that is rendered at a position by the focused edit box.
Definition: window.cpp:409
_z_windows
WindowList _z_windows
List of windows opened at the screen sorted from the front to back.
Definition: window.cpp:57
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
WF_DISABLE_VP_SCROLL
@ WF_DISABLE_VP_SCROLL
Window does not do autoscroll,.
Definition: window_gui.h:238
Window::viewport
ViewportData * viewport
Pointer to viewport data, if present.
Definition: window_gui.h:321
vehiclelist.h
FrameFlags
FrameFlags
Flags to describe the look of the frame.
Definition: window_gui.h:24
WDP_ALIGN_TOOLBAR
@ WDP_ALIGN_TOOLBAR
Align toward the toolbar.
Definition: window_gui.h:152
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Window::OnGameTick
virtual void OnGameTick()
Called once per (game) tick.
Definition: window_gui.h:742
Window::IsNewGRFInspectable
virtual bool IsNewGRFInspectable() const
Is the data related to this window NewGRF inspectable?
Definition: window_gui.h:856
WF_STICKY
@ WF_STICKY
Window is made sticky by user.
Definition: window_gui.h:237
Window::OnFocusLost
virtual void OnFocusLost(bool closing)
The window has lost focus.
Definition: window.cpp:516
Window::Close
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
Definition: window.cpp:1047
Window::EnableWidget
void EnableWidget(WidgetID widget_index)
Sets a widget to Enabled.
Definition: window_gui.h:409
WDF_NO_FOCUS
@ WDF_NO_FOCUS
This window won't get focus/make any other window lose focus when click.
Definition: window_gui.h:208
Window::IsWidgetFocused
bool IsWidgetFocused(WidgetID widget_index) const
Check if given widget is focused within this window.
Definition: window_gui.h:429
TextColour
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition: gfx_type.h:260
WidgetDimensions::closebox
RectPadding closebox
Padding around image in closebox widget.
Definition: window_gui.h:50
Window::IsWidgetHighlighted
bool IsWidgetHighlighted(WidgetID widget_index) const
Gets the highlighted status of a widget.
Definition: window.cpp:272
Window::RaiseButtons
void RaiseButtons(bool autoraise=false)
Raise the buttons of the window.
Definition: window.cpp:525
NWidgetLeaf
Leaf widget.
Definition: widget_type.h:918
StringAlignment
StringAlignment
How to align the to-be drawn text.
Definition: gfx_type.h:344
WindowDesc::cls
WindowClass cls
Class of the window,.
Definition: window_gui.h:173
ViewportData::dest_scrollpos_y
int32_t dest_scrollpos_y
Current destination y coordinate to display (virtual screen coordinate of topleft corner of the viewp...
Definition: window_gui.h:260
SZSP_HORIZONTAL
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
Definition: widget_type.h:484
Window::OnTimeout
virtual void OnTimeout()
Called when this window's timeout has been reached.
Definition: window_gui.h:752
WidgetDimensions::hsep_wide
int hsep_wide
Wide horizontal spacing.
Definition: window_gui.h:64
Window::owner
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
Definition: window_gui.h:319
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
FR_LOWERED
@ FR_LOWERED
If set the frame is lowered and the background colour brighter (ie. buttons when pressed)
Definition: window_gui.h:28
WidgetDimensions::vsep_picker
int vsep_picker
Vertical spacing of picker-window widgets.
Definition: window_gui.h:59
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:244
ViewportPlaceMethod
ViewportPlaceMethod
Viewport place method (type of highlighted area and placed objects)
Definition: viewport_type.h:92
Window::OnPlacePresize
virtual void OnPlacePresize([[maybe_unused]] Point pt, [[maybe_unused]] TileIndex tile)
The user moves over the map when a tile highlight mode has been set when the special mouse mode has b...
Definition: window_gui.h:848
Window::GetCaretPosition
virtual Point GetCaretPosition() const
Get the current caret position if an edit box has the focus.
Definition: window.cpp:378
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:696
Window::GetScrollbar
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
Definition: window.cpp:314
FR_TRANSPARENT
@ FR_TRANSPARENT
Makes the background transparent if set.
Definition: window_gui.h:26
Window::OnHotkey
virtual EventState OnHotkey(int hotkey)
A hotkey has been pressed.
Definition: window.cpp:565
Window::nested_focus
const NWidgetCore * nested_focus
Currently focused nested widget, or nullptr if no nested widget has focus.
Definition: window_gui.h:322
QueryString
Data stored about a string that can be modified in the GUI.
Definition: querystring_gui.h:20
Window::scheduled_invalidation_data
std::vector< int > scheduled_invalidation_data
Data of scheduled OnInvalidateData() calls.
Definition: window_gui.h:285
Window::OnEditboxChanged
virtual void OnEditboxChanged([[maybe_unused]] WidgetID widget)
The text in an editbox has been edited.
Definition: window_gui.h:774
Window::OnCTRLStateChange
virtual EventState OnCTRLStateChange()
The state of the control key has changed.
Definition: window_gui.h:664
Window::ProcessScheduledInvalidations
void ProcessScheduledInvalidations()
Process all scheduled invalidations.
Definition: window.cpp:3161
Window::OnMouseDrag
virtual void OnMouseDrag([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget)
An 'object' is being dragged at the provided position, highlight the target if possible.
Definition: window_gui.h:704
WindowDesc::default_pos
WindowPosition default_pos
Preferred position of the window.
Definition: window_gui.h:172
WidgetDimensions::shadebox
RectPadding shadebox
Padding around image in shadebox widget.
Definition: window_gui.h:45
WindowDesc
High level window description.
Definition: window_gui.h:162
WidgetID
int WidgetID
Widget ID.
Definition: window_type.h:18
Window::OnQueryTextFinished
virtual void OnQueryTextFinished([[maybe_unused]] std::optional< std::string > str)
The query window opened from this window has closed.
Definition: window_gui.h:782
SetFocusedWindow
void SetFocusedWindow(Window *w)
Set the window that has the focus.
Definition: window.cpp:422
WidgetDimensions::sparse_resize
RectPadding sparse_resize
Padding used for a resizeable 'sparse' widget window, usually containing multiple frames.
Definition: window_gui.h:57
WF_SIZING_LEFT
@ WF_SIZING_LEFT
Window is being resized towards the left.
Definition: window_gui.h:235
Window::SetShaded
void SetShaded(bool make_shaded)
Set the shaded state of the window to make_shaded.
Definition: window.cpp:995
RectPadding
Padding dimensions to apply to each side of a Rect.
Definition: geometry_type.hpp:51
Viewport
Data structure for viewport, display of a part of the world.
Definition: viewport_type.h:22
_mouse_hovering
bool _mouse_hovering
The mouse is hovering over the same point.
Definition: window.cpp:91
Window::UnfocusFocusedWidget
void UnfocusFocusedWidget()
Makes no widget on this window have focus.
Definition: window.cpp:470
WDP_AUTO
@ WDP_AUTO
Find a place automatically.
Definition: window_gui.h:150
Window::IsWidgetGloballyFocused
bool IsWidgetGloballyFocused(WidgetID widget_index) const
Check if given widget has user input focus.
Definition: window_gui.h:440
WindowDesc::ini_key
const char * ini_key
Key to store window defaults in openttd.cfg. nullptr if nothing shall be stored.
Definition: window_gui.h:175
Window::resize
ResizeInfo resize
Resize information.
Definition: window_gui.h:317
WindowDesc::flags
uint32_t flags
Flags.
Definition: window_gui.h:176
WSM_PRESIZE
@ WSM_PRESIZE
Presizing mode (docks, tunnels).
Definition: window_gui.h:1046
WidgetDimensions::matrix
RectPadding matrix
Padding of WWT_MATRIX items.
Definition: window_gui.h:44
WindowNumber
int32_t WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:731
WidgetDimensions::picker
RectPadding picker
Padding for a picker (dock, station, etc) window.
Definition: window_gui.h:55
Window::InitNested
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition: window.cpp:1746
Window::ProcessHighlightedInvalidations
void ProcessHighlightedInvalidations()
Process all invalidation of highlighted widgets.
Definition: window.cpp:3173
Window::OnMouseWheel
virtual void OnMouseWheel([[maybe_unused]] int wheel)
The mouse wheel has been turned.
Definition: window_gui.h:731
Window::nested_root
std::unique_ptr< NWidgetBase > nested_root
Root of the nested tree.
Definition: window_gui.h:324
Window::ScheduleResize
void ScheduleResize()
Mark this window as resized and in need of OnResize() event.
Definition: window.cpp:3126
Window::HandleButtonClick
void HandleButtonClick(WidgetID widget)
Do all things to make a button look clicked and mark it to be unclicked in a few ticks.
Definition: window.cpp:590
Window::height
int height
Height of the window (number of pixels down in y direction)
Definition: window_gui.h:315
WindowDesc::source_location
const std::source_location source_location
Source location of this definition.
Definition: window_gui.h:171
WF_CENTERED
@ WF_CENTERED
Window is centered and shall stay centered after ReInit.
Definition: window_gui.h:241
WF_WHITE_BORDER
@ WF_WHITE_BORDER
Window white border counter bit mask.
Definition: window_gui.h:239
AllocateWindowDescFront
Wcls * AllocateWindowDescFront(WindowDesc &desc, int window_number, bool return_existing=false)
Open a new window.
Definition: window_gui.h:1018
ViewportData::dest_scrollpos_x
int32_t dest_scrollpos_x
Current destination x coordinate to display (virtual screen coordinate of topleft corner of the viewp...
Definition: window_gui.h:259
WindowDesc::pref_height
int16_t pref_height
User-preferred height of the window. Zero if unset.
Definition: window_gui.h:182
SpecialMouseMode
SpecialMouseMode
Mouse modes.
Definition: window_gui.h:1042
Window::SetDirty
void SetDirty() const
Mark entire window as dirty (in need of re-paint)
Definition: window.cpp:940
WidgetDimensions::hscrollbar
RectPadding hscrollbar
Padding inside horizontal scrollbar buttons.
Definition: window_gui.h:39
GetToolbarAlignedWindowPosition
Point GetToolbarAlignedWindowPosition(int window_width)
Computer the position of the top-left corner of a window to be opened right under the toolbar.
Definition: window.cpp:1627
Window::OnDragDrop
virtual void OnDragDrop([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget)
A dragged 'object' has been released.
Definition: window_gui.h:711
Window::OnFocus
virtual void OnFocus()
The window has gained focus.
Definition: window.cpp:508
Window::OnPlaceMouseUp
virtual void OnPlaceMouseUp([[maybe_unused]] ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt, [[maybe_unused]] TileIndex start_tile, [[maybe_unused]] TileIndex end_tile)
The user has dragged over the map when the tile highlight mode has been set.
Definition: window_gui.h:839
ZeroedMemoryAllocator
Base class that provides memory initialization on dynamically created objects.
Definition: alloc_type.hpp:85
ES_NOT_HANDLED
@ ES_NOT_HANDLED
The passed event is not handled.
Definition: window_type.h:739
NWidgetBase
Baseclass for nested widgets.
Definition: widget_type.h:146
PickerWindowBase::Close
void Close([[maybe_unused]] int data=0) override
Hide the window and all its child windows, and mark them for a later deletion.
Definition: window.cpp:3511
Window::DisableAllWidgetHighlight
void DisableAllWidgetHighlight()
Disable the highlighted status of all widgets.
Definition: window.cpp:224
ViewportData::scrollpos_y
int32_t scrollpos_y
Currently shown y coordinate (virtual screen coordinate of topleft corner of the viewport).
Definition: window_gui.h:258
WindowDesc::GetDefaultHeight
int16_t GetDefaultHeight() const
Determine default height of window.
Definition: window.cpp:147
Window::OnPlaceDrag
virtual void OnPlaceDrag([[maybe_unused]] ViewportPlaceMethod select_method, [[maybe_unused]] ViewportDragDropSelectionProcess select_proc, [[maybe_unused]] Point pt)
The user is dragging over the map when the tile highlight mode has been set.
Definition: window_gui.h:828
Window::OnTooltip
virtual bool OnTooltip([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget, [[maybe_unused]] TooltipCloseCondition close_cond)
Event to display a custom tooltip.
Definition: window_gui.h:697
WindowDesc::WindowDesc
WindowDesc(WindowPosition default_pos, const char *ini_key, int16_t def_width_trad, int16_t def_height_trad, WindowClass window_class, WindowClass parent_class, uint32_t flags, const std::span< const NWidgetPart > nwid_parts, HotkeyList *hotkeys=nullptr, const std::source_location location=std::source_location::current())
Window description constructor.
Definition: window.cpp:105
Window::ReInit
void ReInit(int rx=0, int ry=0, bool reposition=false)
Re-initialize a window, and optionally change its size.
Definition: window.cpp:952
Window::DeleteClosedWindows
static void DeleteClosedWindows()
Delete all closed windows.
Definition: window.cpp:65
Window::parent
Window * parent
Parent window.
Definition: window_gui.h:331
Window::LowerWidget
void LowerWidget(WidgetID widget_index)
Marks a widget as lowered.
Definition: window_gui.h:469
Window::left
int left
x position of left edge of the window
Definition: window_gui.h:312
Window::flags
WindowFlags flags
Window flags.
Definition: window_gui.h:303
DrawFrameRect
void DrawFrameRect(int left, int top, int right, int bottom, Colours colour, FrameFlags flags)
Draw frame rectangle.
Definition: widget.cpp:281
Window::window_desc
WindowDesc & window_desc
Window description.
Definition: window_gui.h:302
WF_TIMEOUT
@ WF_TIMEOUT
Window timeout counter.
Definition: window_gui.h:231
Textbuf::caret
bool caret
is the caret ("_") visible or not
Definition: textbuf_type.h:38
Window::Window
Window(WindowDesc &desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
Definition: window.cpp:1756
GuiShowTooltips
void GuiShowTooltips(Window *parent, StringID str, TooltipCloseCondition close_tooltip, uint paramcount=0)
Shows a tooltip.
Definition: misc_gui.cpp:760
WindowClass
WindowClass
Window classes.
Definition: window_type.h:44
Window::ShowNewGRFInspectWindow
virtual void ShowNewGRFInspectWindow() const
Show the NewGRF inspection window.
Definition: window_gui.h:864
Window::GetQueryString
const QueryString * GetQueryString(WidgetID widnum) const
Return the querystring associated to a editbox.
Definition: window.cpp:334
VehicleID
uint32_t VehicleID
The type all our vehicle IDs have.
Definition: vehicle_type.h:16
WDF_MODAL
@ WDF_MODAL
The window is a modal child of some other window, meaning the parent is 'inactive'.
Definition: window_gui.h:207
TIMEOUT_DURATION
static const int TIMEOUT_DURATION
The initial timeout value for WF_TIMEOUT.
Definition: window_gui.h:245
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
WF_HIGHLIGHTED
@ WF_HIGHLIGHTED
Window has a widget that has a highlight.
Definition: window_gui.h:240
WindowDefaultFlag
WindowDefaultFlag
Window default widget/window handling flags.
Definition: window_gui.h:205
Window::IsWidgetDisabled
bool IsWidgetDisabled(WidgetID widget_index) const
Gets the enabled/disabled status of a widget.
Definition: window_gui.h:419
WDF_NO_CLOSE
@ WDF_NO_CLOSE
This window can't be interactively closed.
Definition: window_gui.h:209
WSM_DRAGDROP
@ WSM_DRAGDROP
Drag&drop an object.
Definition: window_gui.h:1044
WidgetDimensions::debugbox
RectPadding debugbox
Padding around image in debugbox widget.
Definition: window_gui.h:47
Window::OnInit
virtual void OnInit()
Notification that the nested widget tree gets initialized.
Definition: window_gui.h:585
WSM_SIZING
@ WSM_SIZING
Sizing mode.
Definition: window_gui.h:1045
Window::unshaded_size
Dimension unshaded_size
Last known unshaded size (only valid while shaded).
Definition: window_gui.h:327
WindowDesc::SaveToConfig
static void SaveToConfig()
Save all WindowDesc settings to _windows_file.
Definition: window.cpp:177
string_type.h
Window::window_number
WindowNumber window_number
Window number within the window class.
Definition: window_gui.h:305
Window::SetFocusedWidget
bool SetFocusedWidget(WidgetID widget_index)
Set focus within this window to the given widget.
Definition: window.cpp:486
ResizeInfo::step_height
uint step_height
Step-size of height resize changes.
Definition: window_gui.h:217
WidgetDimensions::inset
RectPadding inset
Padding inside inset container.
Definition: window_gui.h:37
WindowFlags
WindowFlags
Window flags.
Definition: window_gui.h:230
Window::InvalidateData
void InvalidateData(int data=0, bool gui_scope=true)
Mark this window's data as invalid (in need of re-computing)
Definition: window.cpp:3148
Window::InsertTextString
virtual void InsertTextString(WidgetID wid, const char *str, bool marked, const char *caret, const char *insert_location, const char *replacement_end)
Insert a text string at the cursor position into the edit box widget.
Definition: window.cpp:2631
NWidgetStacked
Stacked widgets, widgets all occupying the same space in the window.
Definition: widget_type.h:500
Window::SetWidgetLoweredState
void SetWidgetLoweredState(WidgetID widget_index, bool lowered_stat)
Sets the lowered/raised status of a widget.
Definition: window_gui.h:450
Window::AllWindows
Iterable ensemble of all valid Windows.
Definition: window_gui.h:916
Window::scheduled_resize
bool scheduled_resize
Set if window has been resized.
Definition: window_gui.h:286
WidgetDimensions::unscaled
static const WidgetDimensions unscaled
Unscaled widget dimensions.
Definition: window_gui.h:67
Window::SetWidgetDisabledState
void SetWidgetDisabledState(WidgetID widget_index, bool disab_stat)
Sets the enabled/disabled status of a widget.
Definition: window_gui.h:390
Window::DrawWidget
virtual void DrawWidget([[maybe_unused]] const Rect &r, [[maybe_unused]] WidgetID widget) const
Draw the contents of a nested widget.
Definition: window_gui.h:613
Window::IsWidgetLowered
bool IsWidgetLowered(WidgetID widget_index) const
Gets the lowered state of a widget.
Definition: window_gui.h:500
Window::querystrings
std::map< WidgetID, QueryString * > querystrings
QueryString associated to WWT_EDITBOX widgets.
Definition: window_gui.h:323
SBS_DOWN
@ SBS_DOWN
Sort ascending.
Definition: window_gui.h:223
Window::DrawSortButtonState
void DrawSortButtonState(WidgetID widget, SortButtonState state) const
Draw a sort button's up or down arrow symbol.
Definition: widget.cpp:763
vehicle_type.h
Window::SetStringParameters
virtual void SetStringParameters([[maybe_unused]] WidgetID widget) const
Initialize string parameters for a widget.
Definition: window_gui.h:635
Window::OnMouseLoop
virtual void OnMouseLoop()
Called for every mouse loop run, which is at least once per (game) tick.
Definition: window_gui.h:737
Window::CreateNestedTree
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition: window.cpp:1723
WidgetDimensions::dropdowntext
RectPadding dropdowntext
Padding of drop down list item.
Definition: window_gui.h:52
WidgetDimensions::vsep_wide
int vsep_wide
Wide vertical spacing.
Definition: window_gui.h:62
ResizeInfo::step_width
uint step_width
Step-size of width resize changes.
Definition: window_gui.h:216
Window::IsShaded
bool IsShaded() const
Is window shaded currently?
Definition: window_gui.h:566
Window::OnRealtimeTick
virtual void OnRealtimeTick([[maybe_unused]] uint delta_ms)
Called periodically.
Definition: window_gui.h:747
Window::OnPlaceObjectAbort
virtual void OnPlaceObjectAbort()
The user cancelled a tile highlight mode that has been set.
Definition: window_gui.h:818
WidgetLookup
std::map< WidgetID, class NWidgetBase * > WidgetLookup
Lookup between widget IDs and NWidget objects.
Definition: widget_type.h:138
WindowDesc::default_width_trad
int16_t default_width_trad
Preferred initial width of the window (pixels at 1x zoom).
Definition: window_gui.h:191
ResizeInfo
Data structure for resizing a window.
Definition: window_gui.h:215
Window::DisableWidget
void DisableWidget(WidgetID widget_index)
Sets a widget to disabled.
Definition: window_gui.h:400
Window::closed_windows
static std::vector< Window * > closed_windows
List of closed windows to delete.
Definition: window_gui.h:278
Window::CloseChildWindows
void CloseChildWindows(WindowClass wc=WC_INVALID) const
Close all children a window might have in a head-recursive manner.
Definition: window.cpp:1035
WidgetDimensions::hsep_indent
int hsep_indent
Width of identation for tree layouts.
Definition: window_gui.h:65
tile_type.h
Window::UpdateWidgetSize
virtual void UpdateWidgetSize([[maybe_unused]] WidgetID widget, [[maybe_unused]] Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize)
Update size and resize step of a widget in the window.
Definition: window_gui.h:627
Window::GetTextBoundingRect
virtual Rect GetTextBoundingRect(const char *from, const char *to) const
Get the bounding rectangle for a text range if an edit box has the focus.
Definition: window.cpp:394
Window::OnInvalidateData
virtual void OnInvalidateData([[maybe_unused]] int data=0, [[maybe_unused]] bool gui_scope=true)
Some data on this window has become invalid.
Definition: window_gui.h:789
WidgetDimensions::vsep_sparse
int vsep_sparse
Normal vertical spacing for 'sparse' widget window.
Definition: window_gui.h:61
Window::OnPaint
virtual void OnPaint()
The window must be repainted.
Definition: window_gui.h:602
WidgetDimensions::vsep_normal
int vsep_normal
Normal vertical spacing.
Definition: window_gui.h:60
ViewportData::scrollpos_x
int32_t scrollpos_x
Currently shown x coordinate (virtual screen coordinate of topleft corner of the viewport).
Definition: window_gui.h:257
EventState
EventState
State of handling an event.
Definition: window_type.h:737
WindowDesc::pref_sticky
bool pref_sticky
Preferred stickyness.
Definition: window_gui.h:180
Window::mouse_capture_widget
WidgetID mouse_capture_widget
ID of current mouse capture widget (e.g. dragged scrollbar). -1 if no widget has mouse capture.
Definition: window_gui.h:329
WF_DRAGGING
@ WF_DRAGGING
Window is being dragged.
Definition: window_gui.h:233
WidgetDimensions::vscrollbar
RectPadding vscrollbar
Padding inside vertical scrollbar buttons.
Definition: window_gui.h:38
WidgetDimensions::modalpopup
RectPadding modalpopup
Spacing for popup warning/information windows.
Definition: window_gui.h:54
WSM_DRAGGING
@ WSM_DRAGGING
Dragging mode (trees).
Definition: window_gui.h:1047
WidgetDimensions::stickybox
RectPadding stickybox
Padding around image in stickybox widget.
Definition: window_gui.h:46
Window::window_class
WindowClass window_class
Window class.
Definition: window_gui.h:304
Window::OnRightClick
virtual bool OnRightClick([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget)
A click with the right mouse button has been made on the window.
Definition: window_gui.h:682
Window::FinishInitNested
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition: window.cpp:1733
Window::widget_lookup
WidgetLookup widget_lookup
Indexed access to the nested widget tree. Do not access directly, use Window::GetWidget() instead.
Definition: window_gui.h:325
Window::OnDropdownSelect
virtual void OnDropdownSelect([[maybe_unused]] WidgetID widget, [[maybe_unused]] int index)
A dropdown option associated to this window has been selected.
Definition: window_gui.h:766
PickerWindowBase
Base class for windows opened from a toolbar.
Definition: window_gui.h:989
_special_mouse_mode
SpecialMouseMode _special_mouse_mode
Mode of the mouse.
Definition: window.cpp:93
WidgetDimensions::fullbevel
RectPadding fullbevel
Always-scaled bevel thickness.
Definition: window_gui.h:41
Window::UpdateQueryStringSize
void UpdateQueryStringSize()
Update size of all QueryStrings of this window.
Definition: window.cpp:354
Window::top
int top
y position of top edge of the window
Definition: window_gui.h:313
Window::DrawViewport
void DrawViewport() const
Draw the viewport of this window.
Definition: viewport.cpp:1829
DECLARE_ENUM_AS_BIT_SET
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) enum CompanyManagerFaceVariable
Bitgroups of the CompanyManagerFace variable.
Definition: company_manager_face.h:29
Window::SetWidgetsLoweredState
void SetWidgetsLoweredState(bool lowered_stat, Args... widgets)
Sets the lowered/raised status of a list of widgets.
Definition: window_gui.h:535
Window::RaiseWidget
void RaiseWidget(WidgetID widget_index)
Marks a widget as raised.
Definition: window_gui.h:478
NWidgetCore::index
const WidgetID index
Index of the nested widget (-1 means 'not used').
Definition: widget_type.h:394
WHITE_BORDER_DURATION
static const int WHITE_BORDER_DURATION
The initial timeout value for WF_WHITE_BORDER.
Definition: window_gui.h:246
Window::RaiseWidgetWhenLowered
void RaiseWidgetWhenLowered(WidgetID widget_index)
Marks a widget as raised and dirty (redraw), when it is marked as lowered.
Definition: window_gui.h:487
Window::OnHover
virtual void OnHover([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget)
The mouse is hovering over a widget in the window, perform an action for it.
Definition: window_gui.h:689
ViewportData::follow_vehicle
VehicleID follow_vehicle
VehicleID to follow if following a vehicle, INVALID_VEHICLE otherwise.
Definition: window_gui.h:256
Window::width
int width
width of the window (number of pixels to the right in x direction)
Definition: window_gui.h:314
WindowDesc::LoadFromConfig
static void LoadFromConfig()
Load all WindowDesc settings from _windows_file.
Definition: window.cpp:155
RelocateAllWindows
void RelocateAllWindows(int neww, int newh)
Relocate all windows to fit the new size of the game application screen.
Definition: window.cpp:3440
WDP_MANUAL
@ WDP_MANUAL
Manually align the window (so no automatic location finding)
Definition: window_gui.h:149
Window::SortButtonWidth
static int SortButtonWidth()
Get width of up/down arrow of sort button state.
Definition: widget.cpp:780
WidgetDimensions::resizebox
RectPadding resizebox
Padding around image in resizebox widget.
Definition: window_gui.h:49
FR_DARKENED
@ FR_DARKENED
If set the background is darker, allows for lowered frames with normal background colour when used wi...
Definition: window_gui.h:29
Window::GetRowFromWidget
int GetRowFromWidget(int clickpos, WidgetID widget, int padding, int line_height=-1) const
Compute the row of a widget that a user clicked in.
Definition: window.cpp:213
Window::scale
int scale
Scale of this window – used to determine how to resize.
Definition: window_gui.h:307
WidgetDimensions::bevel
RectPadding bevel
Bevel thickness, affected by "scaled bevels" game option.
Definition: window_gui.h:40
Window::RaiseWidgetsWhenLowered
void RaiseWidgetsWhenLowered(Args... widgets)
Raises the widgets and sets widgets dirty that are lowered.
Definition: window_gui.h:545
WidgetDimensions::frametext
RectPadding frametext
Padding inside frame with text.
Definition: window_gui.h:43
FontSize
FontSize
Available font sizes.
Definition: gfx_type.h:208
WindowDesc::parent_cls
WindowClass parent_cls
Class of the parent window.
Definition: window_gui.h:174
WindowDesc::nwid_parts
const std::span< const NWidgetPart > nwid_parts
Span of nested widget parts describing the window.
Definition: window_gui.h:177
Window
Data structure for an opened window.
Definition: window_gui.h:276
viewport_type.h
Window::DrawWidgets
void DrawWidgets() const
Paint all widgets of a window.
Definition: widget.cpp:731
FindWindowFromPt
Window * FindWindowFromPt(int x, int y)
Do a search for a window at specific coordinates.
Definition: window.cpp:1768
AllEqual
bool AllEqual(It begin, It end, Pred pred)
Generic helper function that checks if all elements of the range are equal with respect to the given ...
Definition: window_gui.h:943
Window::OnMouseOver
virtual void OnMouseOver([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget)
The mouse is currently moving over the window or has just moved outside of the window.
Definition: window_gui.h:725
SBS_UP
@ SBS_UP
Sort descending.
Definition: window_gui.h:224
SBS_OFF
@ SBS_OFF
Do not sort (with this button).
Definition: window_gui.h:222
Window::SetWidgetHighlight
void SetWidgetHighlight(WidgetID widget_index, TextColour highlighted_colour)
Sets the highlighted status of a widget.
Definition: window.cpp:242
NWidgetCore
Base class for a 'real' widget.
Definition: widget_type.h:372
WindowDesc::GetDefaultWidth
int16_t GetDefaultWidth() const
Determine default width of window.
Definition: window.cpp:137
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:75
Window::ToggleWidgetLoweredState
void ToggleWidgetLoweredState(WidgetID widget_index)
Invert the lowered/raised status of a widget.
Definition: window_gui.h:459
WidgetDimensions::defsizebox
RectPadding defsizebox
Padding around image in defsizebox widget.
Definition: window_gui.h:48
Window::HandleEditBoxKey
EventState HandleEditBoxKey(WidgetID wid, char32_t key, uint16_t keycode)
Process keypress for editbox widget.
Definition: window.cpp:2473
Window::SetWidgetsDisabledState
void SetWidgetsDisabledState(bool disab_stat, Args... widgets)
Sets the enabled/disabled status of a list of widgets.
Definition: window_gui.h:524
Window::OnResize
virtual void OnResize()
Called after the window got resized.
Definition: window_gui.h:759
Window::OnVehicleSelect
virtual bool OnVehicleSelect([[maybe_unused]] VehicleList::const_iterator begin, [[maybe_unused]] VehicleList::const_iterator end)
The user clicked on a vehicle while HT_VEHICLE has been set.
Definition: window_gui.h:813
WindowDesc::hotkeys
HotkeyList * hotkeys
Hotkeys for the window.
Definition: window_gui.h:178
NWidgetStacked::shown_plane
int shown_plane
Plane being displayed (for NWID_SELECTION only).
Definition: widget_type.h:514
GetWidgetFromPos
WidgetID GetWidgetFromPos(const Window *w, int x, int y)
Returns the index for the widget located at the given position relative to the window.
Definition: widget.cpp:266
WidgetDimensions::framerect
RectPadding framerect
Standard padding inside many panels.
Definition: window_gui.h:42
WidgetDimensions::hsep_normal
int hsep_normal
Normal horizontal spacing.
Definition: window_gui.h:63
WindowPosition
WindowPosition
How do we the window to be placed?
Definition: window_gui.h:148
Window::OnClick
virtual void OnClick([[maybe_unused]] Point pt, [[maybe_unused]] WidgetID widget, [[maybe_unused]] int click_count)
A click with the left mouse button has been made on the window.
Definition: window_gui.h:673
WDP_CENTER
@ WDP_CENTER
Center the window.
Definition: window_gui.h:151
company_type.h
WidgetDimensions
Definition: window_gui.h:34
WidgetDimensions::sparse
RectPadding sparse
Padding used for 'sparse' widget window, usually containing multiple frames.
Definition: window_gui.h:56
NWidgetCore::SetDisabled
void SetDisabled(bool disabled)
Disable (grey-out) or enable the widget.
Definition: widget_type.h:445
Window::white_border_timer
uint8_t white_border_timer
Timer value of the WF_WHITE_BORDER for flags.
Definition: window_gui.h:310
Window::OnKeyPress
virtual EventState OnKeyPress([[maybe_unused]] char32_t key, [[maybe_unused]] uint16_t keycode)
A key has been pressed.
Definition: window_gui.h:655
WSM_NONE
@ WSM_NONE
No special mouse mode.
Definition: window_gui.h:1043
Window::InitializeData
void InitializeData(WindowNumber window_number)
Initializes the data (except the position and initial size) of a new Window.
Definition: window.cpp:1364
FR_BORDERONLY
@ FR_BORDERONLY
Draw border only, no background.
Definition: window_gui.h:27
Window::FindChildWindow
Window * FindChildWindow(WindowClass wc=WC_INVALID) const
Find the Window whose parent pointer points to this window.
Definition: window.cpp:1022
Window::FindWindowPlacementAndResize
virtual void FindWindowPlacementAndResize(int def_width, int def_height)
Resize window towards the default size.
Definition: window.cpp:1420
WidgetDimensions::captiontext
RectPadding captiontext
Padding for text within caption widget.
Definition: window_gui.h:51
Textbuf
Helper/buffer for input fields.
Definition: textbuf_type.h:30
BringWindowToFrontById
Window * BringWindowToFrontById(WindowClass cls, WindowNumber number)
Find a window and make it the relative top-window on the screen.
Definition: window.cpp:1223
DrawCaption
void DrawCaption(const Rect &r, Colours colour, Owner owner, TextColour text_colour, StringID str, StringAlignment align, FontSize fs)
Draw a caption bar.
Definition: widget.cpp:679
Window::GetWidget
const NWID * GetWidget(WidgetID widnum) const
Get the nested widget with number widnum from the nested widget tree.
Definition: window_gui.h:980
Window::ProcessScheduledResize
void ProcessScheduledResize()
Process scheduled OnResize() event.
Definition: window.cpp:3134