Window that let you choose an available AI. More...
Public Member Functions | |
AIListWindow (const WindowDesc *desc, CompanyID slot) | |
Constructor for the window. | |
virtual void | UpdateWidgetSize (int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) |
Update size and resize step of a widget in the window. | |
virtual void | DrawWidget (const Rect &r, int widget) const |
Draw the contents of a nested widget. | |
void | ChangeAI () |
Changes the AI of the current slot. | |
virtual void | OnClick (Point pt, int widget, int click_count) |
A click with the left mouse button has been made on the window. | |
virtual void | OnResize () |
Called after the window got resized. | |
virtual void | OnInvalidateData (int data=0, bool gui_scope=true) |
Some data on this window has become invalid. | |
Data Fields | |
const ScriptInfoList * | ai_info_list |
The list of AIs. | |
int | selected |
The currently selected AI. | |
CompanyID | slot |
The company we're selecting a new AI for. | |
int | line_height |
Height of a row in the matrix widget. | |
Scrollbar * | vscroll |
Cache of the vertical scrollbar. |
Window that let you choose an available AI.
Definition at line 51 of file ai_gui.cpp.
AIListWindow::AIListWindow | ( | const WindowDesc * | desc, | |
CompanyID | slot | |||
) | [inline] |
Constructor for the window.
desc | The description of the window. | |
slot | The company we're changing the AI for. |
Definition at line 63 of file ai_gui.cpp.
References ai_info_list, AIL_WIDGET_SCROLLBAR, Window::CreateNestedTree(), Window::FinishInitNested(), AIConfig::GetConfig(), AIConfig::GetInfo(), Window::GetScrollbar(), AI::GetUniqueInfoList(), ScriptConfig::HasScript(), selected, Scrollbar::SetCount(), and vscroll.
virtual void AIListWindow::DrawWidget | ( | const Rect & | r, | |
int | widget | |||
) | const [inline, virtual] |
Draw the contents of a nested widget.
r | Rectangle occupied by the widget. | |
widget | Number of the widget to draw. |
Reimplemented from Window.
Definition at line 99 of file ai_gui.cpp.
References ai_info_list, AIL_WIDGET_INFO_BG, AIL_WIDGET_LIST, DrawString(), DrawStringMultiLine(), FONT_HEIGHT_NORMAL, ScriptInfo::GetAuthor(), ScriptInfo::GetDescription(), ScriptInfo::GetURL(), ScriptInfo::GetVersion(), Scrollbar::IsVisible(), line_height, selected, SetDParam(), SetDParamStr(), vscroll, WD_FRAMERECT_BOTTOM, WD_FRAMETEXT_LEFT, WD_FRAMETEXT_RIGHT, WD_MATRIX_LEFT, WD_MATRIX_RIGHT, and WD_MATRIX_TOP.
virtual void AIListWindow::OnClick | ( | Point | pt, | |
int | widget, | |||
int | click_count | |||
) | [inline, virtual] |
A click with the left mouse button has been made on the window.
pt | the point inside the window that has been clicked. | |
widget | the clicked widget. | |
click_count | Number of fast consecutive clicks at same position |
Reimplemented from Window.
Definition at line 162 of file ai_gui.cpp.
References ai_info_list, AIL_WIDGET_ACCEPT, AIL_WIDGET_CANCEL, AIL_WIDGET_LIST, ChangeAI(), Scrollbar::GetScrolledRowFromWidget(), selected, Window::SetDirty(), and vscroll.
virtual void AIListWindow::OnInvalidateData | ( | int | data = 0 , |
|
bool | gui_scope = true | |||
) | [inline, virtual] |
Some data on this window has become invalid.
data | Information about the changed data. | |
gui_scope | Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See InvalidateWindowData() for details. |
Reimplemented from Window.
Definition at line 202 of file ai_gui.cpp.
References ai_info_list, Scrollbar::GetCount(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::IsValidID(), min(), selected, Scrollbar::SetCount(), slot, and vscroll.
virtual void AIListWindow::OnResize | ( | ) | [inline, virtual] |
Called after the window got resized.
For nested windows with a viewport, call NWidgetViewport::UpdateViewportCoordinates.
Reimplemented from Window.
Definition at line 190 of file ai_gui.cpp.
References NWidgetBase::current_y, Scrollbar::GetCapacity(), MAT_COL_START, Scrollbar::SetCapacity(), vscroll, and NWidgetCore::widget_data.
virtual void AIListWindow::UpdateWidgetSize | ( | int | widget, | |
Dimension * | size, | |||
const Dimension & | padding, | |||
Dimension * | fill, | |||
Dimension * | resize | |||
) | [inline, virtual] |
Update size and resize step of a widget in the window.
After retrieval of the minimal size and the resize-steps of a widget, this function is called to allow further refinement, typically by computing the real maximal size of the content. Afterwards, size is taken to be the minimal size of the widget and resize is taken to contain the resize steps. For the convenience of the callee, padding contains the amount of padding between the content and the edge of the widget. This should be added to the returned size.
widget | Widget number. | |
size | Size of the widget. | |
padding | Recommended amount of space between the widget content and the widget edge. | |
fill | Fill step of the widget. | |
resize | Resize step of the widget. |
Reimplemented from Window.
Definition at line 88 of file ai_gui.cpp.
References AIL_WIDGET_LIST, FONT_HEIGHT_NORMAL, GB(), line_height, MAT_ROW_BITS, MAT_ROW_START, and WD_MATRIX_TOP.