OpenTTD Source
20241108-master-g80f628063a
|
Drop down string component. More...
#include <dropdown_common_type.h>
Public Member Functions | |
template<typename... Args> | |
DropDownString (StringID string, Args &&... args) | |
template<typename... Args> | |
DropDownString (const std::string &string, Args &&... args) | |
void | SetString (std::string &&string) |
uint | Height () const override |
uint | Width () const override |
void | Draw (const Rect &full, const Rect &r, bool sel, Colours bg_colour) const override |
Static Public Member Functions | |
static bool | NatSortFunc (std::unique_ptr< const DropDownListItem > const &first, std::unique_ptr< const DropDownListItem > const &second) |
Natural sorting comparator function for DropDownList::sort(). More... | |
Private Attributes | |
std::string | string |
String to be drawn. | |
Dimension | dim |
Dimensions of string. | |
Drop down string component.
TBase | Base component. |
TFs | Font size. |
TEnd | Position string at end if true, or start if false. |
Definition at line 53 of file dropdown_common_type.h.
|
inlinestatic |
Natural sorting comparator function for DropDownList::sort().
first | Left side of comparison. |
second | Right side of comparison. |
Definition at line 97 of file dropdown_common_type.h.
References StrNaturalCompare().