Fix: Stopped ships shouldn't block depots (#8578)
[openttd-github.git] / src / widget.cpp
blobd1ba44679b2d81de3ab854d1f569af6a0a73e828
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file widget.cpp Handling of the default/simple widgets. */
10 #include "stdafx.h"
11 #include "company_func.h"
12 #include "window_gui.h"
13 #include "viewport_func.h"
14 #include "zoom_func.h"
15 #include "strings_func.h"
16 #include "transparency.h"
17 #include "core/geometry_func.hpp"
18 #include "settings_type.h"
19 #include "querystring_gui.h"
21 #include "table/sprites.h"
22 #include "table/strings.h"
23 #include "table/string_colours.h"
25 #include "safeguards.h"
27 /**
28 * Compute the vertical position of the draggable part of scrollbar
29 * @param sb Scrollbar list data
30 * @param top Top position of the scrollbar (top position of the up-button)
31 * @param bottom Bottom position of the scrollbar (bottom position of the down-button)
32 * @param horizontal Whether the scrollbar is horizontal or not
33 * @return A Point, with x containing the top coordinate of the draggable part, and
34 * y containing the bottom coordinate of the draggable part
36 static Point HandleScrollbarHittest(const Scrollbar *sb, int top, int bottom, bool horizontal)
38 /* Base for reversion */
39 int rev_base = top + bottom;
40 int button_size;
41 if (horizontal) {
42 button_size = NWidgetScrollbar::GetHorizontalDimension().width;
43 } else {
44 button_size = NWidgetScrollbar::GetVerticalDimension().height;
46 top += button_size; // top points to just below the up-button
47 bottom -= button_size; // bottom points to top of the down-button
49 int height = (bottom - top);
50 int pos = sb->GetPosition();
51 int count = sb->GetCount();
52 int cap = sb->GetCapacity();
54 if (count != 0) top += height * pos / count;
56 if (cap > count) cap = count;
57 if (count != 0) bottom -= (count - pos - cap) * height / count;
59 Point pt;
60 if (horizontal && _current_text_dir == TD_RTL) {
61 pt.x = rev_base - bottom;
62 pt.y = rev_base - top;
63 } else {
64 pt.x = top;
65 pt.y = bottom;
67 return pt;
70 /**
71 * Compute new position of the scrollbar after a click and updates the window flags.
72 * @param w Window on which a scroll was performed.
73 * @param sb Scrollbar
74 * @param mi Minimum coordinate of the scroll bar.
75 * @param ma Maximum coordinate of the scroll bar.
76 * @param x The X coordinate of the mouse click.
77 * @param y The Y coordinate of the mouse click.
79 static void ScrollbarClickPositioning(Window *w, NWidgetScrollbar *sb, int x, int y, int mi, int ma)
81 int pos;
82 int button_size;
83 bool rtl = false;
85 if (sb->type == NWID_HSCROLLBAR) {
86 pos = x;
87 rtl = _current_text_dir == TD_RTL;
88 button_size = NWidgetScrollbar::GetHorizontalDimension().width;
89 } else {
90 pos = y;
91 button_size = NWidgetScrollbar::GetVerticalDimension().height;
93 if (pos < mi + button_size) {
94 /* Pressing the upper button? */
95 SetBit(sb->disp_flags, NDB_SCROLLBAR_UP);
96 if (_scroller_click_timeout <= 1) {
97 _scroller_click_timeout = 3;
98 sb->UpdatePosition(rtl ? 1 : -1);
100 w->mouse_capture_widget = sb->index;
101 } else if (pos >= ma - button_size) {
102 /* Pressing the lower button? */
103 SetBit(sb->disp_flags, NDB_SCROLLBAR_DOWN);
105 if (_scroller_click_timeout <= 1) {
106 _scroller_click_timeout = 3;
107 sb->UpdatePosition(rtl ? -1 : 1);
109 w->mouse_capture_widget = sb->index;
110 } else {
111 Point pt = HandleScrollbarHittest(sb, mi, ma, sb->type == NWID_HSCROLLBAR);
113 if (pos < pt.x) {
114 sb->UpdatePosition(rtl ? 1 : -1, Scrollbar::SS_BIG);
115 } else if (pos > pt.y) {
116 sb->UpdatePosition(rtl ? -1 : 1, Scrollbar::SS_BIG);
117 } else {
118 _scrollbar_start_pos = pt.x - mi - button_size;
119 _scrollbar_size = ma - mi - button_size * 2;
120 w->mouse_capture_widget = sb->index;
121 _cursorpos_drag_start = _cursor.pos;
125 w->SetDirty();
129 * Special handling for the scrollbar widget type.
130 * Handles the special scrolling buttons and other scrolling.
131 * @param w Window on which a scroll was performed.
132 * @param nw Pointer to the scrollbar widget.
133 * @param x The X coordinate of the mouse click.
134 * @param y The Y coordinate of the mouse click.
136 void ScrollbarClickHandler(Window *w, NWidgetCore *nw, int x, int y)
138 int mi, ma;
140 if (nw->type == NWID_HSCROLLBAR) {
141 mi = nw->pos_x;
142 ma = nw->pos_x + nw->current_x;
143 } else {
144 mi = nw->pos_y;
145 ma = nw->pos_y + nw->current_y;
147 NWidgetScrollbar *scrollbar = dynamic_cast<NWidgetScrollbar*>(nw);
148 assert(scrollbar != nullptr);
149 ScrollbarClickPositioning(w, scrollbar, x, y, mi, ma);
153 * Returns the index for the widget located at the given position
154 * relative to the window. It includes all widget-corner pixels as well.
155 * @param *w Window to look inside
156 * @param x The Window client X coordinate
157 * @param y The Window client y coordinate
158 * @return A widget index, or -1 if no widget was found.
160 int GetWidgetFromPos(const Window *w, int x, int y)
162 NWidgetCore *nw = w->nested_root->GetWidgetFromPos(x, y);
163 return (nw != nullptr) ? nw->index : -1;
167 * Draw frame rectangle.
168 * @param left Left edge of the frame
169 * @param top Top edge of the frame
170 * @param right Right edge of the frame
171 * @param bottom Bottom edge of the frame
172 * @param colour Colour table to use. @see _colour_gradient
173 * @param flags Flags controlling how to draw the frame. @see FrameFlags
175 void DrawFrameRect(int left, int top, int right, int bottom, Colours colour, FrameFlags flags)
177 assert(colour < COLOUR_END);
179 uint dark = _colour_gradient[colour][3];
180 uint medium_dark = _colour_gradient[colour][5];
181 uint medium_light = _colour_gradient[colour][6];
182 uint light = _colour_gradient[colour][7];
184 if (flags & FR_TRANSPARENT) {
185 GfxFillRect(left, top, right, bottom, PALETTE_TO_TRANSPARENT, FILLRECT_RECOLOUR);
186 } else {
187 uint interior;
189 if (flags & FR_LOWERED) {
190 GfxFillRect(left, top, left, bottom, dark);
191 GfxFillRect(left + WD_BEVEL_LEFT, top, right, top, dark);
192 GfxFillRect(right, top + WD_BEVEL_TOP, right, bottom - WD_BEVEL_BOTTOM, light);
193 GfxFillRect(left + WD_BEVEL_LEFT, bottom, right, bottom, light);
194 interior = (flags & FR_DARKENED ? medium_dark : medium_light);
195 } else {
196 GfxFillRect(left, top, left, bottom - WD_BEVEL_BOTTOM, light);
197 GfxFillRect(left + WD_BEVEL_LEFT, top, right - WD_BEVEL_RIGHT, top, light);
198 GfxFillRect(right, top, right, bottom - WD_BEVEL_BOTTOM, dark);
199 GfxFillRect(left, bottom, right, bottom, dark);
200 interior = medium_dark;
202 if (!(flags & FR_BORDERONLY)) {
203 GfxFillRect(left + WD_BEVEL_LEFT, top + WD_BEVEL_TOP, right - WD_BEVEL_RIGHT, bottom - WD_BEVEL_BOTTOM, interior);
209 * Draw an image button.
210 * @param r Rectangle of the button.
211 * @param type Widget type (#WWT_IMGBTN or #WWT_IMGBTN_2).
212 * @param colour Colour of the button.
213 * @param clicked Button is lowered.
214 * @param img Sprite to draw.
216 static inline void DrawImageButtons(const Rect &r, WidgetType type, Colours colour, bool clicked, SpriteID img)
218 assert(img != 0);
219 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
221 if ((type & WWT_MASK) == WWT_IMGBTN_2 && clicked) img++; // Show different image when clicked for #WWT_IMGBTN_2.
222 Dimension d = GetSpriteSize(img);
223 DrawSprite(img, PAL_NONE, CenterBounds(r.left, r.right, d.width) + clicked, CenterBounds(r.top, r.bottom, d.height) + clicked);
227 * Draw the label-part of a widget.
228 * @param r Rectangle of the label background.
229 * @param type Widget type (#WWT_TEXTBTN, #WWT_TEXTBTN_2, or #WWT_LABEL).
230 * @param clicked Label is rendered lowered.
231 * @param str Text to draw.
233 static inline void DrawLabel(const Rect &r, WidgetType type, bool clicked, StringID str)
235 if (str == STR_NULL) return;
236 if ((type & WWT_MASK) == WWT_TEXTBTN_2 && clicked) str++;
237 Dimension d = GetStringBoundingBox(str);
238 int offset = std::max(0, ((int)(r.bottom - r.top + 1) - (int)d.height) / 2); // Offset for rendering the text vertically centered
239 DrawString(r.left + clicked, r.right + clicked, r.top + offset + clicked, str, TC_FROMSTRING, SA_HOR_CENTER);
243 * Draw text.
244 * @param r Rectangle of the background.
245 * @param colour Colour of the text.
246 * @param str Text to draw.
248 static inline void DrawText(const Rect &r, TextColour colour, StringID str)
250 Dimension d = GetStringBoundingBox(str);
251 int offset = std::max(0, ((int)(r.bottom - r.top + 1) - (int)d.height) / 2); // Offset for rendering the text vertically centered
252 if (str != STR_NULL) DrawString(r.left, r.right, r.top + offset, str, colour);
256 * Draw an inset widget.
257 * @param r Rectangle of the background.
258 * @param colour Colour of the inset.
259 * @param str Text to draw.
261 static inline void DrawInset(const Rect &r, Colours colour, StringID str)
263 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_LOWERED | FR_DARKENED);
264 if (str != STR_NULL) DrawString(r.left + WD_INSET_LEFT, r.right - WD_INSET_RIGHT, r.top + WD_INSET_TOP, str);
268 * Draw a matrix widget.
269 * @param r Rectangle of the matrix background.
270 * @param colour Colour of the background.
271 * @param clicked Matrix is rendered lowered.
272 * @param data Data of the widget, number of rows and columns of the widget.
273 * @param resize_x Matrix resize unit size.
274 * @param resize_y Matrix resize unit size.
276 static inline void DrawMatrix(const Rect &r, Colours colour, bool clicked, uint16 data, uint resize_x, uint resize_y)
278 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
280 int num_columns = GB(data, MAT_COL_START, MAT_COL_BITS); // Lower 8 bits of the widget data: Number of columns in the matrix.
281 int column_width; // Width of a single column in the matrix.
282 if (num_columns == 0) {
283 column_width = resize_x;
284 num_columns = (r.right - r.left + 1) / column_width;
285 } else {
286 column_width = (r.right - r.left + 1) / num_columns;
289 int num_rows = GB(data, MAT_ROW_START, MAT_ROW_BITS); // Upper 8 bits of the widget data: Number of rows in the matrix.
290 int row_height; // Height of a single row in the matrix.
291 if (num_rows == 0) {
292 row_height = resize_y;
293 num_rows = (r.bottom - r.top + 1) / row_height;
294 } else {
295 row_height = (r.bottom - r.top + 1) / num_rows;
298 int col = _colour_gradient[colour & 0xF][6];
300 int x = r.left;
301 for (int ctr = num_columns; ctr > 1; ctr--) {
302 x += column_width;
303 GfxFillRect(x, r.top + 1, x, r.bottom - 1, col);
306 x = r.top;
307 for (int ctr = num_rows; ctr > 1; ctr--) {
308 x += row_height;
309 GfxFillRect(r.left + 1, x, r.right - 1, x, col);
312 col = _colour_gradient[colour & 0xF][4];
314 x = r.left - 1;
315 for (int ctr = num_columns; ctr > 1; ctr--) {
316 x += column_width;
317 GfxFillRect(x, r.top + 1, x, r.bottom - 1, col);
320 x = r.top - 1;
321 for (int ctr = num_rows; ctr > 1; ctr--) {
322 x += row_height;
323 GfxFillRect(r.left + 1, x, r.right - 1, x, col);
328 * Draw a vertical scrollbar.
329 * @param r Rectangle of the scrollbar widget.
330 * @param colour Colour of the scrollbar widget.
331 * @param up_clicked Up-arrow is clicked.
332 * @param bar_dragged Bar is dragged.
333 * @param down_clicked Down-arrow is clicked.
334 * @param scrollbar Scrollbar size, offset, and capacity information.
336 static inline void DrawVerticalScrollbar(const Rect &r, Colours colour, bool up_clicked, bool bar_dragged, bool down_clicked, const Scrollbar *scrollbar)
338 int centre = (r.right - r.left) / 2;
339 int height = NWidgetScrollbar::GetVerticalDimension().height;
341 /* draw up/down buttons */
342 DrawFrameRect(r.left, r.top, r.right, r.top + height - 1, colour, (up_clicked) ? FR_LOWERED : FR_NONE);
343 DrawSprite(SPR_ARROW_UP, PAL_NONE, r.left + 1 + up_clicked, r.top + 1 + up_clicked);
345 DrawFrameRect(r.left, r.bottom - (height - 1), r.right, r.bottom, colour, (down_clicked) ? FR_LOWERED : FR_NONE);
346 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.left + 1 + down_clicked, r.bottom - (height - 2) + down_clicked);
348 int c1 = _colour_gradient[colour & 0xF][3];
349 int c2 = _colour_gradient[colour & 0xF][7];
351 /* draw "shaded" background */
352 GfxFillRect(r.left, r.top + height, r.right, r.bottom - height, c2);
353 GfxFillRect(r.left, r.top + height, r.right, r.bottom - height, c1, FILLRECT_CHECKER);
355 /* draw shaded lines */
356 GfxFillRect(r.left + centre - 3, r.top + height, r.left + centre - 3, r.bottom - height, c1);
357 GfxFillRect(r.left + centre - 2, r.top + height, r.left + centre - 2, r.bottom - height, c2);
358 GfxFillRect(r.left + centre + 2, r.top + height, r.left + centre + 2, r.bottom - height, c1);
359 GfxFillRect(r.left + centre + 3, r.top + height, r.left + centre + 3, r.bottom - height, c2);
361 Point pt = HandleScrollbarHittest(scrollbar, r.top, r.bottom, false);
362 DrawFrameRect(r.left, pt.x, r.right, pt.y, colour, bar_dragged ? FR_LOWERED : FR_NONE);
366 * Draw a horizontal scrollbar.
367 * @param r Rectangle of the scrollbar widget.
368 * @param colour Colour of the scrollbar widget.
369 * @param left_clicked Left-arrow is clicked.
370 * @param bar_dragged Bar is dragged.
371 * @param right_clicked Right-arrow is clicked.
372 * @param scrollbar Scrollbar size, offset, and capacity information.
374 static inline void DrawHorizontalScrollbar(const Rect &r, Colours colour, bool left_clicked, bool bar_dragged, bool right_clicked, const Scrollbar *scrollbar)
376 int centre = (r.bottom - r.top) / 2;
377 int width = NWidgetScrollbar::GetHorizontalDimension().width;
379 DrawFrameRect(r.left, r.top, r.left + width - 1, r.bottom, colour, left_clicked ? FR_LOWERED : FR_NONE);
380 DrawSprite(SPR_ARROW_LEFT, PAL_NONE, r.left + 1 + left_clicked, r.top + 1 + left_clicked);
382 DrawFrameRect(r.right - (width - 1), r.top, r.right, r.bottom, colour, right_clicked ? FR_LOWERED : FR_NONE);
383 DrawSprite(SPR_ARROW_RIGHT, PAL_NONE, r.right - (width - 2) + right_clicked, r.top + 1 + right_clicked);
385 int c1 = _colour_gradient[colour & 0xF][3];
386 int c2 = _colour_gradient[colour & 0xF][7];
388 /* draw "shaded" background */
389 GfxFillRect(r.left + width, r.top, r.right - width, r.bottom, c2);
390 GfxFillRect(r.left + width, r.top, r.right - width, r.bottom, c1, FILLRECT_CHECKER);
392 /* draw shaded lines */
393 GfxFillRect(r.left + width, r.top + centre - 3, r.right - width, r.top + centre - 3, c1);
394 GfxFillRect(r.left + width, r.top + centre - 2, r.right - width, r.top + centre - 2, c2);
395 GfxFillRect(r.left + width, r.top + centre + 2, r.right - width, r.top + centre + 2, c1);
396 GfxFillRect(r.left + width, r.top + centre + 3, r.right - width, r.top + centre + 3, c2);
398 /* draw actual scrollbar */
399 Point pt = HandleScrollbarHittest(scrollbar, r.left, r.right, true);
400 DrawFrameRect(pt.x, r.top, pt.y, r.bottom, colour, bar_dragged ? FR_LOWERED : FR_NONE);
404 * Draw a frame widget.
405 * @param r Rectangle of the frame.
406 * @param colour Colour of the frame.
407 * @param str Text of the frame.
409 static inline void DrawFrame(const Rect &r, Colours colour, StringID str)
411 int x2 = r.left; // by default the left side is the left side of the widget
413 if (str != STR_NULL) x2 = DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, r.top, str);
415 int c1 = _colour_gradient[colour][3];
416 int c2 = _colour_gradient[colour][7];
418 /* If the frame has text, adjust the top bar to fit half-way through */
419 int dy1 = 4;
420 if (str != STR_NULL) dy1 = FONT_HEIGHT_NORMAL / 2 - 1;
421 int dy2 = dy1 + 1;
423 if (_current_text_dir == TD_LTR) {
424 /* Line from upper left corner to start of text */
425 GfxFillRect(r.left, r.top + dy1, r.left + 4, r.top + dy1, c1);
426 GfxFillRect(r.left + 1, r.top + dy2, r.left + 4, r.top + dy2, c2);
428 /* Line from end of text to upper right corner */
429 GfxFillRect(x2, r.top + dy1, r.right - 1, r.top + dy1, c1);
430 GfxFillRect(x2, r.top + dy2, r.right - 2, r.top + dy2, c2);
431 } else {
432 /* Line from upper left corner to start of text */
433 GfxFillRect(r.left, r.top + dy1, x2 - 2, r.top + dy1, c1);
434 GfxFillRect(r.left + 1, r.top + dy2, x2 - 2, r.top + dy2, c2);
436 /* Line from end of text to upper right corner */
437 GfxFillRect(r.right - 5, r.top + dy1, r.right - 1, r.top + dy1, c1);
438 GfxFillRect(r.right - 5, r.top + dy2, r.right - 2, r.top + dy2, c2);
441 /* Line from upper left corner to bottom left corner */
442 GfxFillRect(r.left, r.top + dy2, r.left, r.bottom - 1, c1);
443 GfxFillRect(r.left + 1, r.top + dy2 + 1, r.left + 1, r.bottom - 2, c2);
445 /* Line from upper right corner to bottom right corner */
446 GfxFillRect(r.right - 1, r.top + dy2, r.right - 1, r.bottom - 2, c1);
447 GfxFillRect(r.right, r.top + dy1, r.right, r.bottom - 1, c2);
449 GfxFillRect(r.left + 1, r.bottom - 1, r.right - 1, r.bottom - 1, c1);
450 GfxFillRect(r.left, r.bottom, r.right, r.bottom, c2);
454 * Draw a shade box.
455 * @param r Rectangle of the box.
456 * @param colour Colour of the shade box.
457 * @param clicked Box is lowered.
459 static inline void DrawShadeBox(const Rect &r, Colours colour, bool clicked)
461 DrawImageButtons(r, WWT_SHADEBOX, colour, clicked, clicked ? SPR_WINDOW_SHADE: SPR_WINDOW_UNSHADE);
465 * Draw a sticky box.
466 * @param r Rectangle of the box.
467 * @param colour Colour of the sticky box.
468 * @param clicked Box is lowered.
470 static inline void DrawStickyBox(const Rect &r, Colours colour, bool clicked)
472 DrawImageButtons(r, WWT_STICKYBOX, colour, clicked, clicked ? SPR_PIN_UP : SPR_PIN_DOWN);
476 * Draw a defsize box.
477 * @param r Rectangle of the box.
478 * @param colour Colour of the defsize box.
479 * @param clicked Box is lowered.
481 static inline void DrawDefSizeBox(const Rect &r, Colours colour, bool clicked)
483 DrawImageButtons(r, WWT_DEFSIZEBOX, colour, clicked, SPR_WINDOW_DEFSIZE);
487 * Draw a NewGRF debug box.
488 * @param r Rectangle of the box.
489 * @param colour Colour of the debug box.
490 * @param clicked Box is lowered.
492 static inline void DrawDebugBox(const Rect &r, Colours colour, bool clicked)
494 DrawImageButtons(r, WWT_DEBUGBOX, colour, clicked, SPR_WINDOW_DEBUG);
498 * Draw a resize box.
499 * @param r Rectangle of the box.
500 * @param colour Colour of the resize box.
501 * @param at_left Resize box is at left-side of the window,
502 * @param clicked Box is lowered.
504 static inline void DrawResizeBox(const Rect &r, Colours colour, bool at_left, bool clicked)
506 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
507 if (at_left) {
508 Dimension d = GetSpriteSize(SPR_WINDOW_RESIZE_LEFT);
509 DrawSprite(SPR_WINDOW_RESIZE_LEFT, PAL_NONE, r.left + WD_RESIZEBOX_RIGHT + clicked,
510 r.bottom + 1 - WD_RESIZEBOX_BOTTOM - d.height + clicked);
511 } else {
512 Dimension d = GetSpriteSize(SPR_WINDOW_RESIZE_RIGHT);
513 DrawSprite(SPR_WINDOW_RESIZE_RIGHT, PAL_NONE, r.right + 1 - WD_RESIZEBOX_RIGHT - d.width + clicked,
514 r.bottom + 1 - WD_RESIZEBOX_BOTTOM - d.height + clicked);
519 * Draw a close box.
520 * @param r Rectangle of the box.
521 * @param colour Colour of the close box.
523 static inline void DrawCloseBox(const Rect &r, Colours colour)
525 if (colour != COLOUR_WHITE) DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_NONE);
526 Dimension d = GetSpriteSize(SPR_CLOSEBOX);
527 int s = UnScaleGUI(1); /* Offset to account for shadow of SPR_CLOSEBOX */
528 DrawSprite(SPR_CLOSEBOX, (colour != COLOUR_WHITE ? TC_BLACK : TC_SILVER) | (1 << PALETTE_TEXT_RECOLOUR), CenterBounds(r.left, r.right, d.width - s), CenterBounds(r.top, r.bottom, d.height - s));
532 * Draw a caption bar.
533 * @param r Rectangle of the bar.
534 * @param colour Colour of the window.
535 * @param owner 'Owner' of the window.
536 * @param str Text to draw in the bar.
538 void DrawCaption(const Rect &r, Colours colour, Owner owner, StringID str)
540 bool company_owned = owner < MAX_COMPANIES;
542 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_BORDERONLY);
543 DrawFrameRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, colour, company_owned ? FR_LOWERED | FR_DARKENED | FR_BORDERONLY : FR_LOWERED | FR_DARKENED);
545 if (company_owned) {
546 GfxFillRect(r.left + 2, r.top + 2, r.right - 2, r.bottom - 2, _colour_gradient[_company_colours[owner]][4]);
549 if (str != STR_NULL) {
550 Dimension d = GetStringBoundingBox(str);
551 int offset = std::max(0, ((int)(r.bottom - r.top + 1) - (int)d.height) / 2); // Offset for rendering the text vertically centered
552 DrawString(r.left + WD_CAPTIONTEXT_LEFT, r.right - WD_CAPTIONTEXT_RIGHT, r.top + offset, str, TC_FROMSTRING, SA_HOR_CENTER);
557 * Draw a button with a dropdown (#WWT_DROPDOWN and #NWID_BUTTON_DROPDOWN).
558 * @param r Rectangle containing the widget.
559 * @param colour Background colour of the widget.
560 * @param clicked_button The button-part is lowered.
561 * @param clicked_dropdown The drop-down part is lowered.
562 * @param str Text of the button.
564 * @note Magic constants are also used in #NWidgetLeaf::ButtonHit.
566 static inline void DrawButtonDropdown(const Rect &r, Colours colour, bool clicked_button, bool clicked_dropdown, StringID str)
568 int text_offset = std::max(0, ((int)(r.bottom - r.top + 1) - FONT_HEIGHT_NORMAL) / 2); // Offset for rendering the text vertically centered
570 int dd_width = NWidgetLeaf::dropdown_dimension.width;
571 int dd_height = NWidgetLeaf::dropdown_dimension.height;
572 int image_offset = std::max(0, ((int)(r.bottom - r.top + 1) - dd_height) / 2);
574 if (_current_text_dir == TD_LTR) {
575 DrawFrameRect(r.left, r.top, r.right - dd_width, r.bottom, colour, clicked_button ? FR_LOWERED : FR_NONE);
576 DrawFrameRect(r.right + 1 - dd_width, r.top, r.right, r.bottom, colour, clicked_dropdown ? FR_LOWERED : FR_NONE);
577 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.right - (dd_width - 2) + clicked_dropdown, r.top + image_offset + clicked_dropdown);
578 if (str != STR_NULL) DrawString(r.left + WD_DROPDOWNTEXT_LEFT + clicked_button, r.right - dd_width - WD_DROPDOWNTEXT_RIGHT + clicked_button, r.top + text_offset + clicked_button, str, TC_BLACK);
579 } else {
580 DrawFrameRect(r.left + dd_width, r.top, r.right, r.bottom, colour, clicked_button ? FR_LOWERED : FR_NONE);
581 DrawFrameRect(r.left, r.top, r.left + dd_width - 1, r.bottom, colour, clicked_dropdown ? FR_LOWERED : FR_NONE);
582 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.left + 1 + clicked_dropdown, r.top + image_offset + clicked_dropdown);
583 if (str != STR_NULL) DrawString(r.left + dd_width + WD_DROPDOWNTEXT_LEFT + clicked_button, r.right - WD_DROPDOWNTEXT_RIGHT + clicked_button, r.top + text_offset + clicked_button, str, TC_BLACK);
588 * Draw a dropdown #WWT_DROPDOWN widget.
589 * @param r Rectangle containing the widget.
590 * @param colour Background colour of the widget.
591 * @param clicked The widget is lowered.
592 * @param str Text of the button.
594 static inline void DrawDropdown(const Rect &r, Colours colour, bool clicked, StringID str)
596 DrawButtonDropdown(r, colour, false, clicked, str);
600 * Paint all widgets of a window.
602 void Window::DrawWidgets() const
604 this->nested_root->Draw(this);
606 if (this->flags & WF_WHITE_BORDER) {
607 DrawFrameRect(0, 0, this->width - 1, this->height - 1, COLOUR_WHITE, FR_BORDERONLY);
610 if (this->flags & WF_HIGHLIGHTED) {
611 extern bool _window_highlight_colour;
612 for (uint i = 0; i < this->nested_array_size; i++) {
613 const NWidgetBase *widget = this->GetWidget<NWidgetBase>(i);
614 if (widget == nullptr || !widget->IsHighlighted()) continue;
616 int left = widget->pos_x;
617 int top = widget->pos_y;
618 int right = left + widget->current_x - 1;
619 int bottom = top + widget->current_y - 1;
621 int colour = _string_colourmap[_window_highlight_colour ? widget->GetHighlightColour() : TC_WHITE];
623 GfxFillRect(left, top, left, bottom - WD_BEVEL_BOTTOM, colour);
624 GfxFillRect(left + WD_BEVEL_LEFT, top, right - WD_BEVEL_RIGHT, top, colour);
625 GfxFillRect(right, top, right, bottom - WD_BEVEL_BOTTOM, colour);
626 GfxFillRect(left, bottom, right, bottom, colour);
632 * Draw a sort button's up or down arrow symbol.
633 * @param widget Sort button widget
634 * @param state State of sort button
636 void Window::DrawSortButtonState(int widget, SortButtonState state) const
638 if (state == SBS_OFF) return;
640 assert(this->nested_array != nullptr);
641 const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget);
643 /* Sort button uses the same sprites as vertical scrollbar */
644 Dimension dim = NWidgetScrollbar::GetVerticalDimension();
645 int offset = this->IsWidgetLowered(widget) ? 1 : 0;
646 int x = offset + nwid->pos_x + (_current_text_dir == TD_LTR ? nwid->current_x - dim.width : 0);
647 int y = offset + nwid->pos_y + (nwid->current_y - dim.height) / 2;
649 DrawSprite(state == SBS_DOWN ? SPR_ARROW_DOWN : SPR_ARROW_UP, PAL_NONE, x, y);
653 * Get width of up/down arrow of sort button state.
654 * @return Width of space required by sort button arrow.
656 int Window::SortButtonWidth()
658 return NWidgetScrollbar::GetVerticalDimension().width + 1;
663 * @defgroup NestedWidgets Hierarchical widgets
664 * Hierarchical widgets, also known as nested widgets, are widgets stored in a tree. At the leafs of the tree are (mostly) the 'real' widgets
665 * visible to the user. At higher levels, widgets get organized in container widgets, until all widgets of the window are merged.
667 * \section nestedwidgetkinds Hierarchical widget kinds
668 * A leaf widget is one of
669 * <ul>
670 * <li> #NWidgetLeaf for widgets visible for the user, or
671 * <li> #NWidgetSpacer for creating (flexible) empty space between widgets.
672 * </ul>
673 * The purpose of a leaf widget is to provide interaction with the user by displaying settings, and/or allowing changing the settings.
675 * A container widget is one of
676 * <ul>
677 * <li> #NWidgetHorizontal for organizing child widgets in a (horizontal) row. The row switches order depending on the language setting (thus supporting
678 * right-to-left languages),
679 * <li> #NWidgetHorizontalLTR for organizing child widgets in a (horizontal) row, always in the same order. All children below this container will also
680 * never swap order.
681 * <li> #NWidgetVertical for organizing child widgets underneath each other.
682 * <li> #NWidgetMatrix for organizing child widgets in a matrix form.
683 * <li> #NWidgetBackground for adding a background behind its child widget.
684 * <li> #NWidgetStacked for stacking child widgets on top of each other.
685 * </ul>
686 * The purpose of a container widget is to structure its leafs and sub-containers to allow proper resizing.
688 * \section nestedwidgetscomputations Hierarchical widget computations
689 * The first 'computation' is the creation of the nested widgets tree by calling the constructors of the widgets listed above and calling \c Add() for every child,
690 * or by means of specifying the tree as a collection of nested widgets parts and instantiating the tree from the array.
692 * After the creation step,
693 * - The leafs have their own minimal size (\e min_x, \e min_y), filling (\e fill_x, \e fill_y), and resize steps (\e resize_x, \e resize_y).
694 * - Containers only know what their children are, \e fill_x, \e fill_y, \e resize_x, and \e resize_y are not initialized.
696 * Computations in the nested widgets take place as follows:
697 * <ol>
698 * <li> A bottom-up sweep by recursively calling NWidgetBase::SetupSmallestSize() to initialize the smallest size (\e smallest_x, \e smallest_y) and
699 * to propagate filling and resize steps upwards to the root of the tree.
700 * <li> A top-down sweep by recursively calling NWidgetBase::AssignSizePosition() with #ST_SMALLEST to make the smallest sizes consistent over
701 * the entire tree, and to assign the top-left (\e pos_x, \e pos_y) position of each widget in the tree. This step uses \e fill_x and \e fill_y at each
702 * node in the tree to decide how to fill each widget towards consistent sizes. Also the current size (\e current_x and \e current_y) is set.
703 * <li> After initializing the smallest size in the widget tree with #ST_SMALLEST, the tree can be resized (the current size modified) by calling
704 * NWidgetBase::AssignSizePosition() at the root with #ST_RESIZE and the new size of the window. For proper functioning, the new size should be the smallest
705 * size + a whole number of resize steps in both directions (ie you can only resize in steps of length resize_{x,y} from smallest_{x,y}).
706 * </ol>
707 * After the second step, the current size of the widgets are set to the smallest size.
709 * To resize, perform the last step with the new window size. This can be done as often as desired.
710 * When the smallest size of at least one widget changes, the whole procedure has to be redone from the start.
712 * @see NestedWidgetParts
716 * Base class constructor.
717 * @param tp Nested widget type.
719 NWidgetBase::NWidgetBase(WidgetType tp) : ZeroedMemoryAllocator()
721 this->type = tp;
724 /* ~NWidgetContainer() takes care of #next and #prev data members. */
727 * @fn void NWidgetBase::SetupSmallestSize(Window *w, bool init_array)
728 * Compute smallest size needed by the widget.
730 * The smallest size of a widget is the smallest size that a widget needs to
731 * display itself properly. In addition, filling and resizing of the widget are computed.
732 * The function calls #Window::UpdateWidgetSize for each leaf widget and
733 * background widget without child with a non-negative index.
735 * @param w Window owning the widget.
736 * @param init_array Initialize the \c w->nested_array.
738 * @note After the computation, the results can be queried by accessing the #smallest_x and #smallest_y data members of the widget.
742 * @fn void NWidgetBase::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
743 * Assign size and position to the widget.
744 * @param sizing Type of resizing to perform.
745 * @param x Horizontal offset of the widget relative to the left edge of the window.
746 * @param y Vertical offset of the widget relative to the top edge of the window.
747 * @param given_width Width allocated to the widget.
748 * @param given_height Height allocated to the widget.
749 * @param rtl Adapt for right-to-left languages (position contents of horizontal containers backwards).
751 * Afterwards, \e pos_x and \e pos_y contain the top-left position of the widget, \e smallest_x and \e smallest_y contain
752 * the smallest size such that all widgets of the window are consistent, and \e current_x and \e current_y contain the current size.
756 * @fn void NWidgetBase::FillNestedArray(NWidgetBase **array, uint length)
757 * Fill the Window::nested_array array with pointers to nested widgets in the tree.
758 * @param array Base pointer of the array.
759 * @param length Length of the array.
763 * @fn void NWidgetBase::Draw(const Window *w)
764 * Draw the widgets of the tree.
765 * The function calls #Window::DrawWidget for each widget with a non-negative index, after the widget itself is painted.
766 * @param w Window that owns the tree.
770 * Mark the widget as 'dirty' (in need of repaint).
771 * @param w Window owning the widget.
773 void NWidgetBase::SetDirty(const Window *w) const
775 int abs_left = w->left + this->pos_x;
776 int abs_top = w->top + this->pos_y;
777 AddDirtyBlock(abs_left, abs_top, abs_left + this->current_x, abs_top + this->current_y);
781 * @fn NWidgetCore *NWidgetBase::GetWidgetFromPos(int x, int y)
782 * Retrieve a widget by its position.
783 * @param x Horizontal position relative to the left edge of the window.
784 * @param y Vertical position relative to the top edge of the window.
785 * @return Returns the deepest nested widget that covers the given position, or \c nullptr if no widget can be found.
789 * Retrieve a widget by its type.
790 * @param tp Widget type to search for.
791 * @return Returns the first widget of the specified type, or \c nullptr if no widget can be found.
793 NWidgetBase *NWidgetBase::GetWidgetOfType(WidgetType tp)
795 return (this->type == tp) ? this : nullptr;
799 * Constructor for resizable nested widgets.
800 * @param tp Nested widget type.
801 * @param fill_x Horizontal fill step size, \c 0 means no filling is allowed.
802 * @param fill_y Vertical fill step size, \c 0 means no filling is allowed.
804 NWidgetResizeBase::NWidgetResizeBase(WidgetType tp, uint fill_x, uint fill_y) : NWidgetBase(tp)
806 this->fill_x = fill_x;
807 this->fill_y = fill_y;
811 * Set minimal size of the widget.
812 * @param min_x Horizontal minimal size of the widget.
813 * @param min_y Vertical minimal size of the widget.
815 void NWidgetResizeBase::SetMinimalSize(uint min_x, uint min_y)
817 this->min_x = std::max(this->min_x, min_x);
818 this->min_y = std::max(this->min_y, min_y);
822 * Set minimal text lines for the widget.
823 * @param min_lines Number of text lines of the widget.
824 * @param spacing Extra spacing (eg WD_FRAMERECT_TOP + _BOTTOM) of the widget.
825 * @param size Font size of text.
827 void NWidgetResizeBase::SetMinimalTextLines(uint8 min_lines, uint8 spacing, FontSize size)
829 this->min_y = min_lines * GetCharacterHeight(size) + spacing;
833 * Set the filling of the widget from initial size.
834 * @param fill_x Horizontal fill step size, \c 0 means no filling is allowed.
835 * @param fill_y Vertical fill step size, \c 0 means no filling is allowed.
837 void NWidgetResizeBase::SetFill(uint fill_x, uint fill_y)
839 this->fill_x = fill_x;
840 this->fill_y = fill_y;
844 * Set resize step of the widget.
845 * @param resize_x Resize step in horizontal direction, value \c 0 means no resize, otherwise the step size in pixels.
846 * @param resize_y Resize step in vertical direction, value \c 0 means no resize, otherwise the step size in pixels.
848 void NWidgetResizeBase::SetResize(uint resize_x, uint resize_y)
850 this->resize_x = resize_x;
851 this->resize_y = resize_y;
854 void NWidgetResizeBase::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
856 this->StoreSizePosition(sizing, x, y, given_width, given_height);
860 * Initialization of a 'real' widget.
861 * @param tp Type of the widget.
862 * @param colour Colour of the widget.
863 * @param fill_x Default horizontal filling.
864 * @param fill_y Default vertical filling.
865 * @param widget_data Data component of the widget. @see Widget::data
866 * @param tool_tip Tool tip of the widget. @see Widget::tooltips
868 NWidgetCore::NWidgetCore(WidgetType tp, Colours colour, uint fill_x, uint fill_y, uint32 widget_data, StringID tool_tip) : NWidgetResizeBase(tp, fill_x, fill_y)
870 this->colour = colour;
871 this->index = -1;
872 this->widget_data = widget_data;
873 this->tool_tip = tool_tip;
874 this->scrollbar_index = -1;
878 * Set index of the nested widget in the widget array.
879 * @param index Index to use.
881 void NWidgetCore::SetIndex(int index)
883 assert(index >= 0);
884 this->index = index;
888 * Set data and tool tip of the nested widget.
889 * @param widget_data Data to use.
890 * @param tool_tip Tool tip string to use.
892 void NWidgetCore::SetDataTip(uint32 widget_data, StringID tool_tip)
894 this->widget_data = widget_data;
895 this->tool_tip = tool_tip;
899 * Set the tool tip of the nested widget.
900 * @param tool_tip Tool tip string to use.
902 void NWidgetCore::SetToolTip(StringID tool_tip)
904 this->tool_tip = tool_tip;
907 void NWidgetCore::FillNestedArray(NWidgetBase **array, uint length)
909 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
912 NWidgetCore *NWidgetCore::GetWidgetFromPos(int x, int y)
914 return (IsInsideBS(x, this->pos_x, this->current_x) && IsInsideBS(y, this->pos_y, this->current_y)) ? this : nullptr;
918 * Constructor container baseclass.
919 * @param tp Type of the container.
921 NWidgetContainer::NWidgetContainer(WidgetType tp) : NWidgetBase(tp)
923 this->head = nullptr;
924 this->tail = nullptr;
927 NWidgetContainer::~NWidgetContainer()
929 while (this->head != nullptr) {
930 NWidgetBase *wid = this->head->next;
931 delete this->head;
932 this->head = wid;
934 this->tail = nullptr;
937 NWidgetBase *NWidgetContainer::GetWidgetOfType(WidgetType tp)
939 if (this->type == tp) return this;
940 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
941 NWidgetBase *nwid = child_wid->GetWidgetOfType(tp);
942 if (nwid != nullptr) return nwid;
944 return nullptr;
948 * Append widget \a wid to container.
949 * @param wid Widget to append.
951 void NWidgetContainer::Add(NWidgetBase *wid)
953 assert(wid->next == nullptr && wid->prev == nullptr);
955 if (this->head == nullptr) {
956 this->head = wid;
957 this->tail = wid;
958 } else {
959 assert(this->tail != nullptr);
960 assert(this->tail->next == nullptr);
962 this->tail->next = wid;
963 wid->prev = this->tail;
964 this->tail = wid;
968 void NWidgetContainer::FillNestedArray(NWidgetBase **array, uint length)
970 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
971 child_wid->FillNestedArray(array, length);
976 * Widgets stacked on top of each other.
978 NWidgetStacked::NWidgetStacked() : NWidgetContainer(NWID_SELECTION)
980 this->index = -1;
983 void NWidgetStacked::SetIndex(int index)
985 this->index = index;
988 void NWidgetStacked::SetupSmallestSize(Window *w, bool init_array)
990 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
991 assert(w->nested_array_size > (uint)this->index);
992 w->nested_array[this->index] = this;
995 /* Zero size plane selected */
996 if (this->shown_plane >= SZSP_BEGIN) {
997 Dimension size = {0, 0};
998 Dimension padding = {0, 0};
999 Dimension fill = {(this->shown_plane == SZSP_HORIZONTAL), (this->shown_plane == SZSP_VERTICAL)};
1000 Dimension resize = {(this->shown_plane == SZSP_HORIZONTAL), (this->shown_plane == SZSP_VERTICAL)};
1001 /* Here we're primarily interested in the value of resize */
1002 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, padding, &fill, &resize);
1004 this->smallest_x = size.width;
1005 this->smallest_y = size.height;
1006 this->fill_x = fill.width;
1007 this->fill_y = fill.height;
1008 this->resize_x = resize.width;
1009 this->resize_y = resize.height;
1010 return;
1013 /* First sweep, recurse down and compute minimal size and filling. */
1014 this->smallest_x = 0;
1015 this->smallest_y = 0;
1016 this->fill_x = (this->head != nullptr) ? 1 : 0;
1017 this->fill_y = (this->head != nullptr) ? 1 : 0;
1018 this->resize_x = (this->head != nullptr) ? 1 : 0;
1019 this->resize_y = (this->head != nullptr) ? 1 : 0;
1020 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1021 child_wid->SetupSmallestSize(w, init_array);
1023 this->smallest_x = std::max(this->smallest_x, child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right);
1024 this->smallest_y = std::max(this->smallest_y, child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom);
1025 this->fill_x = LeastCommonMultiple(this->fill_x, child_wid->fill_x);
1026 this->fill_y = LeastCommonMultiple(this->fill_y, child_wid->fill_y);
1027 this->resize_x = LeastCommonMultiple(this->resize_x, child_wid->resize_x);
1028 this->resize_y = LeastCommonMultiple(this->resize_y, child_wid->resize_y);
1032 void NWidgetStacked::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1034 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1035 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1037 if (this->shown_plane >= SZSP_BEGIN) return;
1039 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1040 uint hor_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetHorizontalStepSize(sizing);
1041 uint child_width = ComputeMaxSize(child_wid->smallest_x, given_width - child_wid->padding_left - child_wid->padding_right, hor_step);
1042 uint child_pos_x = (rtl ? child_wid->padding_right : child_wid->padding_left);
1044 uint vert_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetVerticalStepSize(sizing);
1045 uint child_height = ComputeMaxSize(child_wid->smallest_y, given_height - child_wid->padding_top - child_wid->padding_bottom, vert_step);
1046 uint child_pos_y = child_wid->padding_top;
1048 child_wid->AssignSizePosition(sizing, x + child_pos_x, y + child_pos_y, child_width, child_height, rtl);
1052 void NWidgetStacked::FillNestedArray(NWidgetBase **array, uint length)
1054 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1055 NWidgetContainer::FillNestedArray(array, length);
1058 void NWidgetStacked::Draw(const Window *w)
1060 if (this->shown_plane >= SZSP_BEGIN) return;
1062 int plane = 0;
1063 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; plane++, child_wid = child_wid->next) {
1064 if (plane == this->shown_plane) {
1065 child_wid->Draw(w);
1066 return;
1070 NOT_REACHED();
1073 NWidgetCore *NWidgetStacked::GetWidgetFromPos(int x, int y)
1075 if (this->shown_plane >= SZSP_BEGIN) return nullptr;
1077 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1078 int plane = 0;
1079 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; plane++, child_wid = child_wid->next) {
1080 if (plane == this->shown_plane) {
1081 return child_wid->GetWidgetFromPos(x, y);
1084 return nullptr;
1088 * Select which plane to show (for #NWID_SELECTION only).
1089 * @param plane Plane number to display.
1091 void NWidgetStacked::SetDisplayedPlane(int plane)
1093 this->shown_plane = plane;
1096 NWidgetPIPContainer::NWidgetPIPContainer(WidgetType tp, NWidContainerFlags flags) : NWidgetContainer(tp)
1098 this->flags = flags;
1102 * Set additional pre/inter/post space for the container.
1104 * @param pip_pre Additional space in front of the first child widget (above
1105 * for the vertical container, at the left for the horizontal container).
1106 * @param pip_inter Additional space between two child widgets.
1107 * @param pip_post Additional space after the last child widget (below for the
1108 * vertical container, at the right for the horizontal container).
1110 void NWidgetPIPContainer::SetPIP(uint8 pip_pre, uint8 pip_inter, uint8 pip_post)
1112 this->pip_pre = pip_pre;
1113 this->pip_inter = pip_inter;
1114 this->pip_post = pip_post;
1117 void NWidgetPIPContainer::Draw(const Window *w)
1119 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1120 child_wid->Draw(w);
1124 NWidgetCore *NWidgetPIPContainer::GetWidgetFromPos(int x, int y)
1126 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1128 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1129 NWidgetCore *nwid = child_wid->GetWidgetFromPos(x, y);
1130 if (nwid != nullptr) return nwid;
1132 return nullptr;
1135 /** Horizontal container widget. */
1136 NWidgetHorizontal::NWidgetHorizontal(NWidContainerFlags flags) : NWidgetPIPContainer(NWID_HORIZONTAL, flags)
1140 void NWidgetHorizontal::SetupSmallestSize(Window *w, bool init_array)
1142 this->smallest_x = 0; // Sum of minimal size of all children.
1143 this->smallest_y = 0; // Biggest child.
1144 this->fill_x = 0; // smallest non-zero child widget fill step.
1145 this->fill_y = 1; // smallest common child fill step.
1146 this->resize_x = 0; // smallest non-zero child widget resize step.
1147 this->resize_y = 1; // smallest common child resize step.
1149 /* 1a. Forward call, collect biggest nested array index, and longest/widest child length. */
1150 uint longest = 0; // Longest child found.
1151 uint max_vert_fill = 0; // Biggest vertical fill step.
1152 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1153 child_wid->SetupSmallestSize(w, init_array);
1154 longest = std::max(longest, child_wid->smallest_x);
1155 max_vert_fill = std::max(max_vert_fill, child_wid->GetVerticalStepSize(ST_SMALLEST));
1156 this->smallest_y = std::max(this->smallest_y, child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom);
1158 /* 1b. Make the container higher if needed to accommodate all children nicely. */
1159 uint max_smallest = this->smallest_y + 3 * max_vert_fill; // Upper limit to computing smallest height.
1160 uint cur_height = this->smallest_y;
1161 for (;;) {
1162 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1163 uint step_size = child_wid->GetVerticalStepSize(ST_SMALLEST);
1164 uint child_height = child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1165 if (step_size > 1 && child_height < cur_height) { // Small step sizes or already fitting children are not interesting.
1166 uint remainder = (cur_height - child_height) % step_size;
1167 if (remainder > 0) { // Child did not fit entirely, widen the container.
1168 cur_height += step_size - remainder;
1169 assert(cur_height < max_smallest); // Safeguard against infinite height expansion.
1170 /* Remaining children will adapt to the new cur_height, thus speeding up the computation. */
1174 if (this->smallest_y == cur_height) break;
1175 this->smallest_y = cur_height; // Smallest height got changed, try again.
1177 /* 2. For containers that must maintain equal width, extend child minimal size. */
1178 if (this->flags & NC_EQUALSIZE) {
1179 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1180 if (child_wid->fill_x == 1) child_wid->smallest_x = longest;
1183 /* 3. Move PIP space to the children, compute smallest, fill, and resize values of the container. */
1184 if (this->head != nullptr) this->head->padding_left += this->pip_pre;
1185 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1186 if (child_wid->next != nullptr) {
1187 child_wid->padding_right += this->pip_inter;
1188 } else {
1189 child_wid->padding_right += this->pip_post;
1192 this->smallest_x += child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right;
1193 if (child_wid->fill_x > 0) {
1194 if (this->fill_x == 0 || this->fill_x > child_wid->fill_x) this->fill_x = child_wid->fill_x;
1196 this->fill_y = LeastCommonMultiple(this->fill_y, child_wid->fill_y);
1198 if (child_wid->resize_x > 0) {
1199 if (this->resize_x == 0 || this->resize_x > child_wid->resize_x) this->resize_x = child_wid->resize_x;
1201 this->resize_y = LeastCommonMultiple(this->resize_y, child_wid->resize_y);
1203 /* We need to zero the PIP settings so we can re-initialize the tree. */
1204 this->pip_pre = this->pip_inter = this->pip_post = 0;
1207 void NWidgetHorizontal::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1209 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1211 /* Compute additional width given to us. */
1212 uint additional_length = given_width;
1213 if (sizing == ST_SMALLEST && (this->flags & NC_EQUALSIZE)) {
1214 /* For EQUALSIZE containers this does not sum to smallest_x during initialisation */
1215 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1216 additional_length -= child_wid->smallest_x + child_wid->padding_right + child_wid->padding_left;
1218 } else {
1219 additional_length -= this->smallest_x;
1222 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1224 /* In principle, the additional horizontal space is distributed evenly over the available resizable children. Due to step sizes, this may not always be feasible.
1225 * To make resizing work as good as possible, first children with biggest step sizes are done. These may get less due to rounding down.
1226 * This additional space is then given to children with smaller step sizes. This will give a good result when resize steps of each child is a multiple
1227 * of the child with the smallest non-zero stepsize.
1229 * Since child sizes are computed out of order, positions cannot be calculated until all sizes are known. That means it is not possible to compute the child
1230 * size and position, and directly call child->AssignSizePosition() with the computed values.
1231 * Instead, computed child widths and heights are stored in child->current_x and child->current_y values. That is allowed, since this method overwrites those values
1232 * then we call the child.
1235 /* First loop: Find biggest stepsize, find number of children that want a piece of the pie, handle vertical size for all children,
1236 * handle horizontal size for non-resizing children.
1238 int num_changing_childs = 0; // Number of children that can change size.
1239 uint biggest_stepsize = 0;
1240 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1241 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1242 if (hor_step > 0) {
1243 num_changing_childs++;
1244 biggest_stepsize = std::max(biggest_stepsize, hor_step);
1245 } else {
1246 child_wid->current_x = child_wid->smallest_x;
1249 uint vert_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetVerticalStepSize(sizing);
1250 child_wid->current_y = ComputeMaxSize(child_wid->smallest_y, given_height - child_wid->padding_top - child_wid->padding_bottom, vert_step);
1253 /* Second loop: Allocate the additional horizontal space over the resizing children, starting with the biggest resize steps. */
1254 while (biggest_stepsize > 0) {
1255 uint next_biggest_stepsize = 0;
1256 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1257 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1258 if (hor_step > biggest_stepsize) continue; // Already done
1259 if (hor_step == biggest_stepsize) {
1260 uint increment = additional_length / num_changing_childs;
1261 num_changing_childs--;
1262 if (hor_step > 1) increment -= increment % hor_step;
1263 child_wid->current_x = child_wid->smallest_x + increment;
1264 additional_length -= increment;
1265 continue;
1267 next_biggest_stepsize = std::max(next_biggest_stepsize, hor_step);
1269 biggest_stepsize = next_biggest_stepsize;
1271 assert(num_changing_childs == 0);
1273 /* Third loop: Compute position and call the child. */
1274 uint position = rtl ? this->current_x : 0; // Place to put next child relative to origin of the container.
1275 NWidgetBase *child_wid = this->head;
1276 while (child_wid != nullptr) {
1277 uint child_width = child_wid->current_x;
1278 uint child_x = x + (rtl ? position - child_width - child_wid->padding_left : position + child_wid->padding_left);
1279 uint child_y = y + child_wid->padding_top;
1281 child_wid->AssignSizePosition(sizing, child_x, child_y, child_width, child_wid->current_y, rtl);
1282 uint padded_child_width = child_width + child_wid->padding_right + child_wid->padding_left;
1283 position = rtl ? position - padded_child_width : position + padded_child_width;
1285 child_wid = child_wid->next;
1289 /** Horizontal left-to-right container widget. */
1290 NWidgetHorizontalLTR::NWidgetHorizontalLTR(NWidContainerFlags flags) : NWidgetHorizontal(flags)
1292 this->type = NWID_HORIZONTAL_LTR;
1295 void NWidgetHorizontalLTR::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1297 NWidgetHorizontal::AssignSizePosition(sizing, x, y, given_width, given_height, false);
1300 /** Vertical container widget. */
1301 NWidgetVertical::NWidgetVertical(NWidContainerFlags flags) : NWidgetPIPContainer(NWID_VERTICAL, flags)
1305 void NWidgetVertical::SetupSmallestSize(Window *w, bool init_array)
1307 this->smallest_x = 0; // Biggest child.
1308 this->smallest_y = 0; // Sum of minimal size of all children.
1309 this->fill_x = 1; // smallest common child fill step.
1310 this->fill_y = 0; // smallest non-zero child widget fill step.
1311 this->resize_x = 1; // smallest common child resize step.
1312 this->resize_y = 0; // smallest non-zero child widget resize step.
1314 /* 1a. Forward call, collect biggest nested array index, and longest/widest child length. */
1315 uint highest = 0; // Highest child found.
1316 uint max_hor_fill = 0; // Biggest horizontal fill step.
1317 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1318 child_wid->SetupSmallestSize(w, init_array);
1319 highest = std::max(highest, child_wid->smallest_y);
1320 max_hor_fill = std::max(max_hor_fill, child_wid->GetHorizontalStepSize(ST_SMALLEST));
1321 this->smallest_x = std::max(this->smallest_x, child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right);
1323 /* 1b. Make the container wider if needed to accommodate all children nicely. */
1324 uint max_smallest = this->smallest_x + 3 * max_hor_fill; // Upper limit to computing smallest height.
1325 uint cur_width = this->smallest_x;
1326 for (;;) {
1327 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1328 uint step_size = child_wid->GetHorizontalStepSize(ST_SMALLEST);
1329 uint child_width = child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right;
1330 if (step_size > 1 && child_width < cur_width) { // Small step sizes or already fitting children are not interesting.
1331 uint remainder = (cur_width - child_width) % step_size;
1332 if (remainder > 0) { // Child did not fit entirely, widen the container.
1333 cur_width += step_size - remainder;
1334 assert(cur_width < max_smallest); // Safeguard against infinite width expansion.
1335 /* Remaining children will adapt to the new cur_width, thus speeding up the computation. */
1339 if (this->smallest_x == cur_width) break;
1340 this->smallest_x = cur_width; // Smallest width got changed, try again.
1342 /* 2. For containers that must maintain equal width, extend children minimal size. */
1343 if (this->flags & NC_EQUALSIZE) {
1344 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1345 if (child_wid->fill_y == 1) child_wid->smallest_y = highest;
1348 /* 3. Move PIP space to the child, compute smallest, fill, and resize values of the container. */
1349 if (this->head != nullptr) this->head->padding_top += this->pip_pre;
1350 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1351 if (child_wid->next != nullptr) {
1352 child_wid->padding_bottom += this->pip_inter;
1353 } else {
1354 child_wid->padding_bottom += this->pip_post;
1357 this->smallest_y += child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1358 if (child_wid->fill_y > 0) {
1359 if (this->fill_y == 0 || this->fill_y > child_wid->fill_y) this->fill_y = child_wid->fill_y;
1361 this->fill_x = LeastCommonMultiple(this->fill_x, child_wid->fill_x);
1363 if (child_wid->resize_y > 0) {
1364 if (this->resize_y == 0 || this->resize_y > child_wid->resize_y) this->resize_y = child_wid->resize_y;
1366 this->resize_x = LeastCommonMultiple(this->resize_x, child_wid->resize_x);
1368 /* We need to zero the PIP settings so we can re-initialize the tree. */
1369 this->pip_pre = this->pip_inter = this->pip_post = 0;
1372 void NWidgetVertical::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1374 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1376 /* Compute additional height given to us. */
1377 uint additional_length = given_height;
1378 if (sizing == ST_SMALLEST && (this->flags & NC_EQUALSIZE)) {
1379 /* For EQUALSIZE containers this does not sum to smallest_y during initialisation */
1380 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1381 additional_length -= child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1383 } else {
1384 additional_length -= this->smallest_y;
1387 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1389 /* Like the horizontal container, the vertical container also distributes additional height evenly, starting with the children with the biggest resize steps.
1390 * It also stores computed widths and heights into current_x and current_y values of the child.
1393 /* First loop: Find biggest stepsize, find number of children that want a piece of the pie, handle horizontal size for all children, handle vertical size for non-resizing child. */
1394 int num_changing_childs = 0; // Number of children that can change size.
1395 uint biggest_stepsize = 0;
1396 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1397 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1398 if (vert_step > 0) {
1399 num_changing_childs++;
1400 biggest_stepsize = std::max(biggest_stepsize, vert_step);
1401 } else {
1402 child_wid->current_y = child_wid->smallest_y;
1405 uint hor_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetHorizontalStepSize(sizing);
1406 child_wid->current_x = ComputeMaxSize(child_wid->smallest_x, given_width - child_wid->padding_left - child_wid->padding_right, hor_step);
1409 /* Second loop: Allocate the additional vertical space over the resizing children, starting with the biggest resize steps. */
1410 while (biggest_stepsize > 0) {
1411 uint next_biggest_stepsize = 0;
1412 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1413 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1414 if (vert_step > biggest_stepsize) continue; // Already done
1415 if (vert_step == biggest_stepsize) {
1416 uint increment = additional_length / num_changing_childs;
1417 num_changing_childs--;
1418 if (vert_step > 1) increment -= increment % vert_step;
1419 child_wid->current_y = child_wid->smallest_y + increment;
1420 additional_length -= increment;
1421 continue;
1423 next_biggest_stepsize = std::max(next_biggest_stepsize, vert_step);
1425 biggest_stepsize = next_biggest_stepsize;
1427 assert(num_changing_childs == 0);
1429 /* Third loop: Compute position and call the child. */
1430 uint position = 0; // Place to put next child relative to origin of the container.
1431 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1432 uint child_x = x + (rtl ? child_wid->padding_right : child_wid->padding_left);
1433 uint child_height = child_wid->current_y;
1435 child_wid->AssignSizePosition(sizing, child_x, y + position + child_wid->padding_top, child_wid->current_x, child_height, rtl);
1436 position += child_height + child_wid->padding_top + child_wid->padding_bottom;
1441 * Generic spacer widget.
1442 * @param length Horizontal size of the spacer widget.
1443 * @param height Vertical size of the spacer widget.
1445 NWidgetSpacer::NWidgetSpacer(int length, int height) : NWidgetResizeBase(NWID_SPACER, 0, 0)
1447 this->SetMinimalSize(length, height);
1448 this->SetResize(0, 0);
1451 void NWidgetSpacer::SetupSmallestSize(Window *w, bool init_array)
1453 this->smallest_x = this->min_x;
1454 this->smallest_y = this->min_y;
1457 void NWidgetSpacer::FillNestedArray(NWidgetBase **array, uint length)
1461 void NWidgetSpacer::Draw(const Window *w)
1463 /* Spacer widget is never visible. */
1466 void NWidgetSpacer::SetDirty(const Window *w) const
1468 /* Spacer widget never need repainting. */
1471 NWidgetCore *NWidgetSpacer::GetWidgetFromPos(int x, int y)
1473 return nullptr;
1476 NWidgetMatrix::NWidgetMatrix() : NWidgetPIPContainer(NWID_MATRIX, NC_EQUALSIZE), index(-1), clicked(-1), count(-1)
1480 void NWidgetMatrix::SetIndex(int index)
1482 this->index = index;
1485 void NWidgetMatrix::SetColour(Colours colour)
1487 this->colour = colour;
1491 * Sets the clicked widget in the matrix.
1492 * @param clicked The clicked widget.
1494 void NWidgetMatrix::SetClicked(int clicked)
1496 this->clicked = clicked;
1497 if (this->clicked >= 0 && this->sb != nullptr && this->widgets_x != 0) {
1498 int vpos = (this->clicked / this->widgets_x) * this->widget_h; // Vertical position of the top.
1499 /* Need to scroll down -> Scroll to the bottom.
1500 * However, last entry has no 'this->pip_inter' underneath, and we must stay below this->sb->GetCount() */
1501 if (this->sb->GetPosition() < vpos) vpos += this->widget_h - this->pip_inter - 1;
1502 this->sb->ScrollTowards(vpos);
1507 * Set the number of elements in this matrix.
1508 * @note Updates the number of elements/capacity of the real scrollbar.
1509 * @param count The number of elements.
1511 void NWidgetMatrix::SetCount(int count)
1513 this->count = count;
1515 if (this->sb == nullptr || this->widgets_x == 0) return;
1517 /* We need to get the number of pixels the matrix is high/wide.
1518 * So, determine the number of rows/columns based on the number of
1519 * columns/rows (one is constant/unscrollable).
1520 * Then multiply that by the height of a widget, and add the pre
1521 * and post spacing "offsets". */
1522 count = CeilDiv(count, this->sb->IsVertical() ? this->widgets_x : this->widgets_y);
1523 count *= (this->sb->IsVertical() ? this->head->smallest_y : this->head->smallest_x) + this->pip_inter;
1524 if (count > 0) count -= this->pip_inter; // We counted an inter too much in the multiplication above
1525 count += this->pip_pre + this->pip_post;
1526 this->sb->SetCount(count);
1527 this->sb->SetCapacity(this->sb->IsVertical() ? this->current_y : this->current_x);
1528 this->sb->SetStepSize(this->sb->IsVertical() ? this->widget_h : this->widget_w);
1532 * Assign a scrollbar to this matrix.
1533 * @param sb The scrollbar to assign to us.
1535 void NWidgetMatrix::SetScrollbar(Scrollbar *sb)
1537 this->sb = sb;
1540 void NWidgetMatrix::SetupSmallestSize(Window *w, bool init_array)
1542 assert(this->head != nullptr);
1543 assert(this->head->next == nullptr);
1545 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
1546 assert(w->nested_array_size > (uint)this->index);
1547 w->nested_array[this->index] = this;
1550 /* Reset the widget number. */
1551 NWidgetCore *nw = dynamic_cast<NWidgetCore *>(this->head);
1552 assert(nw != nullptr);
1553 SB(nw->index, 16, 16, 0);
1554 this->head->SetupSmallestSize(w, init_array);
1556 Dimension padding = { (uint)this->pip_pre + this->pip_post, (uint)this->pip_pre + this->pip_post};
1557 Dimension size = {this->head->smallest_x + padding.width, this->head->smallest_y + padding.height};
1558 Dimension fill = {0, 0};
1559 Dimension resize = {this->pip_inter + this->head->smallest_x, this->pip_inter + this->head->smallest_y};
1561 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, padding, &fill, &resize);
1563 this->smallest_x = size.width;
1564 this->smallest_y = size.height;
1565 this->fill_x = fill.width;
1566 this->fill_y = fill.height;
1567 this->resize_x = resize.width;
1568 this->resize_y = resize.height;
1571 void NWidgetMatrix::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1573 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1575 this->pos_x = x;
1576 this->pos_y = y;
1577 this->current_x = given_width;
1578 this->current_y = given_height;
1580 /* Determine the size of the widgets, and the number of visible widgets on each of the axis. */
1581 this->widget_w = this->head->smallest_x + this->pip_inter;
1582 this->widget_h = this->head->smallest_y + this->pip_inter;
1584 /* Account for the pip_inter is between widgets, so we need to account for that when
1585 * the division assumes pip_inter is used for all widgets. */
1586 this->widgets_x = CeilDiv(this->current_x - this->pip_pre - this->pip_post + this->pip_inter, this->widget_w);
1587 this->widgets_y = CeilDiv(this->current_y - this->pip_pre - this->pip_post + this->pip_inter, this->widget_h);
1589 /* When resizing, update the scrollbar's count. E.g. with a vertical
1590 * scrollbar becoming wider or narrower means the amount of rows in
1591 * the scrollbar becomes respectively smaller or higher. */
1592 this->SetCount(this->count);
1595 void NWidgetMatrix::FillNestedArray(NWidgetBase **array, uint length)
1597 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1598 NWidgetContainer::FillNestedArray(array, length);
1601 NWidgetCore *NWidgetMatrix::GetWidgetFromPos(int x, int y)
1603 /* Falls outside of the matrix widget. */
1604 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1606 int start_x, start_y, base_offs_x, base_offs_y;
1607 this->GetScrollOffsets(start_x, start_y, base_offs_x, base_offs_y);
1609 bool rtl = _current_text_dir == TD_RTL;
1611 int widget_col = (rtl ?
1612 -x + (int)this->pip_post + (int)this->pos_x + base_offs_x + (int)this->widget_w - 1 - (int)this->pip_inter :
1613 x - (int)this->pip_pre - (int)this->pos_x - base_offs_x
1614 ) / this->widget_w;
1616 int widget_row = (y - base_offs_y - (int)this->pip_pre - (int)this->pos_y) / this->widget_h;
1618 int sub_wid = (widget_row + start_y) * this->widgets_x + start_x + widget_col;
1619 if (sub_wid >= this->count) return nullptr;
1621 NWidgetCore *child = dynamic_cast<NWidgetCore *>(this->head);
1622 assert(child != nullptr);
1623 child->AssignSizePosition(ST_RESIZE,
1624 this->pos_x + (rtl ? this->pip_post - widget_col * this->widget_w : this->pip_pre + widget_col * this->widget_w) + base_offs_x,
1625 this->pos_y + this->pip_pre + widget_row * this->widget_h + base_offs_y,
1626 child->smallest_x, child->smallest_y, rtl);
1628 SB(child->index, 16, 16, sub_wid);
1630 return child->GetWidgetFromPos(x, y);
1633 /* virtual */ void NWidgetMatrix::Draw(const Window *w)
1635 /* Fill the background. */
1636 GfxFillRect(this->pos_x, this->pos_y, this->pos_x + this->current_x - 1, this->pos_y + this->current_y - 1, _colour_gradient[this->colour & 0xF][5]);
1638 /* Set up a clipping area for the previews. */
1639 bool rtl = _current_text_dir == TD_RTL;
1640 DrawPixelInfo tmp_dpi;
1641 if (!FillDrawPixelInfo(&tmp_dpi, this->pos_x + (rtl ? this->pip_post : this->pip_pre), this->pos_y + this->pip_pre, this->current_x - this->pip_pre - this->pip_post, this->current_y - this->pip_pre - this->pip_post)) return;
1642 DrawPixelInfo *old_dpi = _cur_dpi;
1643 _cur_dpi = &tmp_dpi;
1645 /* Get the appropriate offsets so we can draw the right widgets. */
1646 NWidgetCore *child = dynamic_cast<NWidgetCore *>(this->head);
1647 assert(child != nullptr);
1648 int start_x, start_y, base_offs_x, base_offs_y;
1649 this->GetScrollOffsets(start_x, start_y, base_offs_x, base_offs_y);
1651 int offs_y = base_offs_y;
1652 for (int y = start_y; y < start_y + this->widgets_y + 1; y++, offs_y += this->widget_h) {
1653 /* Are we within bounds? */
1654 if (offs_y + child->smallest_y <= 0) continue;
1655 if (offs_y >= (int)this->current_y) break;
1657 /* We've passed our amount of widgets. */
1658 if (y * this->widgets_x >= this->count) break;
1660 int offs_x = base_offs_x;
1661 for (int x = start_x; x < start_x + this->widgets_x + 1; x++, offs_x += rtl ? -this->widget_w : this->widget_w) {
1662 /* Are we within bounds? */
1663 if (offs_x + child->smallest_x <= 0) continue;
1664 if (offs_x >= (int)this->current_x) continue;
1666 /* Do we have this many widgets? */
1667 int sub_wid = y * this->widgets_x + x;
1668 if (sub_wid >= this->count) break;
1670 child->AssignSizePosition(ST_RESIZE, offs_x, offs_y, child->smallest_x, child->smallest_y, rtl);
1671 child->SetLowered(this->clicked == sub_wid);
1672 SB(child->index, 16, 16, sub_wid);
1673 child->Draw(w);
1677 /* Restore the clipping area. */
1678 _cur_dpi = old_dpi;
1682 * Get the different offsets that are influenced by scrolling.
1683 * @param[out] start_x The start position in columns (index of the left-most column, swapped in RTL).
1684 * @param[out] start_y The start position in rows.
1685 * @param[out] base_offs_x The base horizontal offset in pixels (X position of the column \a start_x).
1686 * @param[out] base_offs_y The base vertical offset in pixels (Y position of the column \a start_y).
1688 void NWidgetMatrix::GetScrollOffsets(int &start_x, int &start_y, int &base_offs_x, int &base_offs_y)
1690 base_offs_x = _current_text_dir == TD_RTL ? this->widget_w * (this->widgets_x - 1) : 0;
1691 base_offs_y = 0;
1692 start_x = 0;
1693 start_y = 0;
1694 if (this->sb != nullptr) {
1695 if (this->sb->IsVertical()) {
1696 start_y = this->sb->GetPosition() / this->widget_h;
1697 base_offs_y += -this->sb->GetPosition() + start_y * this->widget_h;
1698 } else {
1699 start_x = this->sb->GetPosition() / this->widget_w;
1700 int sub_x = this->sb->GetPosition() - start_x * this->widget_w;
1701 if (_current_text_dir == TD_RTL) {
1702 base_offs_x += sub_x;
1703 } else {
1704 base_offs_x -= sub_x;
1711 * Constructor parent nested widgets.
1712 * @param tp Type of parent widget.
1713 * @param colour Colour of the parent widget.
1714 * @param index Index in the widget array used by the window system.
1715 * @param child Child container widget (if supplied). If not supplied, a
1716 * vertical container will be inserted while adding the first
1717 * child widget.
1719 NWidgetBackground::NWidgetBackground(WidgetType tp, Colours colour, int index, NWidgetPIPContainer *child) : NWidgetCore(tp, colour, 1, 1, 0x0, STR_NULL)
1721 assert(tp == WWT_PANEL || tp == WWT_INSET || tp == WWT_FRAME);
1722 if (index >= 0) this->SetIndex(index);
1723 this->child = child;
1726 NWidgetBackground::~NWidgetBackground()
1728 if (this->child != nullptr) delete this->child;
1732 * Add a child to the parent.
1733 * @param nwid Nested widget to add to the background widget.
1735 * Unless a child container has been given in the constructor, a parent behaves as a vertical container.
1736 * You can add several children to it, and they are put underneath each other.
1738 void NWidgetBackground::Add(NWidgetBase *nwid)
1740 if (this->child == nullptr) {
1741 this->child = new NWidgetVertical();
1743 this->child->Add(nwid);
1747 * Set additional pre/inter/post space for the background widget.
1749 * @param pip_pre Additional space in front of the first child widget (above
1750 * for the vertical container, at the left for the horizontal container).
1751 * @param pip_inter Additional space between two child widgets.
1752 * @param pip_post Additional space after the last child widget (below for the
1753 * vertical container, at the right for the horizontal container).
1754 * @note Using this function implies that the widget has (or will have) child widgets.
1756 void NWidgetBackground::SetPIP(uint8 pip_pre, uint8 pip_inter, uint8 pip_post)
1758 if (this->child == nullptr) {
1759 this->child = new NWidgetVertical();
1761 this->child->SetPIP(pip_pre, pip_inter, pip_post);
1764 void NWidgetBackground::SetupSmallestSize(Window *w, bool init_array)
1766 if (init_array && this->index >= 0) {
1767 assert(w->nested_array_size > (uint)this->index);
1768 w->nested_array[this->index] = this;
1770 if (this->child != nullptr) {
1771 this->child->SetupSmallestSize(w, init_array);
1773 this->smallest_x = this->child->smallest_x;
1774 this->smallest_y = this->child->smallest_y;
1775 this->fill_x = this->child->fill_x;
1776 this->fill_y = this->child->fill_y;
1777 this->resize_x = this->child->resize_x;
1778 this->resize_y = this->child->resize_y;
1780 /* Account for the size of the frame's text if that exists */
1781 if (w != nullptr && this->type == WWT_FRAME) {
1782 this->child->padding_left = WD_FRAMETEXT_LEFT;
1783 this->child->padding_right = WD_FRAMETEXT_RIGHT;
1784 this->child->padding_top = std::max((int)WD_FRAMETEXT_TOP, this->widget_data != STR_NULL ? FONT_HEIGHT_NORMAL + WD_FRAMETEXT_TOP / 2 : 0);
1785 this->child->padding_bottom = WD_FRAMETEXT_BOTTOM;
1787 this->smallest_x += this->child->padding_left + this->child->padding_right;
1788 this->smallest_y += this->child->padding_top + this->child->padding_bottom;
1790 if (this->index >= 0) w->SetStringParameters(this->index);
1791 this->smallest_x = std::max(this->smallest_x, GetStringBoundingBox(this->widget_data).width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT);
1793 } else {
1794 Dimension d = {this->min_x, this->min_y};
1795 Dimension fill = {this->fill_x, this->fill_y};
1796 Dimension resize = {this->resize_x, this->resize_y};
1797 if (w != nullptr) { // A non-nullptr window pointer acts as switch to turn dynamic widget size on.
1798 if (this->type == WWT_FRAME || this->type == WWT_INSET) {
1799 if (this->index >= 0) w->SetStringParameters(this->index);
1800 Dimension background = GetStringBoundingBox(this->widget_data);
1801 background.width += (this->type == WWT_FRAME) ? (WD_FRAMETEXT_LEFT + WD_FRAMERECT_RIGHT) : (WD_INSET_LEFT + WD_INSET_RIGHT);
1802 d = maxdim(d, background);
1804 if (this->index >= 0) {
1805 static const Dimension padding = {0, 0};
1806 w->UpdateWidgetSize(this->index, &d, padding, &fill, &resize);
1809 this->smallest_x = d.width;
1810 this->smallest_y = d.height;
1811 this->fill_x = fill.width;
1812 this->fill_y = fill.height;
1813 this->resize_x = resize.width;
1814 this->resize_y = resize.height;
1818 void NWidgetBackground::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1820 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1822 if (this->child != nullptr) {
1823 uint x_offset = (rtl ? this->child->padding_right : this->child->padding_left);
1824 uint width = given_width - this->child->padding_right - this->child->padding_left;
1825 uint height = given_height - this->child->padding_top - this->child->padding_bottom;
1826 this->child->AssignSizePosition(sizing, x + x_offset, y + this->child->padding_top, width, height, rtl);
1830 void NWidgetBackground::FillNestedArray(NWidgetBase **array, uint length)
1832 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1833 if (this->child != nullptr) this->child->FillNestedArray(array, length);
1836 void NWidgetBackground::Draw(const Window *w)
1838 if (this->current_x == 0 || this->current_y == 0) return;
1840 Rect r;
1841 r.left = this->pos_x;
1842 r.right = this->pos_x + this->current_x - 1;
1843 r.top = this->pos_y;
1844 r.bottom = this->pos_y + this->current_y - 1;
1846 const DrawPixelInfo *dpi = _cur_dpi;
1847 if (dpi->left > r.right || dpi->left + dpi->width <= r.left || dpi->top > r.bottom || dpi->top + dpi->height <= r.top) return;
1849 switch (this->type) {
1850 case WWT_PANEL:
1851 assert(this->widget_data == 0);
1852 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, this->IsLowered() ? FR_LOWERED : FR_NONE);
1853 break;
1855 case WWT_FRAME:
1856 if (this->index >= 0) w->SetStringParameters(this->index);
1857 DrawFrame(r, this->colour, this->widget_data);
1858 break;
1860 case WWT_INSET:
1861 if (this->index >= 0) w->SetStringParameters(this->index);
1862 DrawInset(r, this->colour, this->widget_data);
1863 break;
1865 default:
1866 NOT_REACHED();
1869 if (this->index >= 0) w->DrawWidget(r, this->index);
1870 if (this->child != nullptr) this->child->Draw(w);
1872 if (this->IsDisabled()) {
1873 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
1877 NWidgetCore *NWidgetBackground::GetWidgetFromPos(int x, int y)
1879 NWidgetCore *nwid = nullptr;
1880 if (IsInsideBS(x, this->pos_x, this->current_x) && IsInsideBS(y, this->pos_y, this->current_y)) {
1881 if (this->child != nullptr) nwid = this->child->GetWidgetFromPos(x, y);
1882 if (nwid == nullptr) nwid = this;
1884 return nwid;
1887 NWidgetBase *NWidgetBackground::GetWidgetOfType(WidgetType tp)
1889 NWidgetBase *nwid = nullptr;
1890 if (this->child != nullptr) nwid = this->child->GetWidgetOfType(tp);
1891 if (nwid == nullptr && this->type == tp) nwid = this;
1892 return nwid;
1895 NWidgetViewport::NWidgetViewport(int index) : NWidgetCore(NWID_VIEWPORT, INVALID_COLOUR, 1, 1, 0x0, STR_NULL)
1897 this->SetIndex(index);
1900 void NWidgetViewport::SetupSmallestSize(Window *w, bool init_array)
1902 if (init_array && this->index >= 0) {
1903 assert(w->nested_array_size > (uint)this->index);
1904 w->nested_array[this->index] = this;
1906 this->smallest_x = this->min_x;
1907 this->smallest_y = this->min_y;
1910 void NWidgetViewport::Draw(const Window *w)
1912 if (this->disp_flags & ND_NO_TRANSPARENCY) {
1913 TransparencyOptionBits to_backup = _transparency_opt;
1914 _transparency_opt &= (1 << TO_SIGNS) | (1 << TO_LOADING); // Disable all transparency, except textual stuff
1915 w->DrawViewport();
1916 _transparency_opt = to_backup;
1917 } else {
1918 w->DrawViewport();
1921 /* Optionally shade the viewport. */
1922 if (this->disp_flags & (ND_SHADE_GREY | ND_SHADE_DIMMED)) {
1923 GfxFillRect(this->pos_x, this->pos_y, this->pos_x + this->current_x - 1, this->pos_y + this->current_y - 1,
1924 (this->disp_flags & ND_SHADE_DIMMED) ? PALETTE_TO_TRANSPARENT : PALETTE_NEWSPAPER, FILLRECT_RECOLOUR);
1929 * Initialize the viewport of the window.
1930 * @param w Window owning the viewport.
1931 * @param follow_flags Type of viewport, see #InitializeWindowViewport().
1932 * @param zoom Zoom level.
1934 void NWidgetViewport::InitializeViewport(Window *w, uint32 follow_flags, ZoomLevel zoom)
1936 InitializeWindowViewport(w, this->pos_x, this->pos_y, this->current_x, this->current_y, follow_flags, zoom);
1940 * Update the position and size of the viewport (after eg a resize).
1941 * @param w Window owning the viewport.
1943 void NWidgetViewport::UpdateViewportCoordinates(Window *w)
1945 Viewport *vp = w->viewport;
1946 if (vp != nullptr) {
1947 vp->left = w->left + this->pos_x;
1948 vp->top = w->top + this->pos_y;
1949 vp->width = this->current_x;
1950 vp->height = this->current_y;
1952 vp->virtual_width = ScaleByZoom(vp->width, vp->zoom);
1953 vp->virtual_height = ScaleByZoom(vp->height, vp->zoom);
1958 * Compute the row of a scrolled widget that a user clicked in.
1959 * @param clickpos Vertical position of the mouse click (without taking scrolling into account).
1960 * @param w The window the click was in.
1961 * @param widget Widget number of the widget clicked in.
1962 * @param padding Amount of empty space between the widget edge and the top of the first row. Default value is \c 0.
1963 * @param line_height Height of a single row. A negative value means using the vertical resize step of the widget.
1964 * @return Row number clicked at. If clicked at a wrong position, #INT_MAX is returned.
1966 int Scrollbar::GetScrolledRowFromWidget(int clickpos, const Window * const w, int widget, int padding, int line_height) const
1968 uint pos = w->GetRowFromWidget(clickpos, widget, padding, line_height);
1969 if (pos != INT_MAX) pos += this->GetPosition();
1970 return (pos >= this->GetCount()) ? INT_MAX : pos;
1974 * Set capacity of visible elements from the size and resize properties of a widget.
1975 * @param w Window.
1976 * @param widget Widget with size and resize properties.
1977 * @param padding Padding to subtract from the size.
1978 * @note Updates the position if needed.
1980 void Scrollbar::SetCapacityFromWidget(Window *w, int widget, int padding)
1982 NWidgetBase *nwid = w->GetWidget<NWidgetBase>(widget);
1983 if (this->IsVertical()) {
1984 this->SetCapacity(((int)nwid->current_y - padding) / (int)nwid->resize_y);
1985 } else {
1986 this->SetCapacity(((int)nwid->current_x - padding) / (int)nwid->resize_x);
1991 * Scrollbar widget.
1992 * @param tp Scrollbar type. (horizontal/vertical)
1993 * @param colour Colour of the scrollbar.
1994 * @param index Index in the widget array used by the window system.
1996 NWidgetScrollbar::NWidgetScrollbar(WidgetType tp, Colours colour, int index) : NWidgetCore(tp, colour, 1, 1, 0x0, STR_NULL), Scrollbar(tp != NWID_HSCROLLBAR)
1998 assert(tp == NWID_HSCROLLBAR || tp == NWID_VSCROLLBAR);
1999 this->SetIndex(index);
2002 void NWidgetScrollbar::SetupSmallestSize(Window *w, bool init_array)
2004 if (init_array && this->index >= 0) {
2005 assert(w->nested_array_size > (uint)this->index);
2006 w->nested_array[this->index] = this;
2008 this->min_x = 0;
2009 this->min_y = 0;
2011 switch (this->type) {
2012 case NWID_HSCROLLBAR:
2013 this->SetMinimalSize(NWidgetScrollbar::GetHorizontalDimension().width * 3, NWidgetScrollbar::GetHorizontalDimension().height);
2014 this->SetResize(1, 0);
2015 this->SetFill(1, 0);
2016 this->SetDataTip(0x0, STR_TOOLTIP_HSCROLL_BAR_SCROLLS_LIST);
2017 break;
2019 case NWID_VSCROLLBAR:
2020 this->SetMinimalSize(NWidgetScrollbar::GetVerticalDimension().width, NWidgetScrollbar::GetVerticalDimension().height * 3);
2021 this->SetResize(0, 1);
2022 this->SetFill(0, 1);
2023 this->SetDataTip(0x0, STR_TOOLTIP_VSCROLL_BAR_SCROLLS_LIST);
2024 break;
2026 default: NOT_REACHED();
2029 this->smallest_x = this->min_x;
2030 this->smallest_y = this->min_y;
2033 void NWidgetScrollbar::Draw(const Window *w)
2035 if (this->current_x == 0 || this->current_y == 0) return;
2037 Rect r;
2038 r.left = this->pos_x;
2039 r.right = this->pos_x + this->current_x - 1;
2040 r.top = this->pos_y;
2041 r.bottom = this->pos_y + this->current_y - 1;
2043 const DrawPixelInfo *dpi = _cur_dpi;
2044 if (dpi->left > r.right || dpi->left + dpi->width <= r.left || dpi->top > r.bottom || dpi->top + dpi->height <= r.top) return;
2046 bool up_lowered = HasBit(this->disp_flags, NDB_SCROLLBAR_UP);
2047 bool down_lowered = HasBit(this->disp_flags, NDB_SCROLLBAR_DOWN);
2048 bool middle_lowered = !(this->disp_flags & ND_SCROLLBAR_BTN) && w->mouse_capture_widget == this->index;
2050 if (this->type == NWID_HSCROLLBAR) {
2051 DrawHorizontalScrollbar(r, this->colour, up_lowered, middle_lowered, down_lowered, this);
2052 } else {
2053 DrawVerticalScrollbar(r, this->colour, up_lowered, middle_lowered, down_lowered, this);
2056 if (this->IsDisabled()) {
2057 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
2061 /* static */ void NWidgetScrollbar::InvalidateDimensionCache()
2063 vertical_dimension.width = vertical_dimension.height = 0;
2064 horizontal_dimension.width = horizontal_dimension.height = 0;
2067 /* static */ Dimension NWidgetScrollbar::GetVerticalDimension()
2069 static const Dimension extra = {WD_SCROLLBAR_LEFT + WD_SCROLLBAR_RIGHT, WD_SCROLLBAR_TOP + WD_SCROLLBAR_BOTTOM};
2070 if (vertical_dimension.width == 0) {
2071 vertical_dimension = maxdim(GetSpriteSize(SPR_ARROW_UP), GetSpriteSize(SPR_ARROW_DOWN));
2072 vertical_dimension.width += extra.width;
2073 vertical_dimension.height += extra.height;
2075 return vertical_dimension;
2078 /* static */ Dimension NWidgetScrollbar::GetHorizontalDimension()
2080 static const Dimension extra = {WD_SCROLLBAR_LEFT + WD_SCROLLBAR_RIGHT, WD_SCROLLBAR_TOP + WD_SCROLLBAR_BOTTOM};
2081 if (horizontal_dimension.width == 0) {
2082 horizontal_dimension = maxdim(GetSpriteSize(SPR_ARROW_LEFT), GetSpriteSize(SPR_ARROW_RIGHT));
2083 horizontal_dimension.width += extra.width;
2084 horizontal_dimension.height += extra.height;
2086 return horizontal_dimension;
2089 Dimension NWidgetScrollbar::vertical_dimension = {0, 0};
2090 Dimension NWidgetScrollbar::horizontal_dimension = {0, 0};
2092 /** Reset the cached dimensions. */
2093 /* static */ void NWidgetLeaf::InvalidateDimensionCache()
2095 shadebox_dimension.width = shadebox_dimension.height = 0;
2096 debugbox_dimension.width = debugbox_dimension.height = 0;
2097 defsizebox_dimension.width = defsizebox_dimension.height = 0;
2098 stickybox_dimension.width = stickybox_dimension.height = 0;
2099 resizebox_dimension.width = resizebox_dimension.height = 0;
2100 closebox_dimension.width = closebox_dimension.height = 0;
2101 dropdown_dimension.width = dropdown_dimension.height = 0;
2104 Dimension NWidgetLeaf::shadebox_dimension = {0, 0};
2105 Dimension NWidgetLeaf::debugbox_dimension = {0, 0};
2106 Dimension NWidgetLeaf::defsizebox_dimension = {0, 0};
2107 Dimension NWidgetLeaf::stickybox_dimension = {0, 0};
2108 Dimension NWidgetLeaf::resizebox_dimension = {0, 0};
2109 Dimension NWidgetLeaf::closebox_dimension = {0, 0};
2110 Dimension NWidgetLeaf::dropdown_dimension = {0, 0};
2113 * Nested leaf widget.
2114 * @param tp Type of leaf widget.
2115 * @param colour Colour of the leaf widget.
2116 * @param index Index in the widget array used by the window system.
2117 * @param data Data of the widget.
2118 * @param tip Tooltip of the widget.
2120 NWidgetLeaf::NWidgetLeaf(WidgetType tp, Colours colour, int index, uint32 data, StringID tip) : NWidgetCore(tp, colour, 1, 1, data, tip)
2122 assert(index >= 0 || tp == WWT_LABEL || tp == WWT_TEXT || tp == WWT_CAPTION || tp == WWT_RESIZEBOX || tp == WWT_SHADEBOX || tp == WWT_DEFSIZEBOX || tp == WWT_DEBUGBOX || tp == WWT_STICKYBOX || tp == WWT_CLOSEBOX);
2123 if (index >= 0) this->SetIndex(index);
2124 this->min_x = 0;
2125 this->min_y = 0;
2126 this->SetResize(0, 0);
2128 switch (tp) {
2129 case WWT_EMPTY:
2130 break;
2132 case WWT_PUSHBTN:
2133 case WWT_IMGBTN:
2134 case WWT_PUSHIMGBTN:
2135 case WWT_IMGBTN_2:
2136 case WWT_TEXTBTN:
2137 case WWT_PUSHTXTBTN:
2138 case WWT_TEXTBTN_2:
2139 case WWT_LABEL:
2140 case WWT_TEXT:
2141 case WWT_MATRIX:
2142 case NWID_BUTTON_DROPDOWN:
2143 case NWID_PUSHBUTTON_DROPDOWN:
2144 case WWT_ARROWBTN:
2145 case WWT_PUSHARROWBTN:
2146 this->SetFill(0, 0);
2147 break;
2149 case WWT_EDITBOX:
2150 this->SetFill(0, 0);
2151 break;
2153 case WWT_CAPTION:
2154 this->SetFill(1, 0);
2155 this->SetResize(1, 0);
2156 this->min_y = WD_CAPTION_HEIGHT;
2157 this->SetDataTip(data, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS);
2158 break;
2160 case WWT_STICKYBOX:
2161 this->SetFill(0, 0);
2162 this->SetMinimalSize(WD_STICKYBOX_WIDTH, WD_CAPTION_HEIGHT);
2163 this->SetDataTip(STR_NULL, STR_TOOLTIP_STICKY);
2164 break;
2166 case WWT_SHADEBOX:
2167 this->SetFill(0, 0);
2168 this->SetMinimalSize(WD_SHADEBOX_TOP, WD_CAPTION_HEIGHT);
2169 this->SetDataTip(STR_NULL, STR_TOOLTIP_SHADE);
2170 break;
2172 case WWT_DEBUGBOX:
2173 this->SetFill(0, 0);
2174 this->SetMinimalSize(WD_DEBUGBOX_TOP, WD_CAPTION_HEIGHT);
2175 this->SetDataTip(STR_NULL, STR_TOOLTIP_DEBUG);
2176 break;
2178 case WWT_DEFSIZEBOX:
2179 this->SetFill(0, 0);
2180 this->SetMinimalSize(WD_DEFSIZEBOX_TOP, WD_CAPTION_HEIGHT);
2181 this->SetDataTip(STR_NULL, STR_TOOLTIP_DEFSIZE);
2182 break;
2184 case WWT_RESIZEBOX:
2185 this->SetFill(0, 0);
2186 this->SetMinimalSize(WD_RESIZEBOX_WIDTH, 12);
2187 this->SetDataTip(STR_NULL, STR_TOOLTIP_RESIZE);
2188 break;
2190 case WWT_CLOSEBOX:
2191 this->SetFill(0, 0);
2192 this->SetMinimalSize(WD_CLOSEBOX_WIDTH, WD_CAPTION_HEIGHT);
2193 this->SetDataTip(STR_NULL, STR_TOOLTIP_CLOSE_WINDOW);
2194 break;
2196 case WWT_DROPDOWN:
2197 this->SetFill(0, 0);
2198 this->min_y = WD_DROPDOWN_HEIGHT;
2199 break;
2201 default:
2202 NOT_REACHED();
2206 void NWidgetLeaf::SetupSmallestSize(Window *w, bool init_array)
2208 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
2209 assert(w->nested_array_size > (uint)this->index);
2210 w->nested_array[this->index] = this;
2213 Dimension size = {this->min_x, this->min_y};
2214 Dimension fill = {this->fill_x, this->fill_y};
2215 Dimension resize = {this->resize_x, this->resize_y};
2216 /* Get padding, and update size with the real content size if appropriate. */
2217 const Dimension *padding = nullptr;
2218 switch (this->type) {
2219 case WWT_EMPTY: {
2220 static const Dimension extra = {0, 0};
2221 padding = &extra;
2222 break;
2224 case WWT_MATRIX: {
2225 static const Dimension extra = {WD_MATRIX_LEFT + WD_MATRIX_RIGHT, WD_MATRIX_TOP + WD_MATRIX_BOTTOM};
2226 padding = &extra;
2227 break;
2229 case WWT_SHADEBOX: {
2230 static const Dimension extra = {WD_SHADEBOX_LEFT + WD_SHADEBOX_RIGHT, WD_SHADEBOX_TOP + WD_SHADEBOX_BOTTOM};
2231 padding = &extra;
2232 if (NWidgetLeaf::shadebox_dimension.width == 0) {
2233 NWidgetLeaf::shadebox_dimension = maxdim(GetSpriteSize(SPR_WINDOW_SHADE), GetSpriteSize(SPR_WINDOW_UNSHADE));
2234 NWidgetLeaf::shadebox_dimension.width += extra.width;
2235 NWidgetLeaf::shadebox_dimension.height += extra.height;
2237 size = maxdim(size, NWidgetLeaf::shadebox_dimension);
2238 break;
2240 case WWT_DEBUGBOX:
2241 if (_settings_client.gui.newgrf_developer_tools && w->IsNewGRFInspectable()) {
2242 static const Dimension extra = {WD_DEBUGBOX_LEFT + WD_DEBUGBOX_RIGHT, WD_DEBUGBOX_TOP + WD_DEBUGBOX_BOTTOM};
2243 padding = &extra;
2244 if (NWidgetLeaf::debugbox_dimension.width == 0) {
2245 NWidgetLeaf::debugbox_dimension = GetSpriteSize(SPR_WINDOW_DEBUG);
2246 NWidgetLeaf::debugbox_dimension.width += extra.width;
2247 NWidgetLeaf::debugbox_dimension.height += extra.height;
2249 size = maxdim(size, NWidgetLeaf::debugbox_dimension);
2250 } else {
2251 /* If the setting is disabled we don't want to see it! */
2252 size.width = 0;
2253 fill.width = 0;
2254 resize.width = 0;
2256 break;
2258 case WWT_STICKYBOX: {
2259 static const Dimension extra = {WD_STICKYBOX_LEFT + WD_STICKYBOX_RIGHT, WD_STICKYBOX_TOP + WD_STICKYBOX_BOTTOM};
2260 padding = &extra;
2261 if (NWidgetLeaf::stickybox_dimension.width == 0) {
2262 NWidgetLeaf::stickybox_dimension = maxdim(GetSpriteSize(SPR_PIN_UP), GetSpriteSize(SPR_PIN_DOWN));
2263 NWidgetLeaf::stickybox_dimension.width += extra.width;
2264 NWidgetLeaf::stickybox_dimension.height += extra.height;
2266 size = maxdim(size, NWidgetLeaf::stickybox_dimension);
2267 break;
2270 case WWT_DEFSIZEBOX: {
2271 static const Dimension extra = {WD_DEFSIZEBOX_LEFT + WD_DEFSIZEBOX_RIGHT, WD_DEFSIZEBOX_TOP + WD_DEFSIZEBOX_BOTTOM};
2272 padding = &extra;
2273 if (NWidgetLeaf::defsizebox_dimension.width == 0) {
2274 NWidgetLeaf::defsizebox_dimension = GetSpriteSize(SPR_WINDOW_DEFSIZE);
2275 NWidgetLeaf::defsizebox_dimension.width += extra.width;
2276 NWidgetLeaf::defsizebox_dimension.height += extra.height;
2278 size = maxdim(size, NWidgetLeaf::defsizebox_dimension);
2279 break;
2282 case WWT_RESIZEBOX: {
2283 static const Dimension extra = {WD_RESIZEBOX_LEFT + WD_RESIZEBOX_RIGHT, WD_RESIZEBOX_TOP + WD_RESIZEBOX_BOTTOM};
2284 padding = &extra;
2285 if (NWidgetLeaf::resizebox_dimension.width == 0) {
2286 NWidgetLeaf::resizebox_dimension = maxdim(GetSpriteSize(SPR_WINDOW_RESIZE_LEFT), GetSpriteSize(SPR_WINDOW_RESIZE_RIGHT));
2287 NWidgetLeaf::resizebox_dimension.width += extra.width;
2288 NWidgetLeaf::resizebox_dimension.height += extra.height;
2290 size = maxdim(size, NWidgetLeaf::resizebox_dimension);
2291 break;
2293 case WWT_EDITBOX: {
2294 Dimension sprite_size = GetSpriteSize(_current_text_dir == TD_RTL ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
2295 size.width = std::max(size.width, 30 + sprite_size.width);
2296 size.height = std::max(sprite_size.height, GetStringBoundingBox("_").height + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM);
2298 FALLTHROUGH;
2299 case WWT_PUSHBTN: {
2300 static const Dimension extra = {WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM};
2301 padding = &extra;
2302 break;
2304 case WWT_IMGBTN:
2305 case WWT_IMGBTN_2:
2306 case WWT_PUSHIMGBTN: {
2307 static const Dimension extra = {WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT, WD_IMGBTN_TOP + WD_IMGBTN_BOTTOM};
2308 padding = &extra;
2309 Dimension d2 = GetSpriteSize(this->widget_data);
2310 if (this->type == WWT_IMGBTN_2) d2 = maxdim(d2, GetSpriteSize(this->widget_data + 1));
2311 d2.width += extra.width;
2312 d2.height += extra.height;
2313 size = maxdim(size, d2);
2314 break;
2316 case WWT_ARROWBTN:
2317 case WWT_PUSHARROWBTN: {
2318 static const Dimension extra = {WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT, WD_IMGBTN_TOP + WD_IMGBTN_BOTTOM};
2319 padding = &extra;
2320 Dimension d2 = maxdim(GetSpriteSize(SPR_ARROW_LEFT), GetSpriteSize(SPR_ARROW_RIGHT));
2321 d2.width += extra.width;
2322 d2.height += extra.height;
2323 size = maxdim(size, d2);
2324 break;
2327 case WWT_CLOSEBOX: {
2328 static const Dimension extra = {WD_CLOSEBOX_LEFT + WD_CLOSEBOX_RIGHT, WD_CLOSEBOX_TOP + WD_CLOSEBOX_BOTTOM};
2329 padding = &extra;
2330 if (NWidgetLeaf::closebox_dimension.width == 0) {
2331 NWidgetLeaf::closebox_dimension = GetSpriteSize(SPR_CLOSEBOX);
2332 NWidgetLeaf::closebox_dimension.width += extra.width;
2333 NWidgetLeaf::closebox_dimension.height += extra.height;
2335 size = maxdim(size, NWidgetLeaf::closebox_dimension);
2336 break;
2338 case WWT_TEXTBTN:
2339 case WWT_PUSHTXTBTN:
2340 case WWT_TEXTBTN_2: {
2341 static const Dimension extra = {WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM};
2342 padding = &extra;
2343 if (this->index >= 0) w->SetStringParameters(this->index);
2344 Dimension d2 = GetStringBoundingBox(this->widget_data);
2345 d2.width += extra.width;
2346 d2.height += extra.height;
2347 size = maxdim(size, d2);
2348 break;
2350 case WWT_LABEL:
2351 case WWT_TEXT: {
2352 static const Dimension extra = {0, 0};
2353 padding = &extra;
2354 if (this->index >= 0) w->SetStringParameters(this->index);
2355 size = maxdim(size, GetStringBoundingBox(this->widget_data));
2356 break;
2358 case WWT_CAPTION: {
2359 static const Dimension extra = {WD_CAPTIONTEXT_LEFT + WD_CAPTIONTEXT_RIGHT, WD_CAPTIONTEXT_TOP + WD_CAPTIONTEXT_BOTTOM};
2360 padding = &extra;
2361 if (this->index >= 0) w->SetStringParameters(this->index);
2362 Dimension d2 = GetStringBoundingBox(this->widget_data);
2363 d2.width += extra.width;
2364 d2.height += extra.height;
2365 size = maxdim(size, d2);
2366 break;
2368 case WWT_DROPDOWN:
2369 case NWID_BUTTON_DROPDOWN:
2370 case NWID_PUSHBUTTON_DROPDOWN: {
2371 static Dimension extra = {WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT, WD_DROPDOWNTEXT_TOP + WD_DROPDOWNTEXT_BOTTOM};
2372 padding = &extra;
2373 if (NWidgetLeaf::dropdown_dimension.width == 0) {
2374 NWidgetLeaf::dropdown_dimension = GetSpriteSize(SPR_ARROW_DOWN);
2375 NWidgetLeaf::dropdown_dimension.width += WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT;
2376 NWidgetLeaf::dropdown_dimension.height += WD_DROPDOWNTEXT_TOP + WD_DROPDOWNTEXT_BOTTOM;
2377 extra.width = WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT + NWidgetLeaf::dropdown_dimension.width;
2379 if (this->index >= 0) w->SetStringParameters(this->index);
2380 Dimension d2 = GetStringBoundingBox(this->widget_data);
2381 d2.width += extra.width;
2382 d2.height = std::max(d2.height, NWidgetLeaf::dropdown_dimension.height) + extra.height;
2383 size = maxdim(size, d2);
2384 break;
2386 default:
2387 NOT_REACHED();
2390 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, *padding, &fill, &resize);
2392 this->smallest_x = size.width;
2393 this->smallest_y = size.height;
2394 this->fill_x = fill.width;
2395 this->fill_y = fill.height;
2396 this->resize_x = resize.width;
2397 this->resize_y = resize.height;
2400 void NWidgetLeaf::Draw(const Window *w)
2402 if (this->current_x == 0 || this->current_y == 0) return;
2404 /* Setup a clipping rectangle... */
2405 DrawPixelInfo new_dpi;
2406 if (!FillDrawPixelInfo(&new_dpi, this->pos_x, this->pos_y, this->current_x, this->current_y)) return;
2407 /* ...but keep coordinates relative to the window. */
2408 new_dpi.left += this->pos_x;
2409 new_dpi.top += this->pos_y;
2411 DrawPixelInfo *old_dpi = _cur_dpi;
2412 _cur_dpi = &new_dpi;
2414 Rect r;
2415 r.left = this->pos_x;
2416 r.right = this->pos_x + this->current_x - 1;
2417 r.top = this->pos_y;
2418 r.bottom = this->pos_y + this->current_y - 1;
2420 bool clicked = this->IsLowered();
2421 switch (this->type) {
2422 case WWT_EMPTY:
2423 break;
2425 case WWT_PUSHBTN:
2426 assert(this->widget_data == 0);
2427 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, (clicked) ? FR_LOWERED : FR_NONE);
2428 break;
2430 case WWT_IMGBTN:
2431 case WWT_PUSHIMGBTN:
2432 case WWT_IMGBTN_2:
2433 DrawImageButtons(r, this->type, this->colour, clicked, this->widget_data);
2434 break;
2436 case WWT_TEXTBTN:
2437 case WWT_PUSHTXTBTN:
2438 case WWT_TEXTBTN_2:
2439 if (this->index >= 0) w->SetStringParameters(this->index);
2440 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, (clicked) ? FR_LOWERED : FR_NONE);
2441 DrawLabel(r, this->type, clicked, this->widget_data);
2442 break;
2444 case WWT_ARROWBTN:
2445 case WWT_PUSHARROWBTN: {
2446 SpriteID sprite;
2447 switch (this->widget_data) {
2448 case AWV_DECREASE: sprite = _current_text_dir != TD_RTL ? SPR_ARROW_LEFT : SPR_ARROW_RIGHT; break;
2449 case AWV_INCREASE: sprite = _current_text_dir == TD_RTL ? SPR_ARROW_LEFT : SPR_ARROW_RIGHT; break;
2450 case AWV_LEFT: sprite = SPR_ARROW_LEFT; break;
2451 case AWV_RIGHT: sprite = SPR_ARROW_RIGHT; break;
2452 default: NOT_REACHED();
2454 DrawImageButtons(r, WWT_PUSHIMGBTN, this->colour, clicked, sprite);
2455 break;
2458 case WWT_LABEL:
2459 if (this->index >= 0) w->SetStringParameters(this->index);
2460 DrawLabel(r, this->type, clicked, this->widget_data);
2461 break;
2463 case WWT_TEXT:
2464 if (this->index >= 0) w->SetStringParameters(this->index);
2465 DrawText(r, (TextColour)this->colour, this->widget_data);
2466 break;
2468 case WWT_MATRIX:
2469 DrawMatrix(r, this->colour, clicked, this->widget_data, this->resize_x, this->resize_y);
2470 break;
2472 case WWT_EDITBOX: {
2473 const QueryString *query = w->GetQueryString(this->index);
2474 if (query != nullptr) query->DrawEditBox(w, this->index);
2475 break;
2478 case WWT_CAPTION:
2479 if (this->index >= 0) w->SetStringParameters(this->index);
2480 DrawCaption(r, this->colour, w->owner, this->widget_data);
2481 break;
2483 case WWT_SHADEBOX:
2484 assert(this->widget_data == 0);
2485 DrawShadeBox(r, this->colour, w->IsShaded());
2486 break;
2488 case WWT_DEBUGBOX:
2489 DrawDebugBox(r, this->colour, clicked);
2490 break;
2492 case WWT_STICKYBOX:
2493 assert(this->widget_data == 0);
2494 DrawStickyBox(r, this->colour, !!(w->flags & WF_STICKY));
2495 break;
2497 case WWT_DEFSIZEBOX:
2498 assert(this->widget_data == 0);
2499 DrawDefSizeBox(r, this->colour, clicked);
2500 break;
2502 case WWT_RESIZEBOX:
2503 assert(this->widget_data == 0);
2504 DrawResizeBox(r, this->colour, this->pos_x < (w->width / 2), !!(w->flags & WF_SIZING));
2505 break;
2507 case WWT_CLOSEBOX:
2508 DrawCloseBox(r, this->colour);
2509 break;
2511 case WWT_DROPDOWN:
2512 if (this->index >= 0) w->SetStringParameters(this->index);
2513 DrawDropdown(r, this->colour, clicked, this->widget_data);
2514 break;
2516 case NWID_BUTTON_DROPDOWN:
2517 case NWID_PUSHBUTTON_DROPDOWN:
2518 if (this->index >= 0) w->SetStringParameters(this->index);
2519 DrawButtonDropdown(r, this->colour, clicked, (this->disp_flags & ND_DROPDOWN_ACTIVE) != 0, this->widget_data);
2520 break;
2522 default:
2523 NOT_REACHED();
2525 if (this->index >= 0) w->DrawWidget(r, this->index);
2527 if (this->IsDisabled()) {
2528 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
2531 _cur_dpi = old_dpi;
2535 * For a #NWID_BUTTON_DROPDOWN, test whether \a pt refers to the button or to the drop-down.
2536 * @param pt Point in the widget.
2537 * @return The point refers to the button.
2539 * @note The magic constants are also used at #DrawButtonDropdown.
2541 bool NWidgetLeaf::ButtonHit(const Point &pt)
2543 if (_current_text_dir == TD_LTR) {
2544 int button_width = this->pos_x + this->current_x - NWidgetLeaf::dropdown_dimension.width;
2545 return pt.x < button_width;
2546 } else {
2547 int button_left = this->pos_x + NWidgetLeaf::dropdown_dimension.width;
2548 return pt.x >= button_left;
2552 /* == Conversion code from NWidgetPart array to NWidgetBase* tree == */
2555 * Construct a single nested widget in \a *dest from its parts.
2557 * Construct a NWidgetBase object from a #NWidget function, and apply all
2558 * settings that follow it, until encountering a #EndContainer, another
2559 * #NWidget, or the end of the parts array.
2561 * @param parts Array with parts of the nested widget.
2562 * @param count Length of the \a parts array.
2563 * @param dest Address of pointer to use for returning the composed widget.
2564 * @param fill_dest Fill the composed widget with child widgets.
2565 * @param biggest_index Pointer to biggest nested widget index in the tree encountered so far.
2566 * @return Number of widget part elements used to compose the widget.
2567 * @pre \c biggest_index != nullptr.
2569 static int MakeNWidget(const NWidgetPart *parts, int count, NWidgetBase **dest, bool *fill_dest, int *biggest_index)
2571 int num_used = 0;
2573 *dest = nullptr;
2574 *fill_dest = false;
2576 while (count > num_used) {
2577 switch (parts->type) {
2578 case NWID_SPACER:
2579 if (*dest != nullptr) return num_used;
2580 *dest = new NWidgetSpacer(0, 0);
2581 break;
2583 case NWID_HORIZONTAL:
2584 if (*dest != nullptr) return num_used;
2585 *dest = new NWidgetHorizontal(parts->u.cont_flags);
2586 *fill_dest = true;
2587 break;
2589 case NWID_HORIZONTAL_LTR:
2590 if (*dest != nullptr) return num_used;
2591 *dest = new NWidgetHorizontalLTR(parts->u.cont_flags);
2592 *fill_dest = true;
2593 break;
2595 case WWT_PANEL:
2596 case WWT_INSET:
2597 case WWT_FRAME:
2598 if (*dest != nullptr) return num_used;
2599 *dest = new NWidgetBackground(parts->type, parts->u.widget.colour, parts->u.widget.index);
2600 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2601 *fill_dest = true;
2602 break;
2604 case NWID_VERTICAL:
2605 if (*dest != nullptr) return num_used;
2606 *dest = new NWidgetVertical(parts->u.cont_flags);
2607 *fill_dest = true;
2608 break;
2610 case NWID_MATRIX: {
2611 if (*dest != nullptr) return num_used;
2612 NWidgetMatrix *nwm = new NWidgetMatrix();
2613 *dest = nwm;
2614 *fill_dest = true;
2615 nwm->SetIndex(parts->u.widget.index);
2616 nwm->SetColour(parts->u.widget.colour);
2617 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2618 break;
2621 case WPT_FUNCTION: {
2622 if (*dest != nullptr) return num_used;
2623 /* Ensure proper functioning even when the called code simply writes its largest index. */
2624 int biggest = -1;
2625 *dest = parts->u.func_ptr(&biggest);
2626 *biggest_index = std::max(*biggest_index, biggest);
2627 *fill_dest = false;
2628 break;
2631 case WPT_RESIZE: {
2632 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2633 if (nwrb != nullptr) {
2634 assert(parts->u.xy.x >= 0 && parts->u.xy.y >= 0);
2635 nwrb->SetResize(parts->u.xy.x, parts->u.xy.y);
2637 break;
2640 case WPT_MINSIZE: {
2641 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2642 if (nwrb != nullptr) {
2643 assert(parts->u.xy.x >= 0 && parts->u.xy.y >= 0);
2644 nwrb->SetMinimalSize(ScaleGUITrad(parts->u.xy.x), ScaleGUITrad(parts->u.xy.y));
2646 break;
2649 case WPT_MINTEXTLINES: {
2650 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2651 if (nwrb != nullptr) {
2652 assert(parts->u.text_lines.size >= FS_BEGIN && parts->u.text_lines.size < FS_END);
2653 nwrb->SetMinimalTextLines(parts->u.text_lines.lines, parts->u.text_lines.spacing, parts->u.text_lines.size);
2655 break;
2658 case WPT_FILL: {
2659 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2660 if (nwrb != nullptr) nwrb->SetFill(parts->u.xy.x, parts->u.xy.y);
2661 break;
2664 case WPT_DATATIP: {
2665 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2666 if (nwc != nullptr) {
2667 nwc->widget_data = parts->u.data_tip.data;
2668 nwc->tool_tip = parts->u.data_tip.tooltip;
2670 break;
2673 case WPT_PADDING:
2674 if (*dest != nullptr) (*dest)->SetPadding(ScaleGUITrad(parts->u.padding.top), ScaleGUITrad(parts->u.padding.right), ScaleGUITrad(parts->u.padding.bottom), ScaleGUITrad(parts->u.padding.left));
2675 break;
2677 case WPT_PIPSPACE: {
2678 NWidgetPIPContainer *nwc = dynamic_cast<NWidgetPIPContainer *>(*dest);
2679 if (nwc != nullptr) nwc->SetPIP(parts->u.pip.pre, parts->u.pip.inter, parts->u.pip.post);
2681 NWidgetBackground *nwb = dynamic_cast<NWidgetBackground *>(*dest);
2682 if (nwb != nullptr) nwb->SetPIP(parts->u.pip.pre, parts->u.pip.inter, parts->u.pip.post);
2683 break;
2686 case WPT_SCROLLBAR: {
2687 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2688 if (nwc != nullptr) {
2689 nwc->scrollbar_index = parts->u.widget.index;
2691 break;
2694 case WPT_ENDCONTAINER:
2695 return num_used;
2697 case NWID_VIEWPORT:
2698 if (*dest != nullptr) return num_used;
2699 *dest = new NWidgetViewport(parts->u.widget.index);
2700 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2701 break;
2703 case NWID_HSCROLLBAR:
2704 case NWID_VSCROLLBAR:
2705 if (*dest != nullptr) return num_used;
2706 *dest = new NWidgetScrollbar(parts->type, parts->u.widget.colour, parts->u.widget.index);
2707 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2708 break;
2710 case NWID_SELECTION: {
2711 if (*dest != nullptr) return num_used;
2712 NWidgetStacked *nws = new NWidgetStacked();
2713 *dest = nws;
2714 *fill_dest = true;
2715 nws->SetIndex(parts->u.widget.index);
2716 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2717 break;
2720 default:
2721 if (*dest != nullptr) return num_used;
2722 assert((parts->type & WWT_MASK) < WWT_LAST || (parts->type & WWT_MASK) == NWID_BUTTON_DROPDOWN);
2723 *dest = new NWidgetLeaf(parts->type, parts->u.widget.colour, parts->u.widget.index, 0x0, STR_NULL);
2724 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2725 break;
2727 num_used++;
2728 parts++;
2731 return num_used;
2735 * Build a nested widget tree by recursively filling containers with nested widgets read from their parts.
2736 * @param parts Array with parts of the nested widgets.
2737 * @param count Length of the \a parts array.
2738 * @param parent Pointer or container to use for storing the child widgets (*parent == nullptr or *parent == container or background widget).
2739 * @param biggest_index Pointer to biggest nested widget index in the tree.
2740 * @return Number of widget part elements used to fill the container.
2741 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
2743 static int MakeWidgetTree(const NWidgetPart *parts, int count, NWidgetBase **parent, int *biggest_index)
2745 /* If *parent == nullptr, only the first widget is read and returned. Otherwise, *parent must point to either
2746 * a #NWidgetContainer or a #NWidgetBackground object, and parts are added as much as possible. */
2747 NWidgetContainer *nwid_cont = dynamic_cast<NWidgetContainer *>(*parent);
2748 NWidgetBackground *nwid_parent = dynamic_cast<NWidgetBackground *>(*parent);
2749 assert(*parent == nullptr || (nwid_cont != nullptr && nwid_parent == nullptr) || (nwid_cont == nullptr && nwid_parent != nullptr));
2751 int total_used = 0;
2752 for (;;) {
2753 NWidgetBase *sub_widget = nullptr;
2754 bool fill_sub = false;
2755 int num_used = MakeNWidget(parts, count - total_used, &sub_widget, &fill_sub, biggest_index);
2756 parts += num_used;
2757 total_used += num_used;
2759 /* Break out of loop when end reached */
2760 if (sub_widget == nullptr) break;
2762 /* If sub-widget is a container, recursively fill that container. */
2763 WidgetType tp = sub_widget->type;
2764 if (fill_sub && (tp == NWID_HORIZONTAL || tp == NWID_HORIZONTAL_LTR || tp == NWID_VERTICAL || tp == NWID_MATRIX
2765 || tp == WWT_PANEL || tp == WWT_FRAME || tp == WWT_INSET || tp == NWID_SELECTION)) {
2766 NWidgetBase *sub_ptr = sub_widget;
2767 int num_used = MakeWidgetTree(parts, count - total_used, &sub_ptr, biggest_index);
2768 parts += num_used;
2769 total_used += num_used;
2772 /* Add sub_widget to parent container if available, otherwise return the widget to the caller. */
2773 if (nwid_cont != nullptr) nwid_cont->Add(sub_widget);
2774 if (nwid_parent != nullptr) nwid_parent->Add(sub_widget);
2775 if (nwid_cont == nullptr && nwid_parent == nullptr) {
2776 *parent = sub_widget;
2777 return total_used;
2781 if (count == total_used) return total_used; // Reached the end of the array of parts?
2783 assert(total_used < count);
2784 assert(parts->type == WPT_ENDCONTAINER);
2785 return total_used + 1; // *parts is also 'used'
2789 * Construct a nested widget tree from an array of parts.
2790 * @param parts Array with parts of the widgets.
2791 * @param count Length of the \a parts array.
2792 * @param biggest_index Pointer to biggest nested widget index collected in the tree.
2793 * @param container Container to add the nested widgets to. In case it is nullptr a vertical container is used.
2794 * @return Root of the nested widget tree, a vertical container containing the entire GUI.
2795 * @ingroup NestedWidgetParts
2796 * @pre \c biggest_index != nullptr
2797 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
2799 NWidgetContainer *MakeNWidgets(const NWidgetPart *parts, int count, int *biggest_index, NWidgetContainer *container)
2801 *biggest_index = -1;
2802 if (container == nullptr) container = new NWidgetVertical();
2803 NWidgetBase *cont_ptr = container;
2804 MakeWidgetTree(parts, count, &cont_ptr, biggest_index);
2805 return container;
2809 * Make a nested widget tree for a window from a parts array. Besides loading, it inserts a shading selection widget
2810 * between the title bar and the window body if the first widget in the parts array looks like a title bar (it is a horizontal
2811 * container with a caption widget) and has a shade box widget.
2812 * @param parts Array with parts of the widgets.
2813 * @param count Length of the \a parts array.
2814 * @param biggest_index Pointer to biggest nested widget index collected in the tree.
2815 * @param[out] shade_select Pointer to the inserted shade selection widget (\c nullptr if not unserted).
2816 * @return Root of the nested widget tree, a vertical container containing the entire GUI.
2817 * @ingroup NestedWidgetParts
2818 * @pre \c biggest_index != nullptr
2819 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
2821 NWidgetContainer *MakeWindowNWidgetTree(const NWidgetPart *parts, int count, int *biggest_index, NWidgetStacked **shade_select)
2823 *biggest_index = -1;
2825 /* Read the first widget recursively from the array. */
2826 NWidgetBase *nwid = nullptr;
2827 int num_used = MakeWidgetTree(parts, count, &nwid, biggest_index);
2828 assert(nwid != nullptr);
2829 parts += num_used;
2830 count -= num_used;
2832 NWidgetContainer *root = new NWidgetVertical;
2833 root->Add(nwid);
2834 if (count == 0) { // There is no body at all.
2835 *shade_select = nullptr;
2836 return root;
2839 /* If the first widget looks like a titlebar, treat it as such.
2840 * If it has a shading box, silently add a shade selection widget in the tree. */
2841 NWidgetHorizontal *hor_cont = dynamic_cast<NWidgetHorizontal *>(nwid);
2842 NWidgetContainer *body;
2843 if (hor_cont != nullptr && hor_cont->GetWidgetOfType(WWT_CAPTION) != nullptr && hor_cont->GetWidgetOfType(WWT_SHADEBOX) != nullptr) {
2844 *shade_select = new NWidgetStacked;
2845 root->Add(*shade_select);
2846 body = new NWidgetVertical;
2847 (*shade_select)->Add(body);
2848 } else {
2849 *shade_select = nullptr;
2850 body = root;
2853 /* Load the remaining parts into 'body'. */
2854 int biggest2 = -1;
2855 MakeNWidgets(parts, count, &biggest2, body);
2857 *biggest_index = std::max(*biggest_index, biggest2);
2858 return root;
2862 * Make a number of rows with button-like graphics, for enabling/disabling each company.
2863 * @param biggest_index Storage for collecting the biggest index used in the returned tree.
2864 * @param widget_first The first widget index to use.
2865 * @param widget_last The last widget index to use.
2866 * @param max_length Maximal number of company buttons in one row.
2867 * @param button_tooltip The tooltip-string of every button.
2868 * @return Panel with rows of company buttons.
2869 * @post \c *biggest_index contains the largest used index in the tree.
2871 NWidgetBase *MakeCompanyButtonRows(int *biggest_index, int widget_first, int widget_last, int max_length, StringID button_tooltip)
2873 assert(max_length >= 1);
2874 NWidgetVertical *vert = nullptr; // Storage for all rows.
2875 NWidgetHorizontal *hor = nullptr; // Storage for buttons in one row.
2876 int hor_length = 0;
2878 Dimension sprite_size = GetSpriteSize(SPR_COMPANY_ICON);
2879 sprite_size.width += WD_MATRIX_LEFT + WD_MATRIX_RIGHT;
2880 sprite_size.height += WD_MATRIX_TOP + WD_MATRIX_BOTTOM + 1; // 1 for the 'offset' of being pressed
2882 for (int widnum = widget_first; widnum <= widget_last; widnum++) {
2883 /* Ensure there is room in 'hor' for another button. */
2884 if (hor_length == max_length) {
2885 if (vert == nullptr) vert = new NWidgetVertical();
2886 vert->Add(hor);
2887 hor = nullptr;
2888 hor_length = 0;
2890 if (hor == nullptr) {
2891 hor = new NWidgetHorizontal();
2892 hor_length = 0;
2895 NWidgetBackground *panel = new NWidgetBackground(WWT_PANEL, COLOUR_GREY, widnum);
2896 panel->SetMinimalSize(sprite_size.width, sprite_size.height);
2897 panel->SetFill(1, 1);
2898 panel->SetResize(1, 0);
2899 panel->SetDataTip(0x0, button_tooltip);
2900 hor->Add(panel);
2901 hor_length++;
2903 *biggest_index = widget_last;
2904 if (vert == nullptr) return hor; // All buttons fit in a single row.
2906 if (hor_length > 0 && hor_length < max_length) {
2907 /* Last row is partial, add a spacer at the end to force all buttons to the left. */
2908 NWidgetSpacer *spc = new NWidgetSpacer(sprite_size.width, sprite_size.height);
2909 spc->SetFill(1, 1);
2910 spc->SetResize(1, 0);
2911 hor->Add(spc);
2913 if (hor != nullptr) vert->Add(hor);
2914 return vert;