Main handle for clientlist. More...
Public Member Functions | |
NetworkClientListWindow (const WindowDesc *desc, WindowNumber window_number) | |
bool | CheckClientListHeight () |
Finds the amount of clients and set the height correct. | |
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 | OnPaint () |
The window must be repainted. | |
virtual void | DrawWidget (const Rect &r, int widget) const |
Draw the contents of a nested widget. | |
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 | OnMouseOver (Point pt, int widget) |
The mouse is currently moving over the window or has just moved outside of the window. | |
Data Fields | |
int | selected_item |
uint | server_client_width |
uint | company_icon_width |
Main handle for clientlist.
Definition at line 1818 of file network_gui.cpp.
virtual void NetworkClientListWindow::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 1879 of file network_gui.cpp.
References _current_text_dir, NetworkClientInfo::client_id, CLIENT_ID_SERVER, NetworkClientInfo::client_name, NetworkClientInfo::client_playas, DrawCompanyIcon(), DrawString(), FONT_HEIGHT_NORMAL, FOR_ALL_CLIENT_INFOS, GfxFillRect(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::IsValidID(), PC_BLACK, WD_FRAMERECT_LEFT, and WID_CL_PANEL.
virtual void NetworkClientListWindow::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 1923 of file network_gui.cpp.
References NetworkClientInfo::client_id, FOR_ALL_CLIENT_INFOS, and PopupClientList().
virtual void NetworkClientListWindow::OnMouseOver | ( | Point | pt, | |
int | widget | |||
) | [inline, virtual] |
The mouse is currently moving over the window or has just moved outside of the window.
In the latter case pt is (-1, -1).
pt | the point inside the window that the mouse hovers over. | |
widget | the widget the mouse hovers over. |
Reimplemented from Window.
Definition at line 1939 of file network_gui.cpp.
References FONT_HEIGHT_NORMAL, IsInsideMM(), Window::SetDirty(), WD_FRAMERECT_BOTTOM, WD_FRAMERECT_TOP, and WID_CL_PANEL.
virtual void NetworkClientListWindow::OnPaint | ( | ) | [inline, virtual] |
The window must be repainted.
Reimplemented from Window.
Definition at line 1871 of file network_gui.cpp.
References CheckClientListHeight(), and Window::DrawWidgets().
virtual void NetworkClientListWindow::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 1855 of file network_gui.cpp.
References NetworkClientInfo::client_name, FOR_ALL_CLIENT_INFOS, GetSpriteSize(), GetStringBoundingBox(), max(), WD_FRAMERECT_LEFT, WID_CL_PANEL, and Window::width.