OpenTTD Source 20250523-master-g321f7e8683
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 "dropdown_type.h"
14#include "gfx_func.h"
15#include "gfx_type.h"
16#include "palette_func.h"
17#include "string_func.h"
18#include "strings_func.h"
19#include "window_gui.h"
20
21#include "table/strings.h"
22
28template <class TBase, FontSize TFs = FS_NORMAL>
29class DropDownDivider : public TBase {
30public:
31 template <typename... Args>
32 explicit DropDownDivider(Args&&... args) : TBase(std::forward<Args>(args)...) {}
33
34 bool Selectable() const override { return false; }
35 uint Height() const override { return std::max<uint>(GetCharacterHeight(TFs), this->TBase::Height()); }
36
37 void Draw(const Rect &full, const Rect &, bool, Colours bg_colour) const override
38 {
39 uint8_t c1 = GetColourGradient(bg_colour, SHADE_DARK);
40 uint8_t c2 = GetColourGradient(bg_colour, SHADE_LIGHTEST);
41
42 int mid = CentreBounds(full.top, full.bottom, 0);
43 GfxFillRect(full.left, mid - WidgetDimensions::scaled.bevel.bottom, full.right, mid - 1, c1);
44 GfxFillRect(full.left, mid, full.right, mid + WidgetDimensions::scaled.bevel.top - 1, c2);
45 }
46};
47
54template <class TBase, FontSize TFs = FS_NORMAL, bool TEnd = false>
55class DropDownString : public TBase {
56 std::string string;
58public:
59 template <typename... Args>
60 explicit DropDownString(std::string &&string, Args&&... args) : TBase(std::forward<Args>(args)...)
61 {
62 this->SetString(std::move(string));
63 }
64
65 void SetString(std::string &&string)
66 {
67 this->string = std::move(string);
68 this->dim = GetStringBoundingBox(this->string, TFs);
69 }
70
71 uint Height() const override
72 {
73 return std::max<uint>(this->dim.height, this->TBase::Height());
74 }
75
76 uint Width() const override { return this->dim.width + this->TBase::Width(); }
77
78 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
79 {
80 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
81 DrawStringMultiLine(r.WithWidth(this->dim.width, rtl), this->string, this->GetColour(sel), SA_CENTER, false, TFs);
82 this->TBase::Draw(full, r.Indent(this->dim.width, rtl), sel, bg_colour);
83 }
84
92 static bool NatSortFunc(std::unique_ptr<const DropDownListItem> const &first, std::unique_ptr<const DropDownListItem> const &second)
93 {
94 const std::string &str1 = static_cast<const DropDownString*>(first.get())->string;
95 const std::string &str2 = static_cast<const DropDownString*>(second.get())->string;
96 return StrNaturalCompare(str1, str2) < 0;
97 }
98};
99
105template <class TBase, bool TEnd = false>
106class DropDownIcon : public TBase {
111public:
112 template <typename... Args>
113 explicit DropDownIcon(SpriteID sprite, PaletteID palette, Args&&... args) : TBase(std::forward<Args>(args)...), sprite(sprite), palette(palette)
114 {
115 this->dsprite = GetSpriteSize(this->sprite);
116 this->dbounds = this->dsprite;
117 }
118
119 template <typename... Args>
120 explicit DropDownIcon(const Dimension &dim, SpriteID sprite, PaletteID palette, Args&&... args) : TBase(std::forward<Args>(args)...), sprite(sprite), palette(palette), dbounds(dim)
121 {
122 this->dsprite = GetSpriteSize(this->sprite);
123 }
124
125 uint Height() const override { return std::max(this->dbounds.height, this->TBase::Height()); }
126 uint Width() const override { return this->dbounds.width + WidgetDimensions::scaled.hsep_normal + this->TBase::Width(); }
127
128 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
129 {
130 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
131 Rect ir = r.WithWidth(this->dbounds.width, rtl);
132 DrawSprite(this->sprite, this->palette, CentreBounds(ir.left, ir.right, this->dsprite.width), CentreBounds(r.top, r.bottom, this->dsprite.height));
133 this->TBase::Draw(full, r.Indent(this->dbounds.width + WidgetDimensions::scaled.hsep_normal, rtl), sel, bg_colour);
134 }
135};
136
143template <class TBase, bool TEnd = false, FontSize TFs = FS_NORMAL>
144class DropDownCheck : public TBase {
145 bool checked;
147public:
148 template <typename... Args>
149 explicit DropDownCheck(bool checked, Args&&... args) : TBase(std::forward<Args>(args)...), checked(checked)
150 {
151 this->dim = GetStringBoundingBox(STR_JUST_CHECKMARK, TFs);
152 }
153
154 uint Height() const override { return std::max<uint>(this->dim.height, this->TBase::Height()); }
155 uint Width() const override { return this->dim.width + WidgetDimensions::scaled.hsep_wide + this->TBase::Width(); }
156
157 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
158 {
159 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
160 if (this->checked) {
161 DrawStringMultiLine(r.WithWidth(this->dim.width, rtl), STR_JUST_CHECKMARK, this->GetColour(sel), SA_CENTER, false, TFs);
162 }
163 this->TBase::Draw(full, r.Indent(this->dim.width + WidgetDimensions::scaled.hsep_wide, rtl), sel, bg_colour);
164 }
165};
166
172template <class TBase, bool TEnd = false>
173class DropDownIndent : public TBase {
174 uint indent;
175public:
176 template <typename... Args>
177 explicit DropDownIndent(uint indent, Args&&... args) : TBase(std::forward<Args>(args)...), indent(indent) {}
178
179 uint Width() const override { return this->indent * WidgetDimensions::scaled.hsep_indent + this->TBase::Width(); }
180
181 void Draw(const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override
182 {
183 bool rtl = TEnd ^ (_current_text_dir == TD_RTL);
184 this->TBase::Draw(full, r.Indent(this->indent * WidgetDimensions::scaled.hsep_indent, rtl), sel, bg_colour);
185 }
186};
187
188/* Commonly used drop down list items. */
193
194#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:30
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
Types related to the drop down widget.
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:77
int CentreBounds(int min, int max, int size)
Determine where to position a centred object.
Dimension GetSpriteSize(SpriteID sprid, Point *offset, ZoomLevel zoom)
Get the size of a sprite.
Definition gfx.cpp:958
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition gfx.cpp:887
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:1024
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.
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:393
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:388
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:425
Functions related to low-level strings.
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition strings.cpp:57
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.