OpenTTD Source 20250311-master-g40ddc03423
dropdown_common_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 DROPDOWN_COMMON_TYPE_H
11#define DROPDOWN_COMMON_TYPE_H
12
13#include "gfx_func.h"
14#include "gfx_type.h"
15#include "palette_func.h"
16#include "string_func.h"
17#include "strings_func.h"
18#include "table/strings.h"
19#include "window_gui.h"
20
26template <class TBase, FontSize TFs = FS_NORMAL>
27class DropDownDivider : public TBase {
28public:
29 template <typename... Args>
30 explicit DropDownDivider(Args&&... args) : TBase(std::forward<Args>(args)...) {}
31
32 bool Selectable() const override { return false; }
33 uint Height() const override { return std::max<uint>(GetCharacterHeight(TFs), this->TBase::Height()); }
34
35 void Draw(const Rect &full, const Rect &, bool, Colours bg_colour) const override
36 {
37 uint8_t c1 = GetColourGradient(bg_colour, SHADE_DARK);
38 uint8_t c2 = GetColourGradient(bg_colour, SHADE_LIGHTEST);
39
40 int mid = CenterBounds(full.top, full.bottom, 0);
41 GfxFillRect(full.left, mid - WidgetDimensions::scaled.bevel.bottom, full.right, mid - 1, c1);
42 GfxFillRect(full.left, mid, full.right, mid + WidgetDimensions::scaled.bevel.top - 1, c2);
43 }
44};
45
52template <class TBase, FontSize TFs = FS_NORMAL, bool TEnd = false>
53class DropDownString : public TBase {
54 std::string string;
56public:
57 template <typename... Args>
58 explicit DropDownString(std::string &&string, Args&&... args) : TBase(std::forward<Args>(args)...)
59 {
60 this->SetString(std::move(string));
61 }
62
63 void SetString(std::string &&string)
64 {
65 this->string = std::move(string);
66 this->dim = GetStringBoundingBox(this->string, TFs);
67 }
68
69 uint Height() const override
70 {
71 return std::max<uint>(this->dim.height, this->TBase::Height());
72 }
73
74 uint Width() const override { return this->dim.width + this->TBase::Width(); }
75
76 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
77 {
78 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
79 DrawStringMultiLine(r.WithWidth(this->dim.width, rtl), this->string, this->GetColour(sel), SA_CENTER, false, TFs);
80 this->TBase::Draw(full, r.Indent(this->dim.width, rtl), sel, bg_colour);
81 }
82
90 static bool NatSortFunc(std::unique_ptr<const DropDownListItem> const &first, std::unique_ptr<const DropDownListItem> const &second)
91 {
92 const std::string &str1 = static_cast<const DropDownString*>(first.get())->string;
93 const std::string &str2 = static_cast<const DropDownString*>(second.get())->string;
94 return StrNaturalCompare(str1, str2) < 0;
95 }
96};
97
103template <class TBase, bool TEnd = false>
104class DropDownIcon : public TBase {
109public:
110 template <typename... Args>
111 explicit DropDownIcon(SpriteID sprite, PaletteID palette, Args&&... args) : TBase(std::forward<Args>(args)...), sprite(sprite), palette(palette)
112 {
113 this->dsprite = GetSpriteSize(this->sprite);
114 this->dbounds = this->dsprite;
115 }
116
117 template <typename... Args>
118 explicit DropDownIcon(const Dimension &dim, SpriteID sprite, PaletteID palette, Args&&... args) : TBase(std::forward<Args>(args)...), sprite(sprite), palette(palette), dbounds(dim)
119 {
120 this->dsprite = GetSpriteSize(this->sprite);
121 }
122
123 uint Height() const override { return std::max(this->dbounds.height, this->TBase::Height()); }
124 uint Width() const override { return this->dbounds.width + WidgetDimensions::scaled.hsep_normal + this->TBase::Width(); }
125
126 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
127 {
128 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
129 Rect ir = r.WithWidth(this->dbounds.width, rtl);
130 DrawSprite(this->sprite, this->palette, CenterBounds(ir.left, ir.right, this->dsprite.width), CenterBounds(r.top, r.bottom, this->dsprite.height));
131 this->TBase::Draw(full, r.Indent(this->dbounds.width + WidgetDimensions::scaled.hsep_normal, rtl), sel, bg_colour);
132 }
133};
134
141template <class TBase, bool TEnd = false, FontSize TFs = FS_NORMAL>
142class DropDownCheck : public TBase {
143 bool checked;
145public:
146 template <typename... Args>
147 explicit DropDownCheck(bool checked, Args&&... args) : TBase(std::forward<Args>(args)...), checked(checked)
148 {
149 this->dim = GetStringBoundingBox(STR_JUST_CHECKMARK, TFs);
150 }
151
152 uint Height() const override { return std::max<uint>(this->dim.height, this->TBase::Height()); }
153 uint Width() const override { return this->dim.width + WidgetDimensions::scaled.hsep_wide + this->TBase::Width(); }
154
155 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
156 {
157 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
158 if (this->checked) {
159 DrawStringMultiLine(r.WithWidth(this->dim.width, rtl), STR_JUST_CHECKMARK, this->GetColour(sel), SA_CENTER, false, TFs);
160 }
161 this->TBase::Draw(full, r.Indent(this->dim.width + WidgetDimensions::scaled.hsep_wide, rtl), sel, bg_colour);
162 }
163};
164
170template <class TBase, bool TEnd = false>
171class DropDownIndent : public TBase {
172 uint indent;
173public:
174 template <typename... Args>
175 explicit DropDownIndent(uint indent, Args&&... args) : TBase(std::forward<Args>(args)...), indent(indent) {}
176
177 uint Width() const override { return this->indent * WidgetDimensions::scaled.hsep_indent + this->TBase::Width(); }
178
179 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
180 {
181 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
182 this->TBase::Draw(full, r.Indent(this->indent * WidgetDimensions::scaled.hsep_indent, rtl), sel, bg_colour);
183 }
184};
185
186/* Commonly used drop down list items. */
191
192#endif /* DROPDOWN_COMMON_TYPE_H */
Drop down checkmark component.
Dimension dim
Dimension of checkmark.
bool checked
Is item checked.
Drop down divider component.
Drop down icon component.
PaletteID palette
Palette ID to use.
Dimension dbounds
Bounding box dimensions of bounds.
Dimension dsprite
Bounding box dimensions of sprite.
SpriteID sprite
Sprite ID to be drawn.
Drop down indent component.
Drop down string component.
std::string string
String to be drawn.
static bool NatSortFunc(std::unique_ptr< const DropDownListItem > const &first, std::unique_ptr< const DropDownListItem > const &second)
Natural sorting comparator function for DropDownList::sort().
Dimension dim
Dimensions of string.
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition window_gui.h:29
int hsep_wide
Wide horizontal spacing.
Definition window_gui.h:62
int hsep_normal
Normal horizontal spacing.
Definition window_gui.h:61
RectPadding bevel
Bevel thickness, affected by "scaled bevels" game option.
Definition window_gui.h:38
int hsep_indent
Width of indentation for tree layouts.
Definition window_gui.h:63
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:77
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition gfx.cpp:923
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition gfx.cpp:852
void GfxFillRect(int left, int top, int right, int bottom, int colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition gfx.cpp:115
void DrawSprite(SpriteID img, PaletteID pal, int x, int y, const SubSprite *sub, ZoomLevel zoom)
Draw a sprite, not in a viewport.
Definition gfx.cpp:989
int DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Definition gfx.cpp:775
Functions related to the gfx engine.
int CenterBounds(int min, int max, int size)
Determine where to draw a centred object inside a widget.
Definition gfx_func.h:166
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
@ SA_CENTER
Center both horizontally and vertically.
Definition gfx_type.h:385
uint32_t PaletteID
The number of the palette.
Definition gfx_type.h:18
uint8_t GetColourGradient(Colours colour, ColourShade shade)
Get colour gradient palette index.
Definition palette.cpp:387
Functions related to palettes.
int StrNaturalCompare(std::string_view s1, std::string_view s2, bool ignore_garbage_at_front)
Compares two strings using case insensitive natural sort.
Definition string.cpp:607
Functions related to low-level strings.
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition strings.cpp:56
Functions related to OTTD's strings.
@ TD_RTL
Text is written right-to-left by default.
Dimensions (a width and height) of a rectangle in 2D.
Specification of a rectangle with absolute coordinates of all edges.
Rect WithWidth(int width, bool end) const
Copy Rect and set its width.
Rect Indent(int indent, bool end) const
Copy Rect and indent it from its position.
int16_t Height
Fixed point type for heights.
Definition tgp.cpp:153
Functions, definitions and such used only by the GUI.