|
OpenTTD Source 20251117-master-g7398d2e290
|
Data structure describing one page of settings in the settings window. More...
#include <settingentry_gui.h>
Public Member Functions | |
| SettingsPage (StringID title) | |
| Constructor for a sub-page in the 'advanced settings' window. | |
| void | Init (uint8_t level=0) override |
| Initialization of an entire setting page. | |
| void | ResetAll () override |
| Resets all settings to their default values. | |
| void | FoldAll () override |
| Recursively close all (filtered) folds of sub-pages. | |
| void | UnFoldAll () override |
| Recursively open all (filtered) folds of sub-pages. | |
| uint | Length () const override |
| Return number of rows needed to display the (filtered) entry. | |
| void | GetFoldingState (bool &all_folded, bool &all_unfolded) const override |
| Recursively accumulate the folding state of the (filtered) tree. | |
| bool | IsVisible (const BaseSettingEntry *item) const override |
| Check whether an entry is visible and not folded or filtered away. | |
| BaseSettingEntry * | FindEntry (uint row, uint *cur_row) override |
| Find setting entry at row row_num. | |
| uint | GetMaxHelpHeight (int maxw) override |
| bool | UpdateFilterState (SettingFilter &filter, bool force_visible) override |
| Update the filter state. | |
| uint | Draw (GameSettings *settings_ptr, int left, int right, int y, uint first_row, uint max_row, BaseSettingEntry *selected, uint cur_row=0, uint parent_last=0) const override |
| Draw a row in the settings panel. | |
Public Member Functions inherited from BaseSettingEntry | |
| void | SetLastField (bool last_field) |
| Set whether this is the last visible entry of the parent node. | |
| bool | IsFiltered () const |
| Check whether an entry is hidden due to filters. | |
Public Member Functions inherited from SettingsContainer | |
| template<typename T > | |
| T * | Add (T *item) |
| void | Init (uint8_t level=0) |
| Initialization of an entire setting page. | |
| void | ResetAll () |
| Resets all settings to their default values. | |
| void | FoldAll () |
| Recursively close all folds of sub-pages. | |
| void | UnFoldAll () |
| Recursively open all folds of sub-pages. | |
| uint | Length () const |
| Return number of rows needed to display the whole page. | |
| void | GetFoldingState (bool &all_folded, bool &all_unfolded) const |
| Recursively accumulate the folding state of the tree. | |
| bool | IsVisible (const BaseSettingEntry *item) const |
| Check whether an entry is visible and not folded or filtered away. | |
| BaseSettingEntry * | FindEntry (uint row, uint *cur_row) |
| Find the setting entry at row number row_num. | |
| uint | GetMaxHelpHeight (int maxw) |
| Get the biggest height of the help texts, if the width is at least maxw. | |
| bool | UpdateFilterState (SettingFilter &filter, bool force_visible) |
| Update the filter state. | |
| uint | Draw (GameSettings *settings_ptr, int left, int right, int y, uint first_row, uint max_row, BaseSettingEntry *selected, uint cur_row=0, uint parent_last=0) const |
| Draw a row in the settings panel. | |
Data Fields | |
| StringID | title |
| Title of the sub-page. | |
| bool | folded |
| Sub-page is folded (not visible except for its title) | |
Data Fields inherited from BaseSettingEntry | |
| SettingEntryFlags | flags |
| Flags of the setting entry. | |
| uint8_t | level |
| Nesting level of this setting entry. | |
Data Fields inherited from SettingsContainer | |
| EntryVector | entries |
| Settings on this page. | |
Protected Member Functions | |
| void | DrawSetting (GameSettings *settings_ptr, int left, int right, int y, bool highlight) const override |
| Function to draw setting value (button + text + current value) | |
Additional Inherited Members | |
Public Types inherited from SettingsContainer | |
| typedef std::vector< BaseSettingEntry * > | EntryVector |
Static Public Attributes inherited from BaseSettingEntry | |
| static Dimension | circle_size |
| Dimension of the circle +/- icon. | |
| static int | line_height |
| Height of a single setting. | |
Data structure describing one page of settings in the settings window.
Definition at line 144 of file settingentry_gui.h.
| SettingsPage::SettingsPage | ( | StringID | title | ) |
Constructor for a sub-page in the 'advanced settings' window.
| title | Title of the sub-page |
Definition at line 453 of file settingentry_gui.cpp.
|
overridevirtual |
Draw a row in the settings panel.
| settings_ptr | Pointer to current values of all settings |
| left | Left-most position in window/panel to start drawing first_row |
| right | Right-most x position to draw strings at. |
| y | Upper-most position in window/panel to start drawing first_row |
| first_row | First row number to draw |
| max_row | Row-number to stop drawing (the row-number of the row below the last row to draw) |
| selected | Selected entry by the user. |
| cur_row | Current row number (internal variable) |
| parent_last | Last-field booleans of parent page level (page level i sets bit i to 1 if it is its last field) |
Reimplemented from BaseSettingEntry.
Definition at line 586 of file settingentry_gui.cpp.
References BaseSettingEntry::Draw(), SettingsContainer::Draw(), BaseSettingEntry::flags, folded, BaseSettingEntry::IsFiltered(), LastField, BaseSettingEntry::level, SetBit(), and BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Test().
|
overrideprotectedvirtual |
Function to draw setting value (button + text + current value)
| left | Left-most position in window/panel to start drawing |
| right | Right-most position in window/panel to draw |
| y | Upper-most position in window/panel to start drawing |
Implements BaseSettingEntry.
Definition at line 611 of file settingentry_gui.cpp.
References _current_text_dir, BaseSettingEntry::circle_size, DrawSprite(), DrawString(), folded, FS_NORMAL, GetCharacterHeight(), WidgetDimensions::hsep_normal, BaseSettingEntry::line_height, WidgetDimensions::scaled, TD_RTL, and title.
|
overridevirtual |
Find setting entry at row row_num.
| row_num | Index of entry to return |
| cur_row | Current row number |
nullptr if it not found (folded or filtered) Reimplemented from BaseSettingEntry.
Definition at line 562 of file settingentry_gui.cpp.
References SettingsContainer::FindEntry(), folded, and BaseSettingEntry::IsFiltered().
|
overridevirtual |
Recursively close all (filtered) folds of sub-pages.
Reimplemented from BaseSettingEntry.
Definition at line 478 of file settingentry_gui.cpp.
References SettingsContainer::FoldAll(), folded, and BaseSettingEntry::IsFiltered().
|
overridevirtual |
Recursively accumulate the folding state of the (filtered) tree.
| [in,out] | all_folded | Set to false, if one entry is not folded. |
| [in,out] | all_unfolded | Set to false, if one entry is folded. |
Reimplemented from BaseSettingEntry.
Definition at line 500 of file settingentry_gui.cpp.
References folded, SettingsContainer::GetFoldingState(), and BaseSettingEntry::IsFiltered().
|
inlineoverridevirtual |
Reimplemented from BaseSettingEntry.
Definition at line 159 of file settingentry_gui.h.
|
overridevirtual |
Initialization of an entire setting page.
| level | Nesting level of this page (internal variable, do not provide a value for it when calling) |
Reimplemented from BaseSettingEntry.
Definition at line 463 of file settingentry_gui.cpp.
References BaseSettingEntry::Init(), SettingsContainer::Init(), and BaseSettingEntry::level.
|
overridevirtual |
Check whether an entry is visible and not folded or filtered away.
Note: This does not consider the scrolling range; it might still require scrolling to make the setting really visible.
| item | Entry to search for. |
Reimplemented from BaseSettingEntry.
Definition at line 538 of file settingentry_gui.cpp.
References folded, BaseSettingEntry::IsFiltered(), and SettingsContainer::IsVisible().
|
overridevirtual |
Return number of rows needed to display the (filtered) entry.
Implements BaseSettingEntry.
Definition at line 548 of file settingentry_gui.cpp.
References folded, BaseSettingEntry::IsFiltered(), and SettingsContainer::Length().
|
overridevirtual |
Resets all settings to their default values.
Implements BaseSettingEntry.
Definition at line 470 of file settingentry_gui.cpp.
References SettingsContainer::entries.
|
overridevirtual |
Recursively open all (filtered) folds of sub-pages.
Reimplemented from BaseSettingEntry.
Definition at line 487 of file settingentry_gui.cpp.
References folded, BaseSettingEntry::IsFiltered(), and SettingsContainer::UnFoldAll().
|
overridevirtual |
Update the filter state.
| filter | Filter |
| force_visible | Whether to force all items visible, no matter what (due to filter text; not affected by restriction drop down box). |
Implements BaseSettingEntry.
Definition at line 519 of file settingentry_gui.cpp.
References Filtered, BaseSettingEntry::flags, StringFilter::GetState(), GetString(), StringFilter::IsEmpty(), StringFilter::ResetState(), BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Set(), SettingFilter::string, title, and SettingsContainer::UpdateFilterState().
| bool SettingsPage::folded |
Sub-page is folded (not visible except for its title)
Definition at line 146 of file settingentry_gui.h.
Referenced by Draw(), DrawSetting(), FindEntry(), FoldAll(), GetFoldingState(), IsVisible(), Length(), SettingsPage(), and UnFoldAll().
| StringID SettingsPage::title |
Title of the sub-page.
Definition at line 145 of file settingentry_gui.h.
Referenced by DrawSetting(), SettingsPage(), and UpdateFilterState().