(svn r17948) -Codechange: remove some magic numbers from the network client list GUIs / use ResizeWindow instead of custom resize code.

This commit is contained in:
rubidium 2009-11-02 10:52:57 +00:00
parent c4c56ea04d
commit 719b995358

View File

@ -1762,7 +1762,6 @@ typedef void ClientList_Action_Proc(byte client_no);
enum { enum {
CLNWND_OFFSET = 16, CLNWND_OFFSET = 16,
CLNWND_ROWSIZE = 10
}; };
static const Widget _client_list_popup_widgets[] = { static const Widget _client_list_popup_widgets[] = {
@ -1928,7 +1927,7 @@ struct NetworkClientListPopupWindow : Window {
num++; num++;
} }
num *= CLNWND_ROWSIZE; num *= FONT_HEIGHT_NORMAL;
return num + 1; return num + 1;
} }
@ -1941,13 +1940,13 @@ struct NetworkClientListPopupWindow : Window {
/* Draw the actions */ /* Draw the actions */
int sel = this->sel_index; int sel = this->sel_index;
int y = 1; int y = 1;
for (int i = 0; i < MAX_CLIENTLIST_ACTION; i++, y += CLNWND_ROWSIZE) { for (int i = 0; i < MAX_CLIENTLIST_ACTION; i++, y += FONT_HEIGHT_NORMAL) {
if (this->action[i][0] == '\0') continue; if (this->action[i][0] == '\0') continue;
if (this->proc[i] == NULL) continue; if (this->proc[i] == NULL) continue;
TextColour colour; TextColour colour;
if (sel-- == 0) { // Selected item, highlight it if (sel-- == 0) { // Selected item, highlight it
GfxFillRect(1, y, 150 - 2, y + CLNWND_ROWSIZE - 1, 0); GfxFillRect(1, y, 150 - 2, y + FONT_HEIGHT_NORMAL - 1, 0);
colour = TC_WHITE; colour = TC_WHITE;
} else { } else {
colour = TC_BLACK; colour = TC_BLACK;
@ -1960,7 +1959,7 @@ struct NetworkClientListPopupWindow : Window {
virtual void OnMouseLoop() virtual void OnMouseLoop()
{ {
/* We selected an action */ /* We selected an action */
int index = (_cursor.pos.y - this->top) / CLNWND_ROWSIZE; int index = (_cursor.pos.y - this->top) / FONT_HEIGHT_NORMAL;
if (_left_button_down) { if (_left_button_down) {
if (index == -1 || index == this->sel_index) return; if (index == -1 || index == this->sel_index) return;
@ -2010,7 +2009,7 @@ static const Widget _client_list_widgets[] = {
{ WWT_CAPTION, RESIZE_NONE, COLOUR_GREY, 11, 237, 0, 13, STR_NETWORK_COMPANY_LIST_CLIENT_LIST, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS}, { WWT_CAPTION, RESIZE_NONE, COLOUR_GREY, 11, 237, 0, 13, STR_NETWORK_COMPANY_LIST_CLIENT_LIST, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS},
{ WWT_STICKYBOX, RESIZE_NONE, COLOUR_GREY, 238, 249, 0, 13, STR_NULL, STR_TOOLTIP_STICKY}, { WWT_STICKYBOX, RESIZE_NONE, COLOUR_GREY, 238, 249, 0, 13, STR_NULL, STR_TOOLTIP_STICKY},
{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 0, 249, 14, 14 + CLNWND_ROWSIZE + 1, 0x0, STR_NULL}, { WWT_PANEL, RESIZE_BOTTOM, COLOUR_GREY, 0, 249, 14, 15, 0x0, STR_NULL},
{ WIDGETS_END}, { WIDGETS_END},
}; };
@ -2020,21 +2019,20 @@ static const NWidgetPart _nested_client_list_widgets[] = {
NWidget(WWT_CAPTION, COLOUR_GREY, CLW_CAPTION), SetDataTip(STR_NETWORK_COMPANY_LIST_CLIENT_LIST, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), NWidget(WWT_CAPTION, COLOUR_GREY, CLW_CAPTION), SetDataTip(STR_NETWORK_COMPANY_LIST_CLIENT_LIST, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
NWidget(WWT_STICKYBOX, COLOUR_GREY, CLW_STICKY), NWidget(WWT_STICKYBOX, COLOUR_GREY, CLW_STICKY),
EndContainer(), EndContainer(),
NWidget(WWT_PANEL, COLOUR_GREY, CLW_PANEL), SetMinimalSize(250, CLNWND_ROWSIZE + 2), EndContainer(), NWidget(WWT_PANEL, COLOUR_GREY, CLW_PANEL), SetMinimalSize(250, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM), SetResize(1, 1), EndContainer(),
}; };
static const WindowDesc _client_list_desc( static const WindowDesc _client_list_desc(
WDP_AUTO, WDP_AUTO, 250, 1, 250, 1, WDP_AUTO, WDP_AUTO, 250, 16, 250, 16,
WC_CLIENT_LIST, WC_NONE, WC_CLIENT_LIST, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE,
_client_list_widgets, _nested_client_list_widgets, lengthof(_nested_client_list_widgets) _client_list_widgets, _nested_client_list_widgets, lengthof(_nested_client_list_widgets)
); );
/** /**
* Main handle for clientlist * Main handle for clientlist
*/ */
struct NetworkClientListWindow : Window struct NetworkClientListWindow : Window {
{
int selected_item; int selected_item;
int selected_y; int selected_y;
@ -2059,15 +2057,12 @@ struct NetworkClientListWindow : Window
if (ci->client_playas != COMPANY_INACTIVE_CLIENT) num++; if (ci->client_playas != COMPANY_INACTIVE_CLIENT) num++;
} }
num *= CLNWND_ROWSIZE; num *= FONT_HEIGHT_NORMAL;
int diff = (num + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM) - (this->widget[3].bottom - this->widget[3].top + 1);
/* If height is changed */ /* If height is changed */
if (this->height != CLNWND_OFFSET + num + 1) { if (diff != 0) {
/* XXX - magic unfortunately; (num + 2) has to be one bigger than heigh (num + 1) */ ResizeWindow(this, 0, diff);
this->SetDirty();
this->widget[3].bottom = this->widget[3].top + num + 2;
this->height = CLNWND_OFFSET + num + 1;
this->SetDirty();
return false; return false;
} }
return true; return true;
@ -2083,12 +2078,12 @@ struct NetworkClientListWindow : Window
this->DrawWidgets(); this->DrawWidgets();
int y = CLNWND_OFFSET; int y = this->widget[3].top + WD_FRAMERECT_TOP;
FOR_ALL_CLIENT_INFOS(ci) { FOR_ALL_CLIENT_INFOS(ci) {
TextColour colour; TextColour colour;
if (this->selected_item == i++) { // Selected item, highlight it if (this->selected_item == i++) { // Selected item, highlight it
GfxFillRect(1, y, 248, y + CLNWND_ROWSIZE - 1, 0); GfxFillRect(1, y, 248, y + FONT_HEIGHT_NORMAL - 1, 0);
colour = TC_WHITE; colour = TC_WHITE;
} else { } else {
colour = TC_BLACK; colour = TC_BLACK;
@ -2105,7 +2100,7 @@ struct NetworkClientListWindow : Window
DrawString(81, this->width - 2, y, ci->client_name, colour); DrawString(81, this->width - 2, y, ci->client_name, colour);
y += CLNWND_ROWSIZE; y += FONT_HEIGHT_NORMAL;
} }
} }
@ -2131,11 +2126,7 @@ struct NetworkClientListWindow : Window
/* Find the new selected item (if any) */ /* Find the new selected item (if any) */
this->selected_y = pt.y; this->selected_y = pt.y;
if (pt.y > CLNWND_OFFSET) { this->selected_item = max((pt.y - this->widget[3].top - WD_FRAMERECT_TOP) / FONT_HEIGHT_NORMAL, -1);
this->selected_item = (pt.y - CLNWND_OFFSET) / CLNWND_ROWSIZE;
} else {
this->selected_item = -1;
}
/* Repaint */ /* Repaint */
this->SetDirty(); this->SetDirty();