OpenTTD Source 20250312-master-gcdcc6b491d
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/bitmath_func.hpp"
14#include "core/math_func.hpp"
15#include "strings_type.h"
16#include "gfx_type.h"
17#include "window_type.h"
18
26
32
108
110enum SizingType : uint8_t {
113};
114
115enum class AspectFlag : uint8_t {
116 ResizeX,
117 ResizeY,
118};
120
121/* Forward declarations. */
122class NWidgetCore;
123class Scrollbar;
124
126using WidgetLookup = std::map<WidgetID, class NWidgetBase *>;
127
135public:
136 NWidgetBase(WidgetType tp) : type(tp) {}
137 virtual ~NWidgetBase() = default;
138
139 void ApplyAspectRatio();
140 virtual void AdjustPaddingForZoom();
141 virtual void SetupSmallestSize(Window *w) = 0;
142 virtual void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) = 0;
143
144 virtual void FillWidgetLookup(WidgetLookup &widget_lookup) = 0;
145
146 virtual NWidgetCore *GetWidgetFromPos(int x, int y) = 0;
148
154 template <class NWID>
156 {
157 for (NWidgetBase *nwid_parent = this->parent; nwid_parent != nullptr; nwid_parent = nwid_parent->parent) {
158 if (NWID *nwid = dynamic_cast<NWID *>(nwid_parent); nwid != nullptr) return nwid;
159 }
160 return nullptr;
161 }
162
168 template <class NWID>
169 const NWID *GetParentWidget() const
170 {
171 for (const NWidgetBase *nwid_parent = this->parent; nwid_parent != nullptr; nwid_parent = nwid_parent->parent) {
172 if (const NWID *nwid = dynamic_cast<const NWID *>(nwid_parent); nwid != nullptr) return nwid;
173 }
174 return nullptr;
175 }
176
177 virtual bool IsHighlighted() const { return false; }
178 virtual TextColour GetHighlightColour() const { return TC_INVALID; }
179 virtual void SetHighlighted([[maybe_unused]] TextColour highlight_colour) {}
180
188 inline void SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
189 {
190 this->uz_padding.top = top;
191 this->uz_padding.right = right;
192 this->uz_padding.bottom = bottom;
193 this->uz_padding.left = left;
194 this->AdjustPaddingForZoom();
195 }
196
201 inline void SetPadding(const RectPadding &padding)
202 {
203 this->uz_padding = padding;
204 this->AdjustPaddingForZoom();
205 }
206
207 inline uint GetHorizontalStepSize(SizingType sizing) const;
208 inline uint GetVerticalStepSize(SizingType sizing) const;
209
210 virtual void Draw(const Window *w) = 0;
211 virtual void SetDirty(const Window *w) const;
212
213 Rect GetCurrentRect() const
214 {
215 Rect r;
216 r.left = this->pos_x;
217 r.top = this->pos_y;
218 r.right = this->pos_x + this->current_x - 1;
219 r.bottom = this->pos_y + this->current_y - 1;
220 return r;
221 }
222
224 uint fill_x = 0;
225 uint fill_y = 0;
226 uint resize_x = 0;
227 uint resize_y = 0;
228 /* Size of the widget in the smallest window possible.
229 * Computed by #SetupSmallestSize() followed by #AssignSizePosition().
230 */
231 uint smallest_x = 0;
232 uint smallest_y = 0;
233 /* Current widget size (that is, after resizing). */
234 uint current_x = 0;
235 uint current_y = 0;
236 float aspect_ratio = 0;
237 AspectFlags aspect_flags = AspectFlag::ResizeX;
238
239 int pos_x = 0;
240 int pos_y = 0;
241
244
245 NWidgetBase *parent = nullptr;
246
247protected:
248 inline void StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height);
249};
250
256{
257 return (sizing == ST_RESIZE) ? this->resize_x : this->fill_x;
258}
259
265{
266 return (sizing == ST_RESIZE) ? this->resize_y : this->fill_y;
267}
268
277inline void NWidgetBase::StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height)
278{
279 this->pos_x = x;
280 this->pos_y = y;
281 if (sizing == ST_SMALLEST) {
282 this->smallest_x = given_width;
283 this->smallest_y = given_height;
284 }
285 this->current_x = given_width;
286 this->current_y = given_height;
287}
288
289
295public:
297
298 void AdjustPaddingForZoom() override;
299 void SetMinimalSize(uint min_x, uint min_y);
300 void SetMinimalSizeAbsolute(uint min_x, uint min_y);
301 void SetMinimalTextLines(uint8_t min_lines, uint8_t spacing, FontSize size);
302 void SetFill(uint fill_x, uint fill_y);
303 void SetResize(uint resize_x, uint resize_y);
304 void SetAspect(float ratio, AspectFlags flags = AspectFlag::ResizeX);
305 void SetAspect(int x_ratio, int y_ratio, AspectFlags flags = AspectFlag::ResizeX);
306
307 bool UpdateMultilineWidgetSize(const std::string &str, int max_lines);
308 bool UpdateSize(uint min_x, uint min_y);
309 bool UpdateVerticalSize(uint min_y);
310
311 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
312
313 uint min_x = 0;
314 uint min_y = 0;
315
316 bool absolute = false;
317 uint uz_min_x = 0;
318 uint uz_min_y = 0;
319
320 uint8_t uz_text_lines = 0;
321 uint8_t uz_text_spacing = 0;
323};
324
326enum NWidgetDisplayFlag : uint8_t {
327 /* Generic. */
330
331 /* Viewport widget. */
335
336 /* Button dropdown widget. */
338
339 /* Scrollbar widget. */
342
343 /* Generic. */
346};
348
351 StringID string{};
352 SpriteID sprite{};
353 ArrowWidgetValues arrow_widget_type{};
354 ResizeWidgetValues resize_widget_type{};
355 Dimension matrix{};
356};
357
363public:
365
366 void SetString(StringID string);
368 void SetSprite(SpriteID sprite);
370 void SetMatrixDimension(uint32_t columns, uint32_t rows);
373 StringID GetToolTip() const;
376
377 StringID GetString() const;
378 WidgetID GetIndex() const;
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 inline TextColour GetTextColour() const { return this->text_colour; }
387 inline FontSize GetFontSize() const { return this->text_size; }
388
389 void FillWidgetLookup(WidgetLookup &widget_lookup) override;
390 NWidgetCore *GetWidgetFromPos(int x, int y) override;
391 bool IsHighlighted() const override;
392 TextColour GetHighlightColour() const override;
394
396 Colours colour;
397protected:
398 const WidgetID index = -1;
406
407 /* This function constructs the widgets, so it should be able to write the variables. */
408 friend void ApplyNWidgetPartAttribute(const struct NWidgetPart &nwid, NWidgetBase *dest);
409};
410
415inline void NWidgetCore::SetHighlighted(TextColour highlight_colour)
416{
418 this->highlight_colour = highlight_colour;
419}
420
422inline bool NWidgetCore::IsHighlighted() const
423{
425}
426
429{
430 return this->highlight_colour;
431}
432
437inline void NWidgetCore::SetLowered(bool lowered)
438{
440}
441
443inline bool NWidgetCore::IsLowered() const
444{
446}
447
452inline void NWidgetCore::SetDisabled(bool disabled)
453{
455}
456
458inline bool NWidgetCore::IsDisabled() const
459{
461}
462
463
469public:
471
472 void AdjustPaddingForZoom() override;
473 void Add(std::unique_ptr<NWidgetBase> &&wid);
474 void FillWidgetLookup(WidgetLookup &widget_lookup) override;
475
476 void Draw(const Window *w) override;
477 NWidgetCore *GetWidgetFromPos(int x, int y) override;
478
480 inline bool IsEmpty() { return this->children.empty(); }
481
483
484protected:
485 std::vector<std::unique_ptr<NWidgetBase>> children{};
486};
487
496
508public:
510
511 void SetupSmallestSize(Window *w) override;
512 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
514
515 void Draw(const Window *w) override;
516 NWidgetCore *GetWidgetFromPos(int x, int y) override;
517
518 bool SetDisplayedPlane(int plane);
519
520 int shown_plane = 0;
521 const WidgetID index = -1;
522private:
524};
525
532
535public:
537
538 void AdjustPaddingForZoom() override;
539 void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post);
540 void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_rato_post);
541
542protected:
544 uint8_t pip_pre = 0;
545 uint8_t pip_inter = 0;
546 uint8_t pip_post = 0;
547 uint8_t pip_ratio_pre = 0;
548 uint8_t pip_ratio_inter = 0;
549 uint8_t pip_ratio_post = 0;
550
551 uint8_t uz_pip_pre = 0;
552 uint8_t uz_pip_inter = 0;
553 uint8_t uz_pip_post = 0;
554
555 uint8_t gaps = 0;
556};
557
563public:
565
566 void SetupSmallestSize(Window *w) override;
567 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
568};
569
575public:
577
578 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
579};
580
586public:
588
589 void SetupSmallestSize(Window *w) override;
590 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
591};
592
602public:
604
605 void SetClicked(int clicked);
606 void SetCount(int count);
608 int GetCurrentElement() const;
609
610 void SetupSmallestSize(Window *w) override;
611 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
612 void FillWidgetLookup(WidgetLookup &widget_lookup) override;
613
614 NWidgetCore *GetWidgetFromPos(int x, int y) override;
615 void Draw(const Window *w) override;
616protected:
617 const WidgetID index = -1;
618 Colours colour{};
619 int clicked = -1;
620 int count = -1;
622 Scrollbar *sb = nullptr;
623private:
624 int widget_w = 0;
625 int widget_h = 0;
626 int widgets_x = 0;
627 int widgets_y = 0;
628
629 void GetScrollOffsets(int &start_x, int &start_y, int &base_offs_x, int &base_offs_y);
630};
631
632
638public:
639 NWidgetSpacer(int width, int height);
640
641 void SetupSmallestSize(Window *w) override;
642 void FillWidgetLookup(WidgetLookup &widget_lookup) override;
643
644 void Draw(const Window *w) override;
645 void SetDirty(const Window *w) const override;
646 NWidgetCore *GetWidgetFromPos(int x, int y) override;
647};
648
654public:
655 NWidgetBackground(WidgetType tp, Colours colour, WidgetID index, std::unique_ptr<NWidgetPIPContainer> &&child = nullptr);
656
657 void Add(std::unique_ptr<NWidgetBase> &&nwid);
658 void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post);
659 void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_ratio_post);
660
661 void AdjustPaddingForZoom() override;
662 void SetupSmallestSize(Window *w) override;
663 void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override;
664
665 void FillWidgetLookup(WidgetLookup &widget_lookup) override;
666
667 void Draw(const Window *w) override;
668 NWidgetCore *GetWidgetFromPos(int x, int y) override;
670
671private:
672 std::unique_ptr<NWidgetPIPContainer> child{};
673};
674
685public:
687
688 void SetupSmallestSize(Window *w) override;
689 void Draw(const Window *w) override;
690
691 void InitializeViewport(Window *w, std::variant<TileIndex, VehicleID> focus, ZoomLevel zoom);
693};
694
699public:
700 using size_type = int32_t;
701 static constexpr size_type max_size_type = std::numeric_limits<size_type>::max();
702 static constexpr size_type npos = max_size_type;
703private:
704 const bool is_vertical = false;
705 size_type count = 0;
706 size_type cap = 0;
707 size_type pos = 0;
708 size_type stepsize = 1;
709
710public:
717
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
898class NWidgetScrollbar : public NWidgetCore, public Scrollbar {
899public:
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
909private:
912};
913
918class NWidgetLeaf : public NWidgetCore {
919public:
920 NWidgetLeaf(WidgetType tp, Colours colour, WidgetID index, const WidgetData &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
932private:
937};
938
946inline 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
1012
1021
1028
1034 uint8_t pre, inter, post;
1035};
1036
1046
1055
1063
1065 float ratio;
1066 AspectFlags flags;
1067};
1068
1073typedef std::unique_ptr<NWidgetBase> NWidgetFunctionType();
1074
1093
1094 /* Constructors for each NWidgetPartUnion data type. */
1095 constexpr NWidgetPartUnion() : xy() {}
1096 constexpr NWidgetPartUnion(Point xy) : xy(xy) {}
1097 constexpr NWidgetPartUnion(NWidgetPartDataTip data_tip) : data_tip(data_tip) {}
1098 constexpr NWidgetPartUnion(NWidgetPartWidget widget) : widget(widget) {}
1099 constexpr NWidgetPartUnion(NWidgetPartPaddings padding) : padding(padding) {}
1100 constexpr NWidgetPartUnion(NWidgetPartPIP pip) : pip(pip) {}
1101 constexpr NWidgetPartUnion(NWidgetPartTextLines text_lines) : text_lines(text_lines) {}
1102 constexpr NWidgetPartUnion(NWidgetPartTextStyle text_style) : text_style(text_style) {}
1103 constexpr NWidgetPartUnion(NWidgetPartAlignment align) : align(align) {}
1104 constexpr NWidgetPartUnion(NWidgetFunctionType *func_ptr) : func_ptr(func_ptr) {}
1105 constexpr NWidgetPartUnion(NWidContainerFlags cont_flags) : cont_flags(cont_flags) {}
1106 constexpr NWidgetPartUnion(NWidgetPartAspect aspect) : aspect(aspect) {}
1107 } u;
1108
1109 /* Constructors for each NWidgetPart data type. */
1110 explicit constexpr NWidgetPart(WidgetType type) : type(type), u() {}
1111 constexpr NWidgetPart(WidgetType type, Point xy) : type(type), u(xy) {}
1112 constexpr NWidgetPart(WidgetType type, NWidgetPartDataTip data_tip) : type(type), u(data_tip) {}
1113 constexpr NWidgetPart(WidgetType type, NWidgetPartWidget widget) : type(type), u(widget) {}
1114 constexpr NWidgetPart(WidgetType type, NWidgetPartPaddings padding) : type(type), u(padding) {}
1115 constexpr NWidgetPart(WidgetType type, NWidgetPartPIP pip) : type(type), u(pip) {}
1116 constexpr NWidgetPart(WidgetType type, NWidgetPartTextLines text_lines) : type(type), u(text_lines) {}
1117 constexpr NWidgetPart(WidgetType type, NWidgetPartTextStyle text_style) : type(type), u(text_style) {}
1118 constexpr NWidgetPart(WidgetType type, NWidgetPartAlignment align) : type(type), u(align) {}
1119 constexpr NWidgetPart(WidgetType type, NWidgetFunctionType *func_ptr) : type(type), u(func_ptr) {}
1120 constexpr NWidgetPart(WidgetType type, NWidContainerFlags cont_flags) : type(type), u(cont_flags) {}
1121 constexpr NWidgetPart(WidgetType type, NWidgetPartAspect aspect) : type(type), u(aspect) {}
1122};
1123
1130constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
1131{
1132 return NWidgetPart{WPT_RESIZE, Point{dx, dy}};
1133}
1134
1141constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
1142{
1143 return NWidgetPart{WPT_MINSIZE, Point{x, y}};
1144}
1145
1153constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size = FS_NORMAL)
1154{
1155 return NWidgetPart{WPT_MINTEXTLINES, NWidgetPartTextLines{lines, spacing, size}};
1156}
1157
1165{
1166 return NWidgetPart{WPT_TEXTSTYLE, NWidgetPartTextStyle{colour, size}};
1167}
1168
1178
1185constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
1186{
1187 return NWidgetPart{WPT_FILL, Point{fill_x, fill_y}};
1188}
1189
1196{
1198}
1199
1206constexpr NWidgetPart SetStringTip(StringID string, StringID tip = {})
1207{
1208 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{.string = string}, tip}};
1209}
1210
1217constexpr NWidgetPart SetSpriteTip(SpriteID sprite, StringID tip = {})
1218{
1219 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{.sprite = sprite}, tip}};
1220}
1221
1229{
1230 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{.arrow_widget_type = widget_type}, tip}};
1231}
1232
1240{
1241 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{.resize_widget_type = widget_type}, tip}};
1242}
1243
1251constexpr NWidgetPart SetMatrixDataTip(uint32_t cols, uint32_t rows, StringID tip = {})
1252{
1253 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{.matrix{ cols, rows }}, tip}};
1254}
1255
1262{
1263 return NWidgetPart{WPT_DATATIP, NWidgetPartDataTip{{}, tip}};
1264}
1265
1275constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
1276{
1277 return NWidgetPart{WPT_PADDING, NWidgetPartPaddings{left, top, right, bottom}};
1278}
1279
1286constexpr NWidgetPart SetPadding(uint8_t horizontal, uint8_t vertical)
1287{
1288 return NWidgetPart{WPT_PADDING, NWidgetPartPaddings{horizontal, vertical, horizontal, vertical}};
1289}
1290
1296constexpr NWidgetPart SetPadding(const RectPadding &padding)
1297{
1299}
1300
1306constexpr NWidgetPart SetPadding(uint8_t padding)
1307{
1308 return SetPadding(padding, padding, padding, padding);
1309}
1310
1318constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
1319{
1320 return NWidgetPart{WPT_PIPSPACE, NWidgetPartPIP{pre, inter, post}};
1321}
1322
1330constexpr NWidgetPart SetPIPRatio(uint8_t ratio_pre, uint8_t ratio_inter, uint8_t ratio_post)
1331{
1332 return NWidgetPart{WPT_PIPRATIO, NWidgetPartPIP{ratio_pre, ratio_inter, ratio_post}};
1333}
1334
1343{
1344 return NWidgetPart{WPT_SCROLLBAR, NWidgetPartWidget{INVALID_COLOUR, index}};
1345}
1346
1353constexpr NWidgetPart SetAspect(float ratio, AspectFlags flags = AspectFlag::ResizeX)
1354{
1355 return NWidgetPart{WPT_ASPECT, NWidgetPartAspect{ratio, flags}};
1356}
1357
1367constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx = -1)
1368{
1369 return NWidgetPart{tp, NWidgetPartWidget{col, idx}};
1370}
1371
1378constexpr NWidgetPart NWidget(WidgetType tp, NWidContainerFlags cont_flags = {})
1379{
1380 return NWidgetPart{tp, NWidContainerFlags{cont_flags}};
1381}
1382
1389{
1390 return NWidgetPart{WPT_FUNCTION, func_ptr};
1391}
1392
1394std::unique_ptr<NWidgetBase> MakeNWidgets(std::span<const NWidgetPart> nwid_parts, std::unique_ptr<NWidgetBase> &&container);
1395std::unique_ptr<NWidgetBase> MakeWindowNWidgetTree(std::span<const NWidgetPart> nwid_parts, NWidgetStacked **shade_select);
1396
1397std::unique_ptr<NWidgetBase> MakeCompanyButtonRows(WidgetID widget_first, WidgetID widget_last, Colours button_colour, int max_length, StringID button_tooltip, bool resizable = true);
1398
1400
1401#endif /* WIDGET_TYPE_H */
Functions related to bit mathematics.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
constexpr Timpl & Set()
Set all bits.
constexpr Timpl & Reset(Tvalue_type value)
Reset the value-th bit.
Nested widget with a child.
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:2359
NWidgetBase * GetWidgetOfType(WidgetType tp) override
Retrieve a widget by its type.
Definition widget.cpp:2369
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:2305
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:2240
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:2206
std::unique_ptr< NWidgetPIPContainer > child
Child widget.
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:2323
void Add(std::unique_ptr< NWidgetBase > &&nwid)
Add a child to the parent.
Definition widget.cpp:2187
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:2317
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:2225
Baseclass for nested widgets.
void StoreSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height)
Store size and position.
float aspect_ratio
Desired aspect ratio of widget.
uint GetHorizontalStepSize(SizingType sizing) const
Get the horizontal sizing step.
virtual void SetupSmallestSize(Window *w)=0
Compute smallest size needed by the widget.
virtual void SetDirty(const Window *w) const
Mark the widget as 'dirty' (in need of repaint).
Definition widget.cpp:905
WidgetType type
Type of the widget / nested widget.
uint resize_x
Horizontal resize step (0 means not resizable).
uint fill_x
Horizontal fill stepsize (from initial size, 0 means not resizable).
NWID * GetParentWidget()
Get parent widget of type NWID.
NWidgetBase * parent
Parent widget of this widget, automatically filled in when added to container.
virtual void FillWidgetLookup(WidgetLookup &widget_lookup)=0
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
RectPadding uz_padding
Unscaled padding, for resize calculation.
uint smallest_x
Smallest horizontal size of the widget in a filled window.
AspectFlags aspect_flags
Which dimensions can be resized.
virtual void Draw(const Window *w)=0
Draw the widgets of the tree.
uint current_x
Current horizontal size (after resizing).
int pos_y
Vertical position of top-left corner of the widget in the window.
virtual NWidgetCore * GetWidgetFromPos(int x, int y)=0
Retrieve a widget by its position.
int pos_x
Horizontal position of top-left corner of the widget in the window.
void SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Set additional space (padding) around the widget.
void SetPadding(const RectPadding &padding)
Set additional space (padding) around the widget.
uint smallest_y
Smallest vertical size of the widget in a filled window.
virtual void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl)=0
Assign size and position to the widget.
virtual NWidgetBase * GetWidgetOfType(WidgetType tp)
Retrieve a widget by its type.
Definition widget.cpp:925
uint fill_y
Vertical fill stepsize (from initial size, 0 means not resizable).
uint resize_y
Vertical resize step (0 means not resizable).
RectPadding padding
Padding added to the widget. Managed by parent container widget. (parent container may swap left and ...
uint current_y
Current vertical size (after resizing).
uint GetVerticalStepSize(SizingType sizing) const
Get the vertical sizing step.
const NWID * GetParentWidget() const
Get parent widget of type NWID.
Baseclass for container widgets.
void Add(std::unique_ptr< NWidgetBase > &&wid)
Append widget wid to container.
Definition widget.cpp:1280
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:1287
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:1294
bool IsEmpty()
Return whether the container is empty.
std::vector< std::unique_ptr< NWidgetBase > > children
Child widgets in container.
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:1303
NWidgetBase * GetWidgetOfType(WidgetType tp) override
Retrieve a widget by its type.
Definition widget.cpp:1258
Base class for a 'real' widget.
WidgetData widget_data
Data of the widget.
void SetToolTip(StringID tool_tip)
Set the tool tip of the nested widget.
Definition widget.cpp:1198
bool IsHighlighted() const override
Return whether the widget is highlighted.
bool IsDisabled() const
Return whether the widget is disabled.
void SetSprite(SpriteID sprite)
Set sprite of the nested widget.
Definition widget.cpp:1148
WidgetID GetIndex() const
Get the WidgetID of this nested widget.
Definition widget.cpp:1234
NWidgetDisplayFlags disp_flags
Flags that affect display and interaction with the widget.
void SetTextStyle(TextColour colour, FontSize size)
Set the text style of the nested widget.
Definition widget.cpp:1188
WidgetID GetScrollbarIndex() const
Get the WidgetID of this nested widget's scrollbar.
Definition widget.cpp:1243
TextColour highlight_colour
Colour of highlight.
void SetAlignment(StringAlignment align)
Set the text/image alignment of the nested widget.
Definition widget.cpp:1216
void SetResizeWidgetType(ResizeWidgetValues type)
Set the resize widget type of the nested widget.
Definition widget.cpp:1178
void SetSpriteTip(SpriteID sprite, StringID tool_tip)
Set sprite and tool tip of the nested widget.
Definition widget.cpp:1158
const WidgetID index
Index of the nested widget (-1 means 'not used').
StringAlignment align
Alignment of text/image within widget.
FontSize text_size
Size of text within widget.
void SetHighlighted(TextColour highlight_colour) override
Highlight the widget or not.
StringID GetString() const
Get the string that has been set for this nested widget.
Definition widget.cpp:1225
WidgetID scrollbar_index
Index of an attached scrollbar.
StringID GetToolTip() const
Get the tool tip of the nested widget.
Definition widget.cpp:1207
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:1253
void SetString(StringID string)
Set string of the nested widget.
Definition widget.cpp:1128
TextColour text_colour
Colour of text within widget.
Colours colour
Colour of this widget.
void SetMatrixDimension(uint32_t columns, uint32_t rows)
Set the matrix dimension.
Definition widget.cpp:1169
void SetLowered(bool lowered)
Lower or raise the widget.
TextColour GetHighlightColour() const override
Return the colour of the highlight.
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:1248
void SetStringTip(StringID string, StringID tool_tip)
Set string and tool tip of the nested widget.
Definition widget.cpp:1138
StringID tool_tip
Tooltip of the widget.
void SetDisabled(bool disabled)
Disable (grey-out) or enable the widget.
bool IsLowered() const
Return whether the widget is lowered.
Horizontal container that doesn't change the direction of the widgets for RTL languages.
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:1719
Horizontal container.
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:1535
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:1604
Leaf widget.
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:2964
static void InvalidateDimensionCache()
Reset the cached dimensions.
Definition widget.cpp:2664
static Dimension resizebox_dimension
Cached size of a resizebox widget.
static Dimension shadebox_dimension
Cached size of a shadebox widget.
static Dimension closebox_dimension
Cached size of a closebox widget.
static Dimension stickybox_dimension
Cached size of a stickybox widget.
static Dimension defsizebox_dimension
Cached size of a defsizebox widget.
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:2797
static Dimension dropdown_dimension
Cached size of a dropdown widget.
static Dimension debugbox_dimension
Cached size of a debugbox widget.
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:3094
Matrix container with implicitly equal sized (virtual) sub-widgets.
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:2086
int count
Amount of valid elements.
void SetClicked(int clicked)
Sets the clicked element in the matrix.
Definition widget.cpp:1949
int GetCurrentElement() const
Get current element.
Definition widget.cpp:1999
const WidgetID index
If non-negative, index in the Window::widget_lookup.
Scrollbar * sb
The scrollbar we're associated with.
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:2004
int widget_w
The width of the child widget including inter spacing.
void SetScrollbar(Scrollbar *sb)
Assign a scrollbar to this matrix.
Definition widget.cpp:1990
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:2141
int current_element
The element currently being processed.
int widgets_x
The number of visible widgets in horizontal direction.
int widget_h
The height of the child widget including inter spacing.
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:2026
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:2050
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:2056
int clicked
The currently clicked element.
void SetCount(int count)
Set the number of elements in this matrix.
Definition widget.cpp:1966
int widgets_y
The number of visible widgets in vertical direction.
Colours colour
Colour of this widget.
Container with pre/inter/post child space.
uint8_t gaps
Number of gaps between widgets.
NWidContainerFlags flags
Flags of the container.
uint8_t pip_pre
Amount of space before first widget.
uint8_t uz_pip_pre
Unscaled space before first widget.
uint8_t uz_pip_inter
Unscaled space between widgets.
uint8_t pip_ratio_pre
Ratio of remaining space before first widget.
void SetPIPRatio(uint8_t pip_ratio_pre, uint8_t pip_ratio_inter, uint8_t pip_rato_post)
Set additional pre/inter/post space for the container.
Definition widget.cpp:1523
void SetPIP(uint8_t pip_pre, uint8_t pip_inter, uint8_t pip_post)
Set additional pre/inter/post space for the container.
Definition widget.cpp:1503
uint8_t pip_post
Amount of space after last widget.
uint8_t pip_ratio_inter
Ratio of remaining space between widgets.
uint8_t pip_ratio_post
Ratio of remaining space after last widget.
uint8_t uz_pip_post
Unscaled space after last widget.
uint8_t pip_inter
Amount of space between widgets.
Base class for a resizable nested widget.
uint8_t uz_text_spacing
'Unscaled' text padding, stored for resize calculation.
bool absolute
Set if minimum size is fixed and should not be resized.
void SetMinimalSize(uint min_x, uint min_y)
Set minimal size of the widget.
Definition widget.cpp:997
bool UpdateSize(uint min_x, uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition widget.cpp:1080
uint min_x
Minimal horizontal size of only this widget.
FontSize uz_text_size
'Unscaled' font size, stored for resize calculation.
uint uz_min_x
Unscaled Minimal horizontal size of only this widget.
uint8_t uz_text_lines
'Unscaled' text lines, stored for resize calculation.
void SetFill(uint fill_x, uint fill_y)
Set the filling of the widget from initial size.
Definition widget.cpp:1036
void SetMinimalTextLines(uint8_t min_lines, uint8_t spacing, FontSize size)
Set minimal text lines for the widget.
Definition widget.cpp:1023
uint min_y
Minimal vertical size of only this widget.
uint uz_min_y
Unscaled Minimal vertical size of only this widget.
bool UpdateMultilineWidgetSize(const std::string &str, int max_lines)
Try to set optimum widget size for a multiline text widget.
Definition widget.cpp:1060
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:1101
bool UpdateVerticalSize(uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition widget.cpp:1094
void SetResize(uint resize_x, uint resize_y)
Set resize step of the widget.
Definition widget.cpp:1047
void SetAspect(float ratio, AspectFlags flags=AspectFlag::ResizeX)
Set desired aspect ratio of this widget.
Definition widget.cpp:966
void SetMinimalSizeAbsolute(uint min_x, uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition widget.cpp:1010
Nested widget to display and control a scrollbar in a window.
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:2608
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:2587
static Dimension horizontal_dimension
Cached size of horizontal scrollbar button.
static Dimension vertical_dimension
Cached size of vertical scrollbar button.
Spacer widget.
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:1914
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:1935
void SetDirty(const Window *w) const override
Mark the widget as 'dirty' (in need of repaint).
Definition widget.cpp:1930
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:1918
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:1907
Stacked widgets, widgets all occupying the same space in the window.
int shown_plane
Plane being displayed (for NWID_SELECTION only).
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:1314
const WidgetID index
If non-negative, index in the Window::widget_lookup.
WidgetLookup * widget_lookup
Window's widget lookup, updated in SetDisplayedPlane().
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:1355
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:1386
bool SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition widget.cpp:1410
void FillWidgetLookup(WidgetLookup &widget_lookup) override
Fill the Window::widget_lookup with pointers to nested widgets in the tree.
Definition widget.cpp:1375
NWidgetCore * GetWidgetFromPos(int x, int y) override
Retrieve a widget by its position.
Definition widget.cpp:1395
Vertical container.
void AssignSizePosition(SizingType sizing, int x, int y, uint given_width, uint given_height, bool rtl) override
Assign size and position to the widget.
Definition widget.cpp:1798
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:1729
Nested widget to display a viewport in a window.
void UpdateViewportCoordinates(Window *w)
Update the position and size of the viewport (after eg a resize).
Definition widget.cpp:2424
void Draw(const Window *w) override
Draw the widgets of the tree.
Definition widget.cpp:2388
void SetupSmallestSize(Window *w) override
Compute smallest size needed by the widget.
Definition widget.cpp:2381
void InitializeViewport(Window *w, std::variant< TileIndex, VehicleID > focus, ZoomLevel zoom)
Initialize the viewport of the window.
Definition widget.cpp:2415
Scrollbar data structure.
bool IsVisible(size_type item) const
Checks whether given current item is visible in the list.
const bool is_vertical
Scrollbar has vertical orientation.
size_type GetCapacity() const
Gets the number of visible elements of the scrollbar.
size_type stepsize
Distance to scroll, when pressing the buttons or using the wheel.
void SetCount(size_t num)
Sets the number of elements in the list.
bool IsVertical() const
Is the scrollbar vertical or not?
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.
bool UpdatePosition(int difference, ScrollbarStepping unit=SS_SMALL)
Updates the position of the first visible element by the given amount.
void SetCapacity(size_t capacity)
Set the capacity of visible elements.
size_type cap
Number of visible elements of the scroll bar.
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:2447
size_type count
Number of elements in the list.
bool SetPosition(size_type position)
Sets the position of the first visible element.
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:2521
size_type GetCount() const
Gets the number of elements in the list.
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:2468
void ScrollTowards(size_type position)
Scroll towards the given position; if the item is visible nothing happens, otherwise it will be shown...
auto GetVisibleRangeIterators(Tcontainer &container) const
Get a pair of iterators for the range of visible elements in a container.
void SetStepSize(size_t stepsize)
Set the distance to scroll when using the buttons or the wheel.
size_type pos
Index of first visible item of the list.
size_type GetPosition() const
Gets the position of the first visible element in the list.
ScrollbarStepping
Stepping sizes when scrolling.
@ SS_BIG
Step in cap units.
@ SS_RAW
Step in single units.
@ SS_SMALL
Step in stepsize units.
Types related to the graphics and/or input devices.
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
FontSize
Available font sizes.
Definition gfx_type.h:242
@ FS_NORMAL
Index of the normal font in the font tables.
Definition gfx_type.h:243
StringAlignment
How to align the to-be drawn text.
Definition gfx_type.h:374
@ SA_CENTER
Center both horizontally and vertically.
Definition gfx_type.h:385
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition gfx_type.h:294
constexpr NWidgetPart SetMatrixDataTip(uint32_t cols, uint32_t rows, StringID tip={})
Widget part function for setting the data and tooltip of WWT_MATRIX widgets.
constexpr NWidgetPart NWidgetFunction(NWidgetFunctionType *func_ptr)
Obtain a nested widget (sub)tree from an external source.
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
constexpr NWidgetPart SetSpriteTip(SpriteID sprite, StringID tip={})
Widget part function for setting the sprite and tooltip.
constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
Widget part function for setting a pre/inter/post spaces.
constexpr NWidgetPart SetScrollbar(WidgetID index)
Attach a scrollbar to a widget.
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.
constexpr NWidgetPart SetStringTip(StringID string, StringID tip={})
Widget part function for setting the string and tooltip.
constexpr NWidgetPart SetAspect(float ratio, AspectFlags flags=AspectFlag::ResizeX)
Widget part function for setting the aspect ratio.
constexpr NWidgetPart SetTextStyle(TextColour colour, FontSize size=FS_NORMAL)
Widget part function for setting the text style.
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:3378
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
constexpr NWidgetPart SetResizeWidgetTypeTip(ResizeWidgetValues widget_type, StringID tip)
Widget part function for setting the resize widget type and tooltip.
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:3359
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart SetToolTip(StringID tip)
Widget part function for setting tooltip and clearing the widget data.
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
constexpr NWidgetPart SetArrowWidgetTypeTip(ArrowWidgetValues widget_type, StringID tip={})
Widget part function for setting the arrow widget type and tooltip.
constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
constexpr NWidgetPart SetAlignment(StringAlignment align)
Widget part function for setting the alignment of text/images.
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
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.
Integer math functions.
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.
constexpr T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition math_func.hpp:79
Types related to strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Dimensions (a width and height) of a rectangle in 2D.
Widget part for setting text/image alignment within a widget.
StringAlignment align
Alignment of text/image.
Widget part for storing data and tooltip information.
WidgetData data
Data value of the widget.
StringID tooltip
Tooltip of the widget.
Widget part for storing pre/inter/post spaces.
uint8_t post
Amount of space before/between/after child widgets.
Widget part for storing padding.
Widget part for storing minimal text line data.
uint8_t lines
Number of text lines.
uint8_t spacing
Extra spacing around lines.
FontSize size
Font size of text lines.
Widget part for storing text colour.
TextColour colour
TextColour for DrawString.
FontSize size
Font size of text.
Widget part for storing basic widget information.
Colours colour
Widget colour.
WidgetID index
Index of the widget.
Partial widget specification to allow NWidgets to be written nested.
WidgetType type
Type of the part.
Coordinates of a point in 2D.
Padding dimensions to apply to each side of a Rect.
Specification of a rectangle with absolute coordinates of all edges.
Container with the data associated to a single widget.
Data structure for an opened window.
Definition window_gui.h:274
NWidgetPartTextLines text_lines
Part with text line data.
NWidgetPartPIP pip
Part with pre/inter/post spaces.
NWidgetPartPaddings padding
Part with paddings.
NWidgetFunctionType * func_ptr
Part with a function call.
NWidContainerFlags cont_flags
Part with container flags.
NWidgetPartDataTip data_tip
Part with a data/tooltip.
NWidgetPartAlignment align
Part with internal alignment.
NWidgetPartAspect aspect
Part to set aspect ratio.
NWidgetPartTextStyle text_style
Part with text style data.
Point xy
Part with an x/y size.
NWidgetPartWidget widget
Part with a start of a widget.
WidgetType
Window widget types, nested widget types, and nested widget part types.
Definition widget_type.h:36
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
@ WWT_INSET
Pressed (inset) panel, most commonly used as combo box text area.
Definition widget_type.h:41
@ WPT_FILL
Widget part for specifying fill.
Definition widget_type.h:83
@ WPT_ALIGNMENT
Widget part for specifying text/image alignment.
Definition widget_type.h:89
@ WWT_IMGBTN
(Toggle) Button with image
Definition widget_type.h:42
@ WWT_PUSHBTN
Normal push-button (no toggle button) with custom drawing.
@ WWT_IMGBTN_2
(Toggle) Button with diff image when clicked
Definition widget_type.h:43
@ NWID_CUSTOM
General Custom widget.
Definition widget_type.h:76
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
@ WPT_MINSIZE
Widget part for specifying minimal size.
Definition widget_type.h:81
@ WWT_PUSHARROWBTN
Normal push-button (no toggle button) with arrow caption.
@ WWT_LABEL
Centered label.
Definition widget_type.h:47
@ NWID_BUTTON_DROPDOWN
Button with a drop-down.
Definition widget_type.h:73
@ NWID_SPACER
Invisible widget that takes some space.
Definition widget_type.h:69
@ WWT_EDITBOX
a textbox for typing
Definition widget_type.h:61
@ WWT_ARROWBTN
(Toggle) Button with an arrow
Definition widget_type.h:44
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:65
@ WWT_TEXTBTN
(Toggle) Button with text
Definition widget_type.h:45
@ WPT_SCROLLBAR
Widget part for attaching a scrollbar.
Definition widget_type.h:90
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:40
@ WPT_ASPECT
Widget part for specifying aspect ratio.
Definition widget_type.h:91
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition widget_type.h:56
@ WPT_RESIZE
Widget part for specifying resizing.
Definition widget_type.h:80
@ WWT_MATRIX
Grid of rows and columns.
Definition widget_type.h:49
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition widget_type.h:54
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition widget_type.h:51
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition widget_type.h:75
@ WPT_TEXTSTYLE
Widget part for specifying text colour.
Definition widget_type.h:88
@ WPT_PADDING
Widget part for specifying a padding.
Definition widget_type.h:85
@ NWID_VERTICAL
Vertical container.
Definition widget_type.h:67
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition widget_type.h:59
@ WWT_TEXTBTN_2
(Toggle) Button with diff text when clicked
Definition widget_type.h:46
@ WWT_FRAME
Frame.
Definition widget_type.h:50
@ WPT_MINTEXTLINES
Widget part for specifying minimal number of lines of text.
Definition widget_type.h:82
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition widget_type.h:38
@ WWT_LAST
Last Item. use WIDGETS_END to fill up padding!!
Definition widget_type.h:62
@ WPT_ATTRIBUTE_END
End marker for attribute NWidgetPart types.
Definition widget_type.h:92
@ NWID_HSCROLLBAR
Horizontal scrollbar.
Definition widget_type.h:74
@ WPT_ENDCONTAINER
Widget part to denote end of a container.
Definition widget_type.h:95
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window)
Definition widget_type.h:58
@ WPT_PIPRATIO
Widget part for specifying pre/inter/post ratio for containers.
Definition widget_type.h:87
@ WPT_DATATIP
Widget part for specifying data and tooltip.
Definition widget_type.h:84
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX)
Definition widget_type.h:55
@ WPT_ATTRIBUTE_BEGIN
Begin marker for attribute NWidgetPart types.
Definition widget_type.h:79
@ WPT_PIPSPACE
Widget part for specifying pre/inter/post space for containers.
Definition widget_type.h:86
@ NWID_MATRIX
Matrix container.
Definition widget_type.h:68
@ NWID_VIEWPORT
Nested widget containing a viewport.
Definition widget_type.h:72
@ WWT_DROPDOWN
Drop down list.
Definition widget_type.h:60
@ WWT_TEXT
Pure simple text.
Definition widget_type.h:48
@ NWID_HORIZONTAL_LTR
Horizontal container that doesn't change the order of the widgets for RTL languages.
Definition widget_type.h:66
@ WPT_FUNCTION
Widget part for calling a user function.
Definition widget_type.h:94
@ WWT_DEBUGBOX
NewGRF debug box (at top-right of a window, between WWT_CAPTION and WWT_SHADEBOX)
Definition widget_type.h:53
@ NWID_LAYER
Layered widgets, all visible together.
Definition widget_type.h:71
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition widget_type.h:70
NWidgetDisplayFlag
Nested widget flags that affect display and interaction with 'real' widgets.
@ DropdownClosed
Dropdown menu of the dropdown widget has closed.
@ ScrollbarDown
Down-button is lowered bit.
@ Lowered
Widget is lowered (pressed down) bit.
@ ShadeDimmed
Display dimmed colours in the viewport.
@ ShadeGrey
Shade viewport to grey-scale.
@ ScrollbarUp
Up-button is lowered bit.
@ DropdownActive
Dropdown menu of the button dropdown widget is active.
@ Highlight
Highlight of widget is on.
@ NoTransparency
Viewport is never transparent.
@ Disabled
Widget is disabled (greyed out) bit.
uint ComputeMaxSize(uint base, uint max_space, uint step)
Return the biggest possible size of a nested widget.
bool IsContainerWidgetType(WidgetType tp)
Test if WidgetType is a container widget.
Definition widget.cpp:3302
StackedZeroSizePlanes
Display planes with zero size for NWidgetStacked.
@ SZSP_HORIZONTAL
Display plane with zero size vertically, and filling and resizing horizontally.
@ SZSP_BEGIN
First zero-size plane.
@ SZSP_VERTICAL
Display plane with zero size horizontally, and filling and resizing vertically.
@ SZSP_NONE
Display plane with zero size in both directions (none filling and resizing).
NWidContainerFlag
Nested widget container flags,.
@ EqualSize
Containers should keep all their (resizing) children equally large.
@ BigFirst
Allocate space to biggest resize first.
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:3420
void SetupWidgetDimensions()
Set up pre-scaled versions of Widget Dimensions.
Definition widget.cpp:79
SizingType
Different forms of sizing nested widgets, using NWidgetBase::AssignSizePosition()
@ ST_RESIZE
Resize the nested widget tree.
@ ST_SMALLEST
Initialize nested widget tree to smallest size. Also updates current_x and current_y.
ArrowWidgetValues
Values for an arrow widget.
Definition widget_type.h:20
@ AWV_LEFT
Force the arrow to the left.
Definition widget_type.h:23
@ AWV_RIGHT
Force the arrow to the right.
Definition widget_type.h:24
@ AWV_DECREASE
Arrow to the left or in case of RTL to the right.
Definition widget_type.h:21
@ AWV_INCREASE
Arrow to the right or in case of RTL to the left.
Definition widget_type.h:22
std::map< WidgetID, class NWidgetBase * > WidgetLookup
Lookup between widget IDs and NWidget objects.
std::unique_ptr< NWidgetBase > NWidgetFunctionType()
Pointer to function returning a nested widget.
ResizeWidgetValues
WidgetData values for a resize box widget.
Definition widget_type.h:28
@ RWV_SHOW_BEVEL
Bevel of resize box is shown.
Definition widget_type.h:29
@ RWV_HIDE_BEVEL
Bevel of resize box is hidden.
Definition widget_type.h:30
Types related to windows.
int WidgetID
Widget ID.
Definition window_type.h:20
EventState
State of handling an event.
ZoomLevel
All zoom levels we know.
Definition zoom_type.h:16