OpenTTD Source 20251213-master-g1091fa6071
dropdown_type.h File Reference

Types related to the drop down widget. More...

#include "core/enum_type.hpp"
#include "window_type.h"
#include "gfx_func.h"
#include "gfx_type.h"
#include "palette_func.h"
#include "window_gui.h"

Go to the source code of this file.

Data Structures

class  DropDownListItem
 Base list item class from which others are derived. More...
 

Typedefs

typedef std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
 A drop down list is a collection of drop down list items.
 
using DropDownOptions = EnumBitSet< DropDownOption, uint8_t >
 

Enumerations

enum class  DropDownOption : uint8_t { InstantClose , Persist }
 

Functions

void ShowDropDownListAt (Window *w, DropDownList &&list, int selected, WidgetID button, Rect wi_rect, Colours wi_colour, DropDownOptions options={})
 Show a drop down list.
 
void ShowDropDownList (Window *w, DropDownList &&list, int selected, WidgetID button, uint width=0, DropDownOptions options={})
 Show a drop down list.
 
Dimension GetDropDownListDimension (const DropDownList &list)
 Determine width and height required to fully display a DropDownList.
 
void ReplaceDropDownList (Window *parent, DropDownList &&list, std::optional< int > selected_result=std::nullopt)
 

Detailed Description

Types related to the drop down widget.

Definition in file dropdown_type.h.

Typedef Documentation

◆ DropDownList

typedef std::vector<std::unique_ptr<const DropDownListItem> > DropDownList

A drop down list is a collection of drop down list items.

Definition at line 56 of file dropdown_type.h.

◆ DropDownOptions

Definition at line 62 of file dropdown_type.h.

Enumeration Type Documentation

◆ DropDownOption

enum class DropDownOption : uint8_t
strong
Enumerator
InstantClose 

Set if releasing mouse button should close the list regardless of where the cursor is.

Persist 

Set if this dropdown should stay open after an option is selected.

Definition at line 58 of file dropdown_type.h.

Function Documentation

◆ GetDropDownListDimension()

Dimension GetDropDownListDimension ( const DropDownList list)

Determine width and height required to fully display a DropDownList.

Parameters
listThe list.
Returns
Dimension required to display the list.

Definition at line 381 of file dropdown.cpp.

References WidgetDimensions::dropdowntext, RectPadding::Horizontal(), and WidgetDimensions::scaled.

Referenced by DropdownWindow::UpdateSizeAndPosition(), BuildVehicleWindow::UpdateWidgetSize(), VehicleGroupWindow::UpdateWidgetSize(), GameOptionsWindow::UpdateWidgetSize(), and VehicleListWindow::UpdateWidgetSize().

◆ ReplaceDropDownList()

void ReplaceDropDownList ( Window parent,
DropDownList &&  list,
std::optional< int >  selected_result = std::nullopt 
)

Definition at line 370 of file dropdown.cpp.

◆ ShowDropDownList()

void ShowDropDownList ( Window w,
DropDownList &&  list,
int  selected,
WidgetID  button,
uint  width,
DropDownOptions  options 
)

◆ ShowDropDownListAt()

void ShowDropDownListAt ( Window w,
DropDownList &&  list,
int  selected,
WidgetID  button,
Rect  wi_rect,
Colours  wi_colour,
DropDownOptions  options 
)

Show a drop down list.

Parameters
wParent window for the list.
listPrepopulated DropDownList.
selectedThe initially selected list item.
buttonThe widget which is passed to Window::OnDropdownSelect and OnDropdownClose. Unless you override those functions, this should be then widget index of the dropdown button.
wi_rectCoord of the parent drop down button, used to position the dropdown menu.
optionsDrop Down options for this menu.

Definition at line 402 of file dropdown.cpp.

References CloseWindowByClass(), and WC_DROPDOWN_MENU.

Referenced by GSConfigWindow::OnClick(), NewGRFParametersWindow::OnClick(), ScriptSettingsWindow::OnClick(), NetworkClientListWindow::OnClickClientAdmin(), NetworkClientListWindow::OnClickCompanyAdmin(), and ShowDropDownList().