OpenTTD Source  20240915-master-g3784a3d3d6
widget_type.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 WIDGET_TYPE_H
11 #define WIDGET_TYPE_H
12 
13 #include "core/alloc_type.hpp"
14 #include "core/bitmath_func.hpp"
15 #include "core/math_func.hpp"
16 #include "strings_type.h"
17 #include "gfx_type.h"
18 #include "window_type.h"
19 
22  /* Number of column bits of the WWT_MATRIX widget data. */
25 
26  /* Number of row bits of the WWT_MATRIX widget data. */
29 };
30 
37 };
38 
43 };
44 
48 enum WidgetType {
49  /* Window widget types. */
51 
64 
69 
75 
76  /* Nested widget types. */
88 
89  /* Nested widget part types. */
104 
107 
108  /* Pushable window widget types. */
109  WWT_MASK = 0x7F,
110 
111  WWB_PUSHBUTTON = 1 << 7,
112 
113  WWT_PUSHBTN = WWT_PANEL | WWB_PUSHBUTTON,
114  WWT_PUSHTXTBTN = WWT_TEXTBTN | WWB_PUSHBUTTON,
115  WWT_PUSHIMGBTN = WWT_IMGBTN | WWB_PUSHBUTTON,
116  WWT_PUSHARROWBTN = WWT_ARROWBTN | WWB_PUSHBUTTON,
117  NWID_PUSHBUTTON_DROPDOWN = NWID_BUTTON_DROPDOWN | WWB_PUSHBUTTON,
118 };
119 
124 };
125 
126 enum class AspectFlags : uint8_t {
127  ResizeX = 1U << 0,
128  ResizeY = 1U << 1,
129  ResizeXY = ResizeX | ResizeY,
130 };
131 DECLARE_ENUM_AS_BIT_SET(AspectFlags)
132 
133 /* Forward declarations. */
134 class NWidgetCore;
135 class Scrollbar;
136 
138 using WidgetLookup = std::map<WidgetID, class NWidgetBase *>;
139 
147 public:
149 
150  void ApplyAspectRatio();
151  virtual void AdjustPaddingForZoom();
152  virtual void SetupSmallestSize(Window *w) = 0;
153  virtual void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) = 0;
154 
155  virtual void FillWidgetLookup(WidgetLookup &widget_lookup) = 0;
156 
157  virtual NWidgetCore *GetWidgetFromPos(int x, int y) = 0;
159 
165  template <class NWID>
167  {
168  for (NWidgetBase *nwid_parent = this->parent; nwid_parent != nullptr; nwid_parent = nwid_parent->parent) {
169  if (NWID *nwid = dynamic_cast<NWID *>(nwid_parent); nwid != nullptr) return nwid;
170  }
171  return nullptr;
172  }
173 
179  template <class NWID>
180  const NWID *GetParentWidget() const
181  {
182  for (const NWidgetBase *nwid_parent = this->parent; nwid_parent != nullptr; nwid_parent = nwid_parent->parent) {
183  if (const NWID *nwid = dynamic_cast<const NWID *>(nwid_parent); nwid != nullptr) return nwid;
184  }
185  return nullptr;
186  }
187 
188  virtual bool IsHighlighted() const { return false; }
189  virtual TextColour GetHighlightColour() const { return TC_INVALID; }
190  virtual void SetHighlighted([[maybe_unused]] TextColour highlight_colour) {}
191 
199  inline void SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
200  {
201  this->uz_padding.top = top;
202  this->uz_padding.right = right;
203  this->uz_padding.bottom = bottom;
204  this->uz_padding.left = left;
205  this->AdjustPaddingForZoom();
206  }
207 
212  inline void SetPadding(const RectPadding &padding)
213  {
214  this->uz_padding = padding;
215  this->AdjustPaddingForZoom();
216  }
217 
218  inline uint GetHorizontalStepSize(SizingType sizing) const;
219  inline uint GetVerticalStepSize(SizingType sizing) const;
220 
221  virtual void Draw(const Window *w) = 0;
222  virtual void SetDirty(const Window *w) const;
223 
224  Rect GetCurrentRect() const
225  {
226  Rect r;
227  r.left = this->pos_x;
228  r.top = this->pos_y;
229  r.right = this->pos_x + this->current_x - 1;
230  r.bottom = this->pos_y + this->current_y - 1;
231  return r;
232  }
233 
235  uint fill_x;
236  uint fill_y;
237  uint resize_x;
238  uint resize_y;
239  /* Size of the widget in the smallest window possible.
240  * Computed by #SetupSmallestSize() followed by #AssignSizePosition().
241  */
242  uint smallest_x;
243  uint smallest_y;
244  /* Current widget size (that is, after resizing). */
245  uint current_x;
246  uint current_y;
247  float aspect_ratio = 0;
248  AspectFlags aspect_flags = AspectFlags::ResizeX;
249 
250  int pos_x;
251  int pos_y;
252 
255 
257 
258 protected:
259  inline void StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height);
260 };
261 
267 {
268  return (sizing == ST_RESIZE) ? this->resize_x : this->fill_x;
269 }
270 
276 {
277  return (sizing == ST_RESIZE) ? this->resize_y : this->fill_y;
278 }
279 
288 inline void NWidgetBase::StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height)
289 {
290  this->pos_x = x;
291  this->pos_y = y;
292  if (sizing == ST_SMALLEST) {
293  this->smallest_x = given_width;
294  this->smallest_y = given_height;
295  }
296  this->current_x = given_width;
297  this->current_y = given_height;
298 }
299 
300 
306 public:
307  NWidgetResizeBase(WidgetType tp, uint fill_x, uint fill_y);
308 
309  void AdjustPaddingForZoom() override;
310  void SetMinimalSize(uint min_x, uint min_y);
311  void SetMinimalSizeAbsolute(uint min_x, uint min_y);
312  void SetMinimalTextLines(uint8_t min_lines, uint8_t spacing, FontSize size);
313  void SetFill(uint fill_x, uint fill_y);
314  void SetResize(uint resize_x, uint resize_y);
315  void SetAspect(float ratio, AspectFlags flags = AspectFlags::ResizeX);
316  void SetAspect(int x_ratio, int y_ratio, AspectFlags flags = AspectFlags::ResizeX);
317 
318  bool UpdateMultilineWidgetSize(const std::string &str, int max_lines);
319  bool UpdateSize(uint min_x, uint min_y);
320  bool UpdateVerticalSize(uint min_y);
321 
322  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
323 
324  uint min_x;
325  uint min_y;
326 
327  bool absolute;
328  uint uz_min_x;
329  uint uz_min_y;
330 
331  uint8_t uz_text_lines;
332  uint8_t uz_text_spacing;
334 };
335 
338  /* Generic. */
341  /* Viewport widget. */
345  /* Button dropdown widget. */
347  /* Scrollbar widget. */
350  /* Generic. */
353 
365 };
367 
368 
373 public:
374  NWidgetCore(WidgetType tp, Colours colour, WidgetID index, uint fill_x, uint fill_y, uint32_t widget_data, StringID tool_tip);
375 
376  void SetDataTip(uint32_t widget_data, StringID tool_tip);
377  void SetToolTip(StringID tool_tip);
378  void SetTextStyle(TextColour colour, FontSize size);
379  void SetAlignment(StringAlignment align);
380 
381  inline void SetLowered(bool lowered);
382  inline bool IsLowered() const;
383  inline void SetDisabled(bool disabled);
384  inline bool IsDisabled() const;
385 
386  void FillWidgetLookup(WidgetLookup &widget_lookup) override;
387  NWidgetCore *GetWidgetFromPos(int x, int y) override;
388  bool IsHighlighted() const override;
389  TextColour GetHighlightColour() const override;
390  void SetHighlighted(TextColour highlight_colour) override;
391 
393  Colours colour;
394  const WidgetID index;
395  uint32_t widget_data;
402 };
403 
408 inline void NWidgetCore::SetHighlighted(TextColour highlight_colour)
409 {
410  this->disp_flags = highlight_colour != TC_INVALID ? SETBITS(this->disp_flags, ND_HIGHLIGHT) : CLRBITS(this->disp_flags, ND_HIGHLIGHT);
411  this->highlight_colour = highlight_colour;
412 }
413 
415 inline bool NWidgetCore::IsHighlighted() const
416 {
417  return HasBit(this->disp_flags, NDB_HIGHLIGHT);
418 }
419 
422 {
423  return this->highlight_colour;
424 }
425 
430 inline void NWidgetCore::SetLowered(bool lowered)
431 {
432  this->disp_flags = lowered ? SETBITS(this->disp_flags, ND_LOWERED) : CLRBITS(this->disp_flags, ND_LOWERED);
433 }
434 
436 inline bool NWidgetCore::IsLowered() const
437 {
438  return HasBit(this->disp_flags, NDB_LOWERED);
439 }
440 
445 inline void NWidgetCore::SetDisabled(bool disabled)
446 {
447  this->disp_flags = disabled ? SETBITS(this->disp_flags, ND_DISABLED) : CLRBITS(this->disp_flags, ND_DISABLED);
448 }
449 
451 inline bool NWidgetCore::IsDisabled() const
452 {
453  return HasBit(this->disp_flags, NDB_DISABLED);
454 }
455 
456 
462 public:
464 
465  void AdjustPaddingForZoom() override;
466  void Add(std::unique_ptr<NWidgetBase> &&wid);
467  void FillWidgetLookup(WidgetLookup &widget_lookup) override;
468 
469  void Draw(const Window *w) override;
470  NWidgetCore *GetWidgetFromPos(int x, int y) override;
471 
473  inline bool IsEmpty() { return this->children.empty(); }
474 
475  NWidgetBase *GetWidgetOfType(WidgetType tp) override;
476 
477 protected:
478  std::vector<std::unique_ptr<NWidgetBase>> children;
479 };
480 
483  SZSP_VERTICAL = INT_MAX / 2,
486 
488 };
489 
501 public:
503 
504  void AdjustPaddingForZoom() override;
505  void SetupSmallestSize(Window *w) override;
506  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
508 
509  void Draw(const Window *w) override;
510  NWidgetCore *GetWidgetFromPos(int x, int y) override;
511 
512  bool SetDisplayedPlane(int plane);
513 
515  const WidgetID index;
516 private:
518 };
519 
524 
525  NC_NONE = 0,
528 };
530 
531 
533 public:
535 
536  void AdjustPaddingForZoom() override;
537  void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post);
538  void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_rato_post);
539 
540 protected:
542  uint8_t pip_pre;
543  uint8_t pip_inter;
544  uint8_t pip_post;
545  uint8_t pip_ratio_pre;
546  uint8_t pip_ratio_inter;
547  uint8_t pip_ratio_post;
548 
549  uint8_t uz_pip_pre;
550  uint8_t uz_pip_inter;
551  uint8_t uz_pip_post;
552 
553  uint8_t gaps;
554 };
555 
561 public:
563 
564  void SetupSmallestSize(Window *w) override;
565  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
566 };
567 
573 public:
575 
576  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
577 };
578 
584 public:
586 
587  void SetupSmallestSize(Window *w) override;
588  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
589 };
590 
600 public:
602 
603  void SetClicked(int clicked);
604  void SetCount(int count);
605  void SetScrollbar(Scrollbar *sb);
606  int GetCurrentElement() const;
607 
608  void SetupSmallestSize(Window *w) override;
609  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
610  void FillWidgetLookup(WidgetLookup &widget_lookup) override;
611 
612  NWidgetCore *GetWidgetFromPos(int x, int y) override;
613  void Draw(const Window *w) override;
614 protected:
615  const WidgetID index;
616  Colours colour;
617  int clicked;
618  int count;
621 private:
622  int widget_w;
623  int widget_h;
624  int widgets_x;
625  int widgets_y;
626 
627  void GetScrollOffsets(int &start_x, int &start_y, int &base_offs_x, int &base_offs_y);
628 };
629 
630 
636 public:
637  NWidgetSpacer(int width, int height);
638 
639  void SetupSmallestSize(Window *w) override;
640  void FillWidgetLookup(WidgetLookup &widget_lookup) override;
641 
642  void Draw(const Window *w) override;
643  void SetDirty(const Window *w) const override;
644  NWidgetCore *GetWidgetFromPos(int x, int y) override;
645 };
646 
652 public:
653  NWidgetBackground(WidgetType tp, Colours colour, WidgetID index, std::unique_ptr<NWidgetPIPContainer> &&child = nullptr);
654 
655  void Add(std::unique_ptr<NWidgetBase> &&nwid);
656  void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post);
657  void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_ratio_post);
658 
659  void AdjustPaddingForZoom() override;
660  void SetupSmallestSize(Window *w) override;
661  void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
662 
663  void FillWidgetLookup(WidgetLookup &widget_lookup) override;
664 
665  void Draw(const Window *w) override;
666  NWidgetCore *GetWidgetFromPos(int x, int y) override;
667  NWidgetBase *GetWidgetOfType(WidgetType tp) override;
668 
669 private:
670  std::unique_ptr<NWidgetPIPContainer> child;
671 };
672 
682 class NWidgetViewport : public NWidgetCore {
683 public:
685 
686  void SetupSmallestSize(Window *w) override;
687  void Draw(const Window *w) override;
688 
689  void InitializeViewport(Window *w, std::variant<TileIndex, VehicleID> focus, ZoomLevel zoom);
691 };
692 
696 class Scrollbar {
697 public:
698  using size_type = int32_t;
699  static constexpr size_type max_size_type = std::numeric_limits<size_type>::max();
700  static constexpr size_type npos = max_size_type;
701 private:
702  const bool is_vertical;
703  size_type count;
704  size_type cap;
705  size_type pos;
706  size_type stepsize;
707 
708 public:
714  };
715 
717  {
718  }
719 
724  inline size_type GetCount() const
725  {
726  return this->count;
727  }
728 
733  inline size_type GetCapacity() const
734  {
735  return this->cap;
736  }
737 
742  inline size_type GetPosition() const
743  {
744  return this->pos;
745  }
746 
752  inline bool IsVisible(size_type item) const
753  {
754  return IsInsideBS(item, this->GetPosition(), this->GetCapacity());
755  }
756 
761  inline bool IsVertical() const
762  {
763  return this->is_vertical;
764  }
765 
770  void SetStepSize(size_t stepsize)
771  {
772  assert(stepsize > 0);
773 
774  this->stepsize = ClampTo<size_type>(stepsize);
775  }
776 
782  void SetCount(size_t num)
783  {
784  assert(num < Scrollbar::max_size_type);
785 
786  this->count = ClampTo<size_type>(num);
787  /* Ensure position is within bounds */
788  this->SetPosition(this->pos);
789  }
790 
796  void SetCapacity(size_t capacity)
797  {
798  assert(capacity < Scrollbar::max_size_type);
799 
800  this->cap = ClampTo<size_type>(capacity);
801  /* Ensure position is within bounds */
802  this->SetPosition(this->pos);
803  }
804 
805  void SetCapacityFromWidget(Window *w, WidgetID widget, int padding = 0);
806 
812  bool SetPosition(size_type position)
813  {
814  size_type old_pos = this->pos;
815  this->pos = Clamp(position, 0, std::max(this->count - this->cap, 0));
816  return this->pos != old_pos;
817  }
818 
826  bool UpdatePosition(int difference, ScrollbarStepping unit = SS_SMALL)
827  {
828  if (difference == 0) return false;
829  switch (unit) {
830  case SS_SMALL: difference *= this->stepsize; break;
831  case SS_BIG: difference *= this->cap; break;
832  default: break;
833  }
834  return this->SetPosition(this->pos + difference);
835  }
836 
843  void ScrollTowards(size_type position)
844  {
845  if (position < this->GetPosition()) {
846  /* scroll up to the item */
847  this->SetPosition(position);
848  } else if (position >= this->GetPosition() + this->GetCapacity()) {
849  /* scroll down so that the item is at the bottom */
850  this->SetPosition(position - this->GetCapacity() + 1);
851  }
852  }
853 
854  size_type GetScrolledRowFromWidget(int clickpos, const Window * const w, WidgetID widget, int padding = 0, int line_height = -1) const;
855 
861  template <typename Tcontainer>
862  auto GetVisibleRangeIterators(Tcontainer &container) const
863  {
864  assert(static_cast<size_t>(this->GetCount()) == container.size()); // Scrollbar and container size must match.
865  auto first = std::next(std::begin(container), this->GetPosition());
866  auto last = std::next(first, std::min<size_t>(this->GetCapacity(), this->GetCount() - this->GetPosition()));
867  return std::make_pair(first, last);
868  }
869 
880  template <typename Tcontainer>
881  auto GetScrolledItemFromWidget(Tcontainer &container, int clickpos, const Window * const w, WidgetID widget, int padding = 0, int line_height = -1) const
882  {
883  assert(static_cast<size_t>(this->GetCount()) == container.size()); // Scrollbar and container size must match.
884  size_type row = this->GetScrolledRowFromWidget(clickpos, w, widget, padding, line_height);
885  if (row == Scrollbar::npos) return std::end(container);
886 
887  return std::next(std::begin(container), row);
888  }
889 
890  EventState UpdateListPositionOnKeyPress(int &list_position, uint16_t keycode) const;
891 };
892 
898 class NWidgetScrollbar : public NWidgetCore, public Scrollbar {
899 public:
901 
902  void SetupSmallestSize(Window *w) override;
903  void Draw(const Window *w) override;
904 
905  static void InvalidateDimensionCache();
906  static Dimension GetVerticalDimension();
907  static Dimension GetHorizontalDimension();
908 
909 private:
912 };
913 
918 class NWidgetLeaf : public NWidgetCore {
919 public:
920  NWidgetLeaf(WidgetType tp, Colours colour, WidgetID index, uint32_t data, StringID tip);
921 
922  void SetupSmallestSize(Window *w) override;
923  void Draw(const Window *w) override;
924 
925  bool ButtonHit(const Point &pt);
926 
927  static void InvalidateDimensionCache();
928 
932 private:
937 };
938 
946 inline uint ComputeMaxSize(uint base, uint max_space, uint step)
947 {
948  if (base >= max_space || step == 0) return base;
949  if (step == 1) return max_space;
950  uint increment = max_space - base;
951  increment -= increment % step;
952  return base + increment;
953 }
954 
1007  uint32_t data;
1009 };
1010 
1016  Colours colour;
1018 };
1019 
1025 };
1026 
1032  uint8_t pre, inter, post;
1033 };
1034 
1040  uint8_t lines;
1041  uint8_t spacing;
1043 };
1044 
1052 };
1053 
1060 };
1061 
1063  float ratio;
1064  AspectFlags flags;
1065 };
1066 
1071 typedef std::unique_ptr<NWidgetBase> NWidgetFunctionType();
1072 
1077 struct NWidgetPart {
1091 
1092  /* Constructors for each NWidgetPartUnion data type. */
1093  constexpr NWidgetPartUnion() : xy() {}
1094  constexpr NWidgetPartUnion(Point xy) : xy(xy) {}
1095  constexpr NWidgetPartUnion(NWidgetPartDataTip data_tip) : data_tip(data_tip) {}
1096  constexpr NWidgetPartUnion(NWidgetPartWidget widget) : widget(widget) {}
1097  constexpr NWidgetPartUnion(NWidgetPartPaddings padding) : padding(padding) {}
1098  constexpr NWidgetPartUnion(NWidgetPartPIP pip) : pip(pip) {}
1099  constexpr NWidgetPartUnion(NWidgetPartTextLines text_lines) : text_lines(text_lines) {}
1100  constexpr NWidgetPartUnion(NWidgetPartTextStyle text_style) : text_style(text_style) {}
1101  constexpr NWidgetPartUnion(NWidgetPartAlignment align) : align(align) {}
1102  constexpr NWidgetPartUnion(NWidgetFunctionType *func_ptr) : func_ptr(func_ptr) {}
1103  constexpr NWidgetPartUnion(NWidContainerFlags cont_flags) : cont_flags(cont_flags) {}
1104  constexpr NWidgetPartUnion(NWidgetPartAspect aspect) : aspect(aspect) {}
1105  } u;
1106 
1107  /* Constructors for each NWidgetPart data type. */
1108  explicit constexpr NWidgetPart(WidgetType type) : type(type), u() {}
1109  constexpr NWidgetPart(WidgetType type, Point xy) : type(type), u(xy) {}
1110  constexpr NWidgetPart(WidgetType type, NWidgetPartDataTip data_tip) : type(type), u(data_tip) {}
1111  constexpr NWidgetPart(WidgetType type, NWidgetPartWidget widget) : type(type), u(widget) {}
1112  constexpr NWidgetPart(WidgetType type, NWidgetPartPaddings padding) : type(type), u(padding) {}
1113  constexpr NWidgetPart(WidgetType type, NWidgetPartPIP pip) : type(type), u(pip) {}
1114  constexpr NWidgetPart(WidgetType type, NWidgetPartTextLines text_lines) : type(type), u(text_lines) {}
1115  constexpr NWidgetPart(WidgetType type, NWidgetPartTextStyle text_style) : type(type), u(text_style) {}
1116  constexpr NWidgetPart(WidgetType type, NWidgetPartAlignment align) : type(type), u(align) {}
1117  constexpr NWidgetPart(WidgetType type, NWidgetFunctionType *func_ptr) : type(type), u(func_ptr) {}
1118  constexpr NWidgetPart(WidgetType type, NWidContainerFlags cont_flags) : type(type), u(cont_flags) {}
1119  constexpr NWidgetPart(WidgetType type, NWidgetPartAspect aspect) : type(type), u(aspect) {}
1120 };
1121 
1128 constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
1129 {
1130  return NWidgetPart{WPT_RESIZE, Point{dx, dy}};
1131 }
1132 
1139 constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
1140 {
1141  return NWidgetPart{WPT_MINSIZE, Point{x, y}};
1142 }
1143 
1151 constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size = FS_NORMAL)
1152 {
1153  return NWidgetPart{WPT_MINTEXTLINES, NWidgetPartTextLines{lines, spacing, size}};
1154 }
1155 
1163 {
1164  return NWidgetPart{WPT_TEXTSTYLE, NWidgetPartTextStyle{colour, size}};
1165 }
1166 
1173 {
1175 }
1176 
1183 constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
1184 {
1185  return NWidgetPart{WPT_FILL, Point{fill_x, fill_y}};
1186 }
1187 
1194 {
1195  return NWidgetPart{WPT_ENDCONTAINER};
1196 }
1197 
1204 constexpr NWidgetPart SetDataTip(uint32_t data, StringID tip)
1205 {
1206  return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{data, tip}};
1207 }
1208 
1216 constexpr NWidgetPart SetMatrixDataTip(uint8_t cols, uint8_t rows, StringID tip)
1217 {
1218  return SetDataTip((rows << MAT_ROW_START) | (cols << MAT_COL_START), tip);
1219 }
1220 
1230 constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
1231 {
1232  return NWidgetPart{WPT_PADDING, NWidgetPartPaddings{left, top, right, bottom}};
1233 }
1234 
1240 constexpr NWidgetPart SetPadding(const RectPadding &padding)
1241 {
1242  return NWidgetPart{WPT_PADDING, NWidgetPartPaddings{padding}};
1243 }
1244 
1250 constexpr NWidgetPart SetPadding(uint8_t padding)
1251 {
1252  return SetPadding(padding, padding, padding, padding);
1253 }
1254 
1262 constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
1263 {
1264  return NWidgetPart{WPT_PIPSPACE, NWidgetPartPIP{pre, inter, post}};
1265 }
1266 
1274 constexpr NWidgetPart SetPIPRatio(uint8_t ratio_pre, uint8_t ratio_inter, uint8_t ratio_post)
1275 {
1276  return NWidgetPart{WPT_PIPRATIO, NWidgetPartPIP{ratio_pre, ratio_inter, ratio_post}};
1277 }
1278 
1287 {
1288  return NWidgetPart{WPT_SCROLLBAR, NWidgetPartWidget{INVALID_COLOUR, index}};
1289 }
1290 
1297 constexpr NWidgetPart SetAspect(float ratio, AspectFlags flags = AspectFlags::ResizeX)
1298 {
1299  return NWidgetPart{WPT_ASPECT, NWidgetPartAspect{ratio, flags}};
1300 }
1301 
1311 constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx = -1)
1312 {
1313  return NWidgetPart{tp, NWidgetPartWidget{col, idx}};
1314 }
1315 
1323 {
1324  return NWidgetPart{tp, NWidContainerFlags{cont_flags}};
1325 }
1326 
1333 {
1334  return NWidgetPart{WPT_FUNCTION, func_ptr};
1335 }
1336 
1338 std::unique_ptr<NWidgetBase> MakeNWidgets(std::span<const NWidgetPart> nwid_parts, std::unique_ptr<NWidgetBase> &&container);
1339 std::unique_ptr<NWidgetBase> MakeWindowNWidgetTree(std::span<const NWidgetPart> nwid_parts, NWidgetStacked **shade_select);
1340 
1341 std::unique_ptr<NWidgetBase> MakeCompanyButtonRows(WidgetID widget_first, WidgetID widget_last, Colours button_colour, int max_length, StringID button_tooltip, bool resizable = true);
1342 
1343 void SetupWidgetDimensions();
1344 
1345 #endif /* WIDGET_TYPE_H */
SZSP_NONE
@ SZSP_NONE
Display plane with zero size in both directions (none filling and resizing).
Definition: widget_type.h:485
WPT_ATTRIBUTE_END
@ WPT_ATTRIBUTE_END
End marker for attribute NWidgetPart types.
Definition: widget_type.h:103
NWidgetSpacer::NWidgetSpacer
NWidgetSpacer(int width, int height)
Generic spacer widget.
Definition: widget.cpp:1771
NWidgetResizeBase
Base class for a resizable nested widget.
Definition: widget_type.h:305
NWidgetMatrix::clicked
int clicked
The currently clicked element.
Definition: widget_type.h:617
SetFill
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
Definition: widget_type.h:1183
Scrollbar::ScrollTowards
void ScrollTowards(size_type position)
Scroll towards the given position; if the item is visible nothing happens, otherwise it will be shown...
Definition: widget_type.h:843
NWidgetContainer::children
std::vector< std::unique_ptr< NWidgetBase > > children
Child widgets in contaier.
Definition: widget_type.h:478
NWidgetScrollbar::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:2431
NWidgetMatrix::widgets_y
int widgets_y
The number of visible widgets in vertical direction.
Definition: widget_type.h:625
NDB_LOWERED
@ NDB_LOWERED
Widget is lowered (pressed down) bit.
Definition: widget_type.h:339
Scrollbar::stepsize
size_type stepsize
Distance to scroll, when pressing the buttons or using the wheel.
Definition: widget_type.h:706
NWidgetBackground::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:2110
NWidgetResizeBase::uz_min_x
uint uz_min_x
Unscaled Minimal horizontal size of only this widget.
Definition: widget_type.h:328
NWidgetCore::IsDisabled
bool IsDisabled() const
Return whether the widget is disabled.
Definition: widget_type.h:451
NWidgetPIPContainer::uz_pip_pre
uint8_t uz_pip_pre
Unscaled space before first widget.
Definition: widget_type.h:549
WWT_IMGBTN_2
@ WWT_IMGBTN_2
(Toggle) Button with diff image when clicked
Definition: widget_type.h:55
NWidgetBase::aspect_flags
AspectFlags aspect_flags
Which dimensions can be resized.
Definition: widget_type.h:248
WPT_DATATIP
@ WPT_DATATIP
Widget part for specifying data and tooltip.
Definition: widget_type.h:95
WPT_PIPRATIO
@ WPT_PIPRATIO
Widget part for specifying pre/inter/post ratio for containers.
Definition: widget_type.h:98
NWidgetCore::GetHighlightColour
TextColour GetHighlightColour() const override
Return the colour of the highlight.
Definition: widget_type.h:421
NWidgetCore::IsHighlighted
bool IsHighlighted() const override
Return whether the widget is highlighted.
Definition: widget_type.h:415
NWidgetSpacer::GetWidgetFromPos
NWidgetCore * GetWidgetFromPos(int x, int y) override
Definition: widget.cpp:1805
Scrollbar::SS_SMALL
@ SS_SMALL
Step in stepsize units.
Definition: widget_type.h:712
NWidgetPartTextStyle
Widget part for storing text colour.
Definition: widget_type.h:1049
NWidgetBase::GetParentWidget
NWID * GetParentWidget()
Get parent widget of type NWID.
Definition: widget_type.h:166
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:30
NWidgetBase::AssignSizePosition
virtual void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl)=0
NWidgetLeaf::resizebox_dimension
static Dimension resizebox_dimension
Cached size of a resizebox widget.
Definition: widget_type.h:930
WWT_STICKYBOX
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition: widget_type.h:68
Scrollbar::is_vertical
const bool is_vertical
Scrollbar has vertical orientation.
Definition: widget_type.h:702
NWidgetCore::SetHighlighted
void SetHighlighted(TextColour highlight_colour) override
Highlight the widget or not.
Definition: widget_type.h:408
SZSP_BEGIN
@ SZSP_BEGIN
First zero-size plane.
Definition: widget_type.h:487
NWidgetPart::NWidgetPartUnion::text_lines
NWidgetPartTextLines text_lines
Part with text line data.
Definition: widget_type.h:1085
NWidgetBase::GetVerticalStepSize
uint GetVerticalStepSize(SizingType sizing) const
Get the vertical sizing step.
Definition: widget_type.h:275
NWidgetPartTextStyle::size
FontSize size
Font size of text.
Definition: widget_type.h:1051
ND_SCROLLBAR_DOWN
@ ND_SCROLLBAR_DOWN
Bit value of the 'scrollbar down' flag.
Definition: widget_type.h:362
NWID_HSCROLLBAR
@ NWID_HSCROLLBAR
Horizontal scrollbar.
Definition: widget_type.h:85
Scrollbar::ScrollbarStepping
ScrollbarStepping
Stepping sizes when scrolling.
Definition: widget_type.h:710
NWidgetViewport
Nested widget to display a viewport in a window.
Definition: widget_type.h:682
NWidgetContainer::GetWidgetFromPos
NWidgetCore * GetWidgetFromPos(int x, int y) override
Definition: widget.cpp:1220
NWidgetContainer::Add
void Add(std::unique_ptr< NWidgetBase > &&wid)
Append widget wid to container.
Definition: widget.cpp:1197
WWT_CAPTION
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition: widget_type.h:63
NWidgetPartPaddings
Widget part for storing padding.
Definition: widget_type.h:1024
Scrollbar::SetPosition
bool SetPosition(size_type position)
Sets the position of the first visible element.
Definition: widget_type.h:812
NWidgetMatrix
Matrix container with implicitly equal sized (virtual) sub-widgets.
Definition: widget_type.h:599
SetAlignment
constexpr NWidgetPart SetAlignment(StringAlignment align)
Widget part function for setting the alignment of text/images.
Definition: widget_type.h:1172
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
WWT_IMGBTN
@ WWT_IMGBTN
(Toggle) Button with image
Definition: widget_type.h:54
NWidgetViewport::InitializeViewport
void InitializeViewport(Window *w, std::variant< TileIndex, VehicleID > focus, ZoomLevel zoom)
Initialize the viewport of the window.
Definition: widget.cpp:2288
NWidgetBase::FillWidgetLookup
virtual void FillWidgetLookup(WidgetLookup &widget_lookup)=0
NWidgetBase::GetHorizontalStepSize
uint GetHorizontalStepSize(SizingType sizing) const
Get the horizontal sizing step.
Definition: widget_type.h:266
NDB_DROPDOWN_CLOSED
@ NDB_DROPDOWN_CLOSED
Dropdown menu of the dropdown widget has closed.
Definition: widget_type.h:352
ND_SHADE_DIMMED
@ ND_SHADE_DIMMED
Bit value of the 'dimmed colours' flag.
Definition: widget_type.h:359
NWidgetPIPContainer::pip_ratio_pre
uint8_t pip_ratio_pre
Ratio of remaining space before first widget.
Definition: widget_type.h:545
WWT_LABEL
@ WWT_LABEL
Centered label.
Definition: widget_type.h:59
math_func.hpp
NWidgetCore::widget_data
uint32_t widget_data
Data of the widget.
Definition: widget_type.h:395
NWidgetSpacer::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:1777
NWidgetBase::uz_padding
RectPadding uz_padding
Unscaled padding, for resize calculation.
Definition: widget_type.h:254
WWT_DEFSIZEBOX
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX)
Definition: widget_type.h:67
NWidgetStacked::Draw
void Draw(const Window *w) override
Definition: widget.cpp:1318
NWID_HORIZONTAL
@ NWID_HORIZONTAL
Horizontal container.
Definition: widget_type.h:77
NWidgetMatrix::Draw
void Draw(const Window *w) override
Definition: widget.cpp:1956
NWidgetLeaf::stickybox_dimension
static Dimension stickybox_dimension
Cached size of a stickybox widget.
Definition: widget_type.h:936
RWV_HIDE_BEVEL
@ RWV_HIDE_BEVEL
Bevel of resize box is hidden.
Definition: widget_type.h:42
NDB_SCROLLBAR_DOWN
@ NDB_SCROLLBAR_DOWN
Down-button is lowered bit.
Definition: widget_type.h:349
NDB_SHADE_DIMMED
@ NDB_SHADE_DIMMED
Display dimmed colours in the viewport.
Definition: widget_type.h:344
window_type.h
WWT_MATRIX
@ WWT_MATRIX
Grid of rows and columns.
Definition: widget_type.h:61
NWidgetBase::parent
NWidgetBase * parent
Parent widget of this widget, automatically filled in when added to container.
Definition: widget_type.h:256
ArrowWidgetValues
ArrowWidgetValues
Values for an arrow widget.
Definition: widget_type.h:32
NWID_HORIZONTAL_LTR
@ NWID_HORIZONTAL_LTR
Horizontal container that doesn't change the order of the widgets for RTL languages.
Definition: widget_type.h:78
NWidgetSpacer
Spacer widget.
Definition: widget_type.h:635
EndContainer
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
Definition: widget_type.h:1193
WWT_ARROWBTN
@ WWT_ARROWBTN
(Toggle) Button with an arrow
Definition: widget_type.h:56
NWidgetBase::NWidgetBase
NWidgetBase(WidgetType tp)
Base class constructor.
Definition: widget.cpp:851
Scrollbar::SetStepSize
void SetStepSize(size_t stepsize)
Set the distance to scroll when using the buttons or the wheel.
Definition: widget_type.h:770
NWidgetResizeBase::uz_min_y
uint uz_min_y
Unscaled Minimal vertical size of only this widget.
Definition: widget_type.h:329
SetMatrixDataTip
constexpr NWidgetPart SetMatrixDataTip(uint8_t cols, uint8_t rows, StringID tip)
Widget part function for setting the data and tooltip of WWT_MATRIX widgets.
Definition: widget_type.h:1216
NWidgetPIPContainer::pip_ratio_inter
uint8_t pip_ratio_inter
Ratio of remaining space between widgets.
Definition: widget_type.h:546
MAT_ROW_START
@ MAT_ROW_START
Lowest bit of the number of rows.
Definition: widget_type.h:27
TextColour
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition: gfx_type.h:260
Scrollbar::cap
size_type cap
Number of visible elements of the scroll bar.
Definition: widget_type.h:704
Scrollbar::SetCapacityFromWidget
void SetCapacityFromWidget(Window *w, WidgetID widget, int padding=0)
Set capacity of visible elements from the size and resize properties of a widget.
Definition: widget.cpp:2394
NWidgetLeaf
Leaf widget.
Definition: widget_type.h:918
NWidgetResizeBase::UpdateVerticalSize
bool UpdateVerticalSize(uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition: widget.cpp:1092
NWidgetMatrix::SetScrollbar
void SetScrollbar(Scrollbar *sb)
Assign a scrollbar to this matrix.
Definition: widget.cpp:1860
StringAlignment
StringAlignment
How to align the to-be drawn text.
Definition: gfx_type.h:344
NWidgetMatrix::count
int count
Amount of valid elements.
Definition: widget_type.h:618
SZSP_HORIZONTAL
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
Definition: widget_type.h:484
WWT_EMPTY
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition: widget_type.h:50
WWT_PUSHARROWBTN
@ WWT_PUSHARROWBTN
Normal push-button (no toggle button) with arrow caption.
Definition: widget_type.h:116
Scrollbar::IsVisible
bool IsVisible(size_type item) const
Checks whether given current item is visible in the list.
Definition: widget_type.h:752
NWID_CUSTOM
@ NWID_CUSTOM
General Custom widget.
Definition: widget_type.h:87
NWidgetCore::tool_tip
StringID tool_tip
Tooltip of the widget.
Definition: widget_type.h:396
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
NWidgetContainer::GetWidgetOfType
NWidgetBase * GetWidgetOfType(WidgetType tp) override
Retrieve a widget by its type.
Definition: widget.cpp:1175
NWidgetCore::SetLowered
void SetLowered(bool lowered)
Lower or raise the widget.
Definition: widget_type.h:430
NWidgetFunction
constexpr NWidgetPart NWidgetFunction(NWidgetFunctionType *func_ptr)
Obtain a nested widget (sub)tree from an external source.
Definition: widget_type.h:1332
strings_type.h
NWidgetPart::NWidgetPartUnion::text_style
NWidgetPartTextStyle text_style
Part with text style data.
Definition: widget_type.h:1086
NWidgetLeaf::shadebox_dimension
static Dimension shadebox_dimension
Cached size of a shadebox widget.
Definition: widget_type.h:933
WPT_ASPECT
@ WPT_ASPECT
Widget part for sepcifying aspect ratio.
Definition: widget_type.h:102
NWID_MATRIX
@ NWID_MATRIX
Matrix container.
Definition: widget_type.h:80
NWidgetBase::smallest_y
uint smallest_y
Smallest vertical size of the widget in a filled window.
Definition: widget_type.h:243
Scrollbar
Scrollbar data structure.
Definition: widget_type.h:696
NCB_BIGFIRST
@ NCB_BIGFIRST
Allocate space to biggest resize first.
Definition: widget_type.h:523
NWidgetBase::aspect_ratio
float aspect_ratio
Desired aspect ratio of widget.
Definition: widget_type.h:247
NWidgetPartAspect
Definition: widget_type.h:1062
NWidgetCore::text_size
FontSize text_size
Size of text within widget.
Definition: widget_type.h:400
NWidgetPIPContainer::pip_pre
uint8_t pip_pre
Amount of space before first widget.
Definition: widget_type.h:542
NWidgetPart
Partial widget specification to allow NWidgets to be written nested.
Definition: widget_type.h:1077
NWidgetScrollbar::NWidgetScrollbar
NWidgetScrollbar(WidgetType tp, Colours colour, WidgetID index)
Scrollbar widget.
Definition: widget.cpp:2410
NWidgetMatrix::sb
Scrollbar * sb
The scrollbar we're associated with.
Definition: widget_type.h:620
Scrollbar::pos
size_type pos
Index of first visible item of the list.
Definition: widget_type.h:705
MAT_COL_START
@ MAT_COL_START
Lowest bit of the number of columns.
Definition: widget_type.h:23
NWidgetPartPIP::post
uint8_t post
Amount of space before/between/after child widgets.
Definition: widget_type.h:1032
SETBITS
#define SETBITS(x, y)
Sets several bits in a variable.
Definition: bitmath_func.hpp:136
NWidgetPIPContainer::pip_inter
uint8_t pip_inter
Amount of space between widgets.
Definition: widget_type.h:543
alloc_type.hpp
NWidgetMatrix::current_element
int current_element
The element currently being processed.
Definition: widget_type.h:619
NWidgetBase::StoreSizePosition
void StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height)
Store size and position.
Definition: widget_type.h:288
NWidgetResizeBase::UpdateMultilineWidgetSize
bool UpdateMultilineWidgetSize(const std::string &str, int max_lines)
Try to set optimum widget size for a multiline text widget.
Definition: widget.cpp:1058
NWidgetBase::Draw
virtual void Draw(const Window *w)=0
NWidgetMatrix::SetCount
void SetCount(int count)
Set the number of elements in this matrix.
Definition: widget.cpp:1836
Scrollbar::GetCount
size_type GetCount() const
Gets the number of elements in the list.
Definition: widget_type.h:724
WidgetID
int WidgetID
Widget ID.
Definition: window_type.h:18
NWidgetStacked::widget_lookup
WidgetLookup * widget_lookup
Window's widget lookup, updated in SetDisplayedPlane().
Definition: widget_type.h:517
NWidgetPart::NWidgetPartUnion::data_tip
NWidgetPartDataTip data_tip
Part with a data/tooltip.
Definition: widget_type.h:1081
Scrollbar::UpdateListPositionOnKeyPress
EventState UpdateListPositionOnKeyPress(int &list_position, uint16_t keycode) const
Update the given list position as if it were on this scroll bar when the given keycode was pressed.
Definition: widget.cpp:2341
NWidgetLeaf::InvalidateDimensionCache
static void InvalidateDimensionCache()
Reset the cached dimensions.
Definition: widget.cpp:2508
NWidgetResizeBase::NWidgetResizeBase
NWidgetResizeBase(WidgetType tp, uint fill_x, uint fill_y)
Constructor for resizable nested widgets.
Definition: widget.cpp:953
NWidgetPIPContainer::uz_pip_post
uint8_t uz_pip_post
Unscaled space after last widget.
Definition: widget_type.h:551
RectPadding
Padding dimensions to apply to each side of a Rect.
Definition: geometry_type.hpp:51
NC_EQUALSIZE
@ NC_EQUALSIZE
Value of the NCB_EQUALSIZE flag.
Definition: widget_type.h:526
NWidgetResizeBase::uz_text_spacing
uint8_t uz_text_spacing
'Unscaled' text padding, stored for resize calculation.
Definition: widget_type.h:332
ND_DROPDOWN_ACTIVE
@ ND_DROPDOWN_ACTIVE
Bit value of the 'dropdown active' flag.
Definition: widget_type.h:360
Scrollbar::UpdatePosition
bool UpdatePosition(int difference, ScrollbarStepping unit=SS_SMALL)
Updates the position of the first visible element by the given amount.
Definition: widget_type.h:826
bitmath_func.hpp
SetPadding
constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Widget part function for setting additional space around a widget.
Definition: widget_type.h:1230
NWidgetPart::NWidgetPartUnion::func_ptr
NWidgetFunctionType * func_ptr
Part with a function call.
Definition: widget_type.h:1088
AWV_LEFT
@ AWV_LEFT
Force the arrow to the left.
Definition: widget_type.h:35
NWidgetMatrix::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1896
IsInsideBS
constexpr bool IsInsideBS(const T x, const size_t base, const size_t size)
Checks if a value is between a window started at some base point.
Definition: math_func.hpp:252
SetResize
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
Definition: widget_type.h:1128
WPT_FILL
@ WPT_FILL
Widget part for specifying fill.
Definition: widget_type.h:94
ComputeMaxSize
uint ComputeMaxSize(uint base, uint max_space, uint step)
Return the biggest possible size of a nested widget.
Definition: widget_type.h:946
NDB_HIGHLIGHT
@ NDB_HIGHLIGHT
Highlight of widget is on.
Definition: widget_type.h:351
WWT_PUSHBTN
@ WWT_PUSHBTN
Normal push-button (no toggle button) with custom drawing.
Definition: widget_type.h:113
NWidgetLeaf::dropdown_dimension
static Dimension dropdown_dimension
Cached size of a dropdown widget.
Definition: widget_type.h:929
NWidgetStacked::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1287
ST_SMALLEST
@ ST_SMALLEST
Initialize nested widget tree to smallest size. Also updates current_x and current_y.
Definition: widget_type.h:122
NWidgetPartPIP
Widget part for storing pre/inter/post spaces.
Definition: widget_type.h:1031
ND_HIGHLIGHT
@ ND_HIGHLIGHT
Bit value of the highlight flag.
Definition: widget_type.h:356
NWidgetResizeBase::SetMinimalTextLines
void SetMinimalTextLines(uint8_t min_lines, uint8_t spacing, FontSize size)
Set minimal text lines for the widget.
Definition: widget.cpp:1021
NWidgetViewport::UpdateViewportCoordinates
void UpdateViewportCoordinates(Window *w)
Update the position and size of the viewport (after eg a resize).
Definition: widget.cpp:2297
FS_NORMAL
@ FS_NORMAL
Index of the normal font in the font tables.
Definition: gfx_type.h:209
NWidgetHorizontal::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1474
NWID_VIEWPORT
@ NWID_VIEWPORT
Nested widget containing a viewport.
Definition: widget_type.h:83
SetScrollbar
constexpr NWidgetPart SetScrollbar(WidgetID index)
Attach a scrollbar to a widget.
Definition: widget_type.h:1286
NWidgetPart::NWidgetPartUnion
Definition: widget_type.h:1079
NWidgetPart::NWidgetPartUnion::align
NWidgetPartAlignment align
Part with internal alignment.
Definition: widget_type.h:1087
WWT_EDITBOX
@ WWT_EDITBOX
a textbox for typing
Definition: widget_type.h:73
NWidgetBase::type
WidgetType type
Type of the widget / nested widget.
Definition: widget_type.h:234
NWidgetPartTextLines::lines
uint8_t lines
Number of text lines.
Definition: widget_type.h:1040
NWidgetResizeBase::SetResize
void SetResize(uint resize_x, uint resize_y)
Set resize step of the widget.
Definition: widget.cpp:1045
NWidgetBase::smallest_x
uint smallest_x
Smallest horizontal size of the widget in a filled window.
Definition: widget_type.h:242
NWidgetLeaf::debugbox_dimension
static Dimension debugbox_dimension
Cached size of a debugbox widget.
Definition: widget_type.h:934
NWidgetBase::GetWidgetOfType
virtual NWidgetBase * GetWidgetOfType(WidgetType tp)
Retrieve a widget by its type.
Definition: widget.cpp:923
WPT_PIPSPACE
@ WPT_PIPSPACE
Widget part for specifying pre/inter/post space for containers.
Definition: widget_type.h:97
NWidgetContainer::FillWidgetLookup
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Definition: widget.cpp:1204
ZeroedMemoryAllocator
Base class that provides memory initialization on dynamically created objects.
Definition: alloc_type.hpp:85
IsContainerWidgetType
bool IsContainerWidgetType(WidgetType tp)
Test if WidgetType is a container widget.
Definition: widget.cpp:3153
WWT_PUSHTXTBTN
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
Definition: widget_type.h:114
NWidgetPIPContainer::gaps
uint8_t gaps
Number of gaps between widgets.
Definition: widget_type.h:553
NWidgetBackground::FillWidgetLookup
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Definition: widget.cpp:2187
NWidgetBase
Baseclass for nested widgets.
Definition: widget_type.h:146
NWidgetBackground::GetWidgetOfType
NWidgetBase * GetWidgetOfType(WidgetType tp) override
Retrieve a widget by its type.
Definition: widget.cpp:2242
NWidgetContainer::Draw
void Draw(const Window *w) override
Definition: widget.cpp:1211
Scrollbar::IsVertical
bool IsVertical() const
Is the scrollbar vertical or not?
Definition: widget_type.h:761
NWidgetMatrix::GetWidgetFromPos
NWidgetCore * GetWidgetFromPos(int x, int y) override
Definition: widget.cpp:1926
NWidgetBackground::SetPIPRatio
void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_ratio_post)
Set additional pre/inter/post space ratios for the background widget.
Definition: widget.cpp:2095
NWidgetResizeBase::SetAspect
void SetAspect(float ratio, AspectFlags flags=AspectFlags::ResizeX)
Set desired aspect ratio of this widget.
Definition: widget.cpp:964
WPT_SCROLLBAR
@ WPT_SCROLLBAR
Widget part for attaching a scrollbar.
Definition: widget_type.h:101
NWidgetPIPContainer::pip_ratio_post
uint8_t pip_ratio_post
Ratio of remaining space after last widget.
Definition: widget_type.h:547
MAT_COL_BITS
@ MAT_COL_BITS
Number of bits for the number of columns in the matrix.
Definition: widget_type.h:24
NWidgetMatrix::index
const WidgetID index
If non-negative, index in the Window::widget_lookup.
Definition: widget_type.h:615
Scrollbar::GetScrolledRowFromWidget
size_type GetScrolledRowFromWidget(int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Compute the row of a scrolled widget that a user clicked in.
Definition: widget.cpp:2320
NWidget
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
Definition: widget_type.h:1311
NWidgetResizeBase::uz_text_size
FontSize uz_text_size
'Unscaled' font size, stored for resize calculation.
Definition: widget_type.h:333
NWidgetDisplay
NWidgetDisplay
Nested widget flags that affect display and interaction with 'real' widgets.
Definition: widget_type.h:337
NWidgetLeaf::defsizebox_dimension
static Dimension defsizebox_dimension
Cached size of a defsizebox widget.
Definition: widget_type.h:935
ND_LOWERED
@ ND_LOWERED
Bit value of the lowered flag.
Definition: widget_type.h:354
NWidgetPartTextLines
Widget part for storing minimal text line data.
Definition: widget_type.h:1039
NWidgetVertical::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:1599
WWT_LAST
@ WWT_LAST
Last Item. use WIDGETS_END to fill up padding!!
Definition: widget_type.h:74
WPT_ALIGNMENT
@ WPT_ALIGNMENT
Widget part for specifying text/image alignment.
Definition: widget_type.h:100
NWidgetStacked::FillWidgetLookup
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Definition: widget.cpp:1307
ND_DISABLED
@ ND_DISABLED
Bit value of the disabled flag.
Definition: widget_type.h:355
Scrollbar::SS_RAW
@ SS_RAW
Step in single units.
Definition: widget_type.h:711
WPT_ATTRIBUTE_BEGIN
@ WPT_ATTRIBUTE_BEGIN
Begin marker for attribute NWidgetPart types.
Definition: widget_type.h:90
NDB_SCROLLBAR_UP
@ NDB_SCROLLBAR_UP
Up-button is lowered bit.
Definition: widget_type.h:348
NWidgetVertical::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1668
Point
Coordinates of a point in 2D.
Definition: geometry_type.hpp:21
WPT_MINSIZE
@ WPT_MINSIZE
Widget part for specifying minimal size.
Definition: widget_type.h:92
NWidgetCore::IsLowered
bool IsLowered() const
Return whether the widget is lowered.
Definition: widget_type.h:436
NWidgetPartWidget
Widget part for storing basic widget information.
Definition: widget_type.h:1015
Scrollbar::SetCapacity
void SetCapacity(size_t capacity)
Set the capacity of visible elements.
Definition: widget_type.h:796
NDB_NO_TRANSPARENCY
@ NDB_NO_TRANSPARENCY
Viewport is never transparent.
Definition: widget_type.h:342
WWT_FRAME
@ WWT_FRAME
Frame.
Definition: widget_type.h:62
NWidgetStacked::GetWidgetFromPos
NWidgetCore * GetWidgetFromPos(int x, int y) override
Definition: widget.cpp:1327
MakeNWidgets
std::unique_ptr< NWidgetBase > MakeNWidgets(std::span< const NWidgetPart > nwid_parts, std::unique_ptr< NWidgetBase > &&container)
Construct a nested widget tree from an array of parts.
Definition: widget.cpp:3210
NWidgetBase::GetParentWidget
const NWID * GetParentWidget() const
Get parent widget of type NWID.
Definition: widget_type.h:180
Scrollbar::GetCapacity
size_type GetCapacity() const
Gets the number of visible elements of the scrollbar.
Definition: widget_type.h:733
NWidgetPartDataTip
Widget part for storing data and tooltip information.
Definition: widget_type.h:1006
NWidgetHorizontal::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:1405
NWidgetBase::current_y
uint current_y
Current vertical size (after resizing).
Definition: widget_type.h:246
NWidgetStacked
Stacked widgets, widgets all occupying the same space in the window.
Definition: widget_type.h:500
NWidgetScrollbar::vertical_dimension
static Dimension vertical_dimension
Cached size of vertical scrollbar button.
Definition: widget_type.h:910
NWID_VERTICAL
@ NWID_VERTICAL
Vertical container.
Definition: widget_type.h:79
WidgetType
WidgetType
Window widget types, nested widget types, and nested widget part types.
Definition: widget_type.h:48
NWidgetResizeBase::SetFill
void SetFill(uint fill_x, uint fill_y)
Set the filling of the widget from initial size.
Definition: widget.cpp:1034
WWT_TEXTBTN_2
@ WWT_TEXTBTN_2
(Toggle) Button with diff text when clicked
Definition: widget_type.h:58
NWidgetSpacer::SetDirty
void SetDirty(const Window *w) const override
Mark the widget as 'dirty' (in need of repaint).
Definition: widget.cpp:1800
WWT_CLOSEBOX
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition: widget_type.h:71
WWT_RESIZEBOX
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window)
Definition: widget_type.h:70
WPT_MINTEXTLINES
@ WPT_MINTEXTLINES
Widget part for specifying minimal number of lines of text.
Definition: widget_type.h:93
NWidgetContainer::IsEmpty
bool IsEmpty()
Return whether the container is empty.
Definition: widget_type.h:473
NWidgetBase::GetWidgetFromPos
virtual NWidgetCore * GetWidgetFromPos(int x, int y)=0
NWidgetMatrix::FillWidgetLookup
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Definition: widget.cpp:1920
NWidgetBase::SetPadding
void SetPadding(const RectPadding &padding)
Set additional space (padding) around the widget.
Definition: widget_type.h:212
NWidgetBackground::GetWidgetFromPos
NWidgetCore * GetWidgetFromPos(int x, int y) override
Definition: widget.cpp:2232
NWidgetMatrix::GetScrollOffsets
void GetScrollOffsets(int &start_x, int &start_y, int &base_offs_x, int &base_offs_y)
Get the different offsets that are influenced by scrolling.
Definition: widget.cpp:2011
NWidgetSpacer::Draw
void Draw(const Window *w) override
Definition: widget.cpp:1788
WWT_PUSHIMGBTN
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
Definition: widget_type.h:115
NWidgetBase::fill_y
uint fill_y
Vertical fill stepsize (from initial size, 0 means not resizable).
Definition: widget_type.h:236
NWidgetBackground::child
std::unique_ptr< NWidgetPIPContainer > child
Child widget.
Definition: widget_type.h:670
NWidgetHorizontalLTR::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1589
MakeCompanyButtonRows
std::unique_ptr< NWidgetBase > MakeCompanyButtonRows(WidgetID widget_first, WidgetID widget_last, Colours button_colour, int max_length, StringID button_tooltip, bool resizable=true)
Make a number of rows with button-like graphics, for enabling/disabling each company.
Definition: widget.cpp:3271
NWID_VSCROLLBAR
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition: widget_type.h:86
NWidgetBackground::SetPIP
void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post)
Set additional pre/inter/post space for the background widget.
Definition: widget.cpp:2076
ND_DROPDOWN_CLOSED
@ ND_DROPDOWN_CLOSED
Bit value of the 'dropdown closed' flag.
Definition: widget_type.h:364
NWidgetCore::disp_flags
NWidgetDisplay disp_flags
Flags that affect display and interaction with the widget.
Definition: widget_type.h:392
NWidgetBase::pos_x
int pos_x
Horizontal position of top-left corner of the widget in the window.
Definition: widget_type.h:250
NWidgetHorizontal
Horizontal container.
Definition: widget_type.h:560
NWidgetPIPContainer::pip_post
uint8_t pip_post
Amount of space after last widget.
Definition: widget_type.h:544
ST_RESIZE
@ ST_RESIZE
Resize the nested widget tree.
Definition: widget_type.h:123
WidgetLookup
std::map< WidgetID, class NWidgetBase * > WidgetLookup
Lookup between widget IDs and NWidget objects.
Definition: widget_type.h:138
WWT_TEXT
@ WWT_TEXT
Pure simple text.
Definition: widget_type.h:60
SetPIP
constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
Widget part function for setting a pre/inter/post spaces.
Definition: widget_type.h:1262
NWidgetPIPContainer
Container with pre/inter/post child space.
Definition: widget_type.h:532
NWidgetLeaf::NWidgetLeaf
NWidgetLeaf(WidgetType tp, Colours colour, WidgetID index, uint32_t data, StringID tip)
Nested leaf widget.
Definition: widget.cpp:2535
NWidgetBase::fill_x
uint fill_x
Horizontal fill stepsize (from initial size, 0 means not resizable).
Definition: widget_type.h:235
NWidgetSpacer::FillWidgetLookup
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Definition: widget.cpp:1784
NWidgetScrollbar
Nested widget to display and control a scrollbar in a window.
Definition: widget_type.h:898
NWidgetBackground::Draw
void Draw(const Window *w) override
Definition: widget.cpp:2193
WPT_RESIZE
@ WPT_RESIZE
Widget part for specifying resizing.
Definition: widget_type.h:91
NWidgetPIPContainer::flags
NWidContainerFlags flags
Flags of the container.
Definition: widget_type.h:541
NWidgetBase::SetupSmallestSize
virtual void SetupSmallestSize(Window *w)=0
NDB_SHADE_GREY
@ NDB_SHADE_GREY
Shade viewport to grey-scale.
Definition: widget_type.h:343
NWidgetPartTextLines::spacing
uint8_t spacing
Extra spacing around lines.
Definition: widget_type.h:1041
NWidgetCore::scrollbar_index
WidgetID scrollbar_index
Index of an attached scrollbar.
Definition: widget_type.h:397
WWT_PANEL
@ WWT_PANEL
Simple depressed panel.
Definition: widget_type.h:52
NWidgetPart::NWidgetPartUnion::pip
NWidgetPartPIP pip
Part with pre/inter/post spaces.
Definition: widget_type.h:1084
NWidgetStacked::SetDisplayedPlane
bool SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition: widget.cpp:1342
NWidgetBase::resize_y
uint resize_y
Vertical resize step (0 means not resizable).
Definition: widget_type.h:238
NWidgetPIPContainer::uz_pip_inter
uint8_t uz_pip_inter
Unscaled space between widgets.
Definition: widget_type.h:550
NWidgetPartAlignment
Widget part for setting text/image alignment within a widget.
Definition: widget_type.h:1058
ResizeWidgetValues
ResizeWidgetValues
WidgetData values for a resize box widget.
Definition: widget_type.h:40
Scrollbar::SetCount
void SetCount(size_t num)
Sets the number of elements in the list.
Definition: widget_type.h:782
NWidgetFunctionType
std::unique_ptr< NWidgetBase > NWidgetFunctionType()
Pointer to function returning a nested widget.
Definition: widget_type.h:1071
EventState
EventState
State of handling an event.
Definition: window_type.h:737
NWidgetVertical
Vertical container.
Definition: widget_type.h:583
NWidgetMatrix::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:1874
NWidgetStacked::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:1246
MakeWindowNWidgetTree
std::unique_ptr< NWidgetBase > MakeWindowNWidgetTree(std::span< const NWidgetPart > nwid_parts, NWidgetStacked **shade_select)
Make a nested widget tree for a window from a parts array.
Definition: widget.cpp:3229
NWidgetCore::colour
Colours colour
Colour of this widget.
Definition: widget_type.h:393
NWidgetMatrix::widget_h
int widget_h
The height of the child widget including inter spacing.
Definition: widget_type.h:623
NWidgetCore::highlight_colour
TextColour highlight_colour
Colour of highlight.
Definition: widget_type.h:398
NCB_EQUALSIZE
@ NCB_EQUALSIZE
Containers should keep all their (resizing) children equally large.
Definition: widget_type.h:522
NWidgetMatrix::GetCurrentElement
int GetCurrentElement() const
Get current element.
Definition: widget.cpp:1869
NWID_SPACER
@ NWID_SPACER
Invisible widget that takes some space.
Definition: widget_type.h:81
WWT_INSET
@ WWT_INSET
Pressed (inset) panel, most commonly used as combo box text area.
Definition: widget_type.h:53
NWidgetContainer
Baseclass for container widgets.
Definition: widget_type.h:461
NC_NONE
@ NC_NONE
All flags cleared.
Definition: widget_type.h:525
DECLARE_ENUM_AS_BIT_SET
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) enum CompanyManagerFaceVariable
Bitgroups of the CompanyManagerFace variable.
Definition: company_manager_face.h:29
NWidgetCore::index
const WidgetID index
Index of the nested widget (-1 means 'not used').
Definition: widget_type.h:394
NWidgetBase::SetDirty
virtual void SetDirty(const Window *w) const
Mark the widget as 'dirty' (in need of repaint).
Definition: widget.cpp:903
NWidgetResizeBase::uz_text_lines
uint8_t uz_text_lines
'Unscaled' text lines, stored for resize calculation.
Definition: widget_type.h:331
NWidgetBackground::NWidgetBackground
NWidgetBackground(WidgetType tp, Colours colour, WidgetID index, std::unique_ptr< NWidgetPIPContainer > &&child=nullptr)
Constructor parent nested widgets.
Definition: widget.cpp:2042
NWidgetPart::NWidgetPartUnion::cont_flags
NWidContainerFlags cont_flags
Part with container flags.
Definition: widget_type.h:1089
SetMinimalSize
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
Definition: widget_type.h:1139
StackedZeroSizePlanes
StackedZeroSizePlanes
Display planes with zero size for NWidgetStacked.
Definition: widget_type.h:482
SetPIPRatio
constexpr NWidgetPart SetPIPRatio(uint8_t ratio_pre, uint8_t ratio_inter, uint8_t ratio_post)
Widget part function for setting a pre/inter/post ratio.
Definition: widget_type.h:1274
NWidgetHorizontalLTR::NWidgetHorizontalLTR
NWidgetHorizontalLTR(NWidContainerFlags flags=NC_NONE)
Horizontal left-to-right container widget.
Definition: widget.cpp:1584
NWidgetPartDataTip::data
uint32_t data
Data value of the widget.
Definition: widget_type.h:1007
NWidgetResizeBase::min_x
uint min_x
Minimal horizontal size of only this widget.
Definition: widget_type.h:324
NWidgetStacked::NWidgetStacked
NWidgetStacked(WidgetID index)
Widgets stacked on top of each other.
Definition: widget.cpp:1234
NWidgetBase::pos_y
int pos_y
Vertical position of top-left corner of the widget in the window.
Definition: widget_type.h:251
NWidgetResizeBase::UpdateSize
bool UpdateSize(uint min_x, uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition: widget.cpp:1078
ND_SCROLLBAR_UP
@ ND_SCROLLBAR_UP
Bit value of the 'scrollbar up' flag.
Definition: widget_type.h:361
NWidgetCore::align
StringAlignment align
Alignment of text/image within widget.
Definition: widget_type.h:401
Scrollbar::SS_BIG
@ SS_BIG
Step in cap units.
Definition: widget_type.h:713
ND_SHADE_GREY
@ ND_SHADE_GREY
Bit value of the 'shade to grey' flag.
Definition: widget_type.h:358
WPT_PADDING
@ WPT_PADDING
Widget part for specifying a padding.
Definition: widget_type.h:96
NWidgetCore::text_colour
TextColour text_colour
Colour of text within widget.
Definition: widget_type.h:399
NWidgetPart::type
WidgetType type
Type of the part.
Definition: widget_type.h:1078
Scrollbar::GetPosition
size_type GetPosition() const
Gets the position of the first visible element in the list.
Definition: widget_type.h:742
NWidgetResizeBase::min_y
uint min_y
Minimal vertical size of only this widget.
Definition: widget_type.h:325
NWidgetHorizontalLTR
Horizontal container that doesn't change the direction of the widgets for RTL languages.
Definition: widget_type.h:572
FontSize
FontSize
Available font sizes.
Definition: gfx_type.h:208
NWidgetMatrix::widget_w
int widget_w
The width of the child widget including inter spacing.
Definition: widget_type.h:622
NWidgetViewport::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:2254
MAT_ROW_BITS
@ MAT_ROW_BITS
Number of bits for the number of rows in the matrix.
Definition: widget_type.h:28
Window
Data structure for an opened window.
Definition: window_gui.h:276
SizingType
SizingType
Different forms of sizing nested widgets, using NWidgetBase::AssignSizePosition()
Definition: widget_type.h:121
NWidgetBase::SetPadding
void SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Set additional space (padding) around the widget.
Definition: widget_type.h:199
NWidContainerFlags
NWidContainerFlags
Nested widget container flags,.
Definition: widget_type.h:521
SZSP_VERTICAL
@ SZSP_VERTICAL
Display plane with zero size horizontally, and filling and resizing vertically.
Definition: widget_type.h:483
RWV_SHOW_BEVEL
@ RWV_SHOW_BEVEL
Bevel of resize box is shown.
Definition: widget_type.h:41
Scrollbar::count
size_type count
Number of elements in the list.
Definition: widget_type.h:703
Clamp
constexpr T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition: math_func.hpp:79
NWidgetResizeBase::absolute
bool absolute
Set if minimum size is fixed and should not be resized.
Definition: widget_type.h:327
MatrixWidgetValues
MatrixWidgetValues
Bits of the WWT_MATRIX widget data.
Definition: widget_type.h:21
NWidgetBackground
Nested widget with a child.
Definition: widget_type.h:651
NDB_DISABLED
@ NDB_DISABLED
Widget is disabled (greyed out) bit.
Definition: widget_type.h:340
SetDataTip
constexpr NWidgetPart SetDataTip(uint32_t data, StringID tip)
Widget part function for setting the data and tooltip.
Definition: widget_type.h:1204
NWidgetVertical::NWidgetVertical
NWidgetVertical(NWidContainerFlags flags=NC_NONE)
Vertical container widget.
Definition: widget.cpp:1595
NWidgetViewport::Draw
void Draw(const Window *w) override
Definition: widget.cpp:2261
SetMinimalTextLines
constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
Definition: widget_type.h:1151
NWID_SELECTION
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition: widget_type.h:82
NWidgetMatrix::colour
Colours colour
Colour of this widget.
Definition: widget_type.h:616
NWidgetResizeBase::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:1099
NWidgetPart::NWidgetPartUnion::padding
NWidgetPartPaddings padding
Part with paddings.
Definition: widget_type.h:1083
NWidgetCore
Base class for a 'real' widget.
Definition: widget_type.h:372
SetupWidgetDimensions
void SetupWidgetDimensions()
Set up pre-scaled versions of Widget Dimensions.
Definition: widget.cpp:66
NWidgetLeaf::closebox_dimension
static Dimension closebox_dimension
Cached size of a closebox widget.
Definition: widget_type.h:931
NWidgetLeaf::SetupSmallestSize
void SetupSmallestSize(Window *w) override
Definition: widget.cpp:2635
AWV_RIGHT
@ AWV_RIGHT
Force the arrow to the right.
Definition: widget_type.h:36
WWT_DEBUGBOX
@ WWT_DEBUGBOX
NewGRF debug box (at top-right of a window, between WWT_CAPTION and WWT_SHADEBOX)
Definition: widget_type.h:65
gfx_type.h
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:75
NWidgetPartDataTip::tooltip
StringID tooltip
Tooltip of the widget.
Definition: widget_type.h:1008
WPT_FUNCTION
@ WPT_FUNCTION
Widget part for calling a user function.
Definition: widget_type.h:105
NWidgetLeaf::Draw
void Draw(const Window *w) override
Definition: widget.cpp:2806
WPT_TEXTSTYLE
@ WPT_TEXTSTYLE
Widget part for specifying text colour.
Definition: widget_type.h:99
SetAspect
constexpr NWidgetPart SetAspect(float ratio, AspectFlags flags=AspectFlags::ResizeX)
Widget part function for setting the aspect ratio.
Definition: widget_type.h:1297
NWidgetBase::resize_x
uint resize_x
Horizontal resize step (0 means not resizable).
Definition: widget_type.h:237
AWV_INCREASE
@ AWV_INCREASE
Arrow to the right or in case of RTL to the left.
Definition: widget_type.h:34
NWidgetPartWidget::colour
Colours colour
Widget colour.
Definition: widget_type.h:1016
NWidgetPart::NWidgetPartUnion::aspect
NWidgetPartAspect aspect
Part to set aspect ratio.
Definition: widget_type.h:1090
NWidgetPartTextLines::size
FontSize size
Font size of text lines.
Definition: widget_type.h:1042
CLRBITS
#define CLRBITS(x, y)
Clears several bits in a variable.
Definition: bitmath_func.hpp:166
NWidgetBase::current_x
uint current_x
Current horizontal size (after resizing).
Definition: widget_type.h:245
NWidgetStacked::shown_plane
int shown_plane
Plane being displayed (for NWID_SELECTION only).
Definition: widget_type.h:514
Scrollbar::GetScrolledItemFromWidget
auto GetScrolledItemFromWidget(Tcontainer &container, int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Return an iterator pointing to the element of a scrolled widget that a user clicked in.
Definition: widget_type.h:881
NWidgetResizeBase::SetMinimalSize
void SetMinimalSize(uint min_x, uint min_y)
Set minimal size of the widget.
Definition: widget.cpp:995
NWidgetScrollbar::horizontal_dimension
static Dimension horizontal_dimension
Cached size of horizontal scrollbar button.
Definition: widget_type.h:911
Scrollbar::GetVisibleRangeIterators
auto GetVisibleRangeIterators(Tcontainer &container) const
Get a pair of iterators for the range of visible elements in a container.
Definition: widget_type.h:862
NWidgetResizeBase::SetMinimalSizeAbsolute
void SetMinimalSizeAbsolute(uint min_x, uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition: widget.cpp:1008
NWidgetScrollbar::Draw
void Draw(const Window *w) override
Definition: widget.cpp:2452
NWidgetLeaf::ButtonHit
bool ButtonHit(const Point &pt)
For a NWID_BUTTON_DROPDOWN, test whether pt refers to the button or to the drop-down.
Definition: widget.cpp:2946
SetTextStyle
constexpr NWidgetPart SetTextStyle(TextColour colour, FontSize size=FS_NORMAL)
Widget part function for setting the text style.
Definition: widget_type.h:1162
NWidgetHorizontal::NWidgetHorizontal
NWidgetHorizontal(NWidContainerFlags flags=NC_NONE)
Horizontal container widget.
Definition: widget.cpp:1401
NWidgetPartTextStyle::colour
TextColour colour
TextColour for DrawString.
Definition: widget_type.h:1050
NWidgetCore::SetDisabled
void SetDisabled(bool disabled)
Disable (grey-out) or enable the widget.
Definition: widget_type.h:445
NWidgetPart::NWidgetPartUnion::xy
Point xy
Part with an x/y size.
Definition: widget_type.h:1080
NWidgetBase::padding
RectPadding padding
Padding added to the widget. Managed by parent container widget. (parent container may swap left and ...
Definition: widget_type.h:253
NWidgetStacked::index
const WidgetID index
If non-negative, index in the Window::widget_lookup.
Definition: widget_type.h:515
ND_SCROLLBAR_BTN
@ ND_SCROLLBAR_BTN
Bit value of the 'scrollbar up' or 'scrollbar down' flag.
Definition: widget_type.h:363
WWT_TEXTBTN
@ WWT_TEXTBTN
(Toggle) Button with text
Definition: widget_type.h:57
NWidgetPartWidget::index
WidgetID index
Index of the widget.
Definition: widget_type.h:1017
ZoomLevel
ZoomLevel
All zoom levels we know.
Definition: zoom_type.h:16
NWID_BUTTON_DROPDOWN
@ NWID_BUTTON_DROPDOWN
Button with a drop-down.
Definition: widget_type.h:84
NWidgetMatrix::widgets_x
int widgets_x
The number of visible widgets in horizontal direction.
Definition: widget_type.h:624
AWV_DECREASE
@ AWV_DECREASE
Arrow to the left or in case of RTL to the right.
Definition: widget_type.h:33
WWT_DROPDOWN
@ WWT_DROPDOWN
Drop down list.
Definition: widget_type.h:72
ND_NO_TRANSPARENCY
@ ND_NO_TRANSPARENCY
Bit value of the 'no transparency' flag.
Definition: widget_type.h:357
NC_BIGFIRST
@ NC_BIGFIRST
Value of the NCB_BIGFIRST flag.
Definition: widget_type.h:527
NDB_DROPDOWN_ACTIVE
@ NDB_DROPDOWN_ACTIVE
Dropdown menu of the button dropdown widget is active.
Definition: widget_type.h:346
NWidgetPartAlignment::align
StringAlignment align
Alignment of text/image.
Definition: widget_type.h:1059
NWidgetBackground::AssignSizePosition
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Definition: widget.cpp:2175
WWT_SHADEBOX
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition: widget_type.h:66
NWidgetBackground::Add
void Add(std::unique_ptr< NWidgetBase > &&nwid)
Add a child to the parent.
Definition: widget.cpp:2057
NWidgetPart::NWidgetPartUnion::widget
NWidgetPartWidget widget
Part with a start of a widget.
Definition: widget_type.h:1082
NWidgetMatrix::SetClicked
void SetClicked(int clicked)
Sets the clicked element in the matrix.
Definition: widget.cpp:1819
WPT_ENDCONTAINER
@ WPT_ENDCONTAINER
Widget part to denote end of a container.
Definition: widget_type.h:106
HasBit
constexpr debug_inline bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103