Fix #10117: Decrement object burst limit after build check
[openttd-github.git] / src / widget.cpp
blob36c58748bf56bb7d1e2182dfceb47d83c2ada86d
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 * Calculate x and y coordinates for an aligned object within a window.
29 * @param r Rectangle of the widget to be drawn in.
30 * @param d Dimension of the object to be drawn.
31 * @param align Alignment of the object.
32 * @return A point containing the position at which to draw.
34 static inline Point GetAlignedPosition(const Rect &r, const Dimension &d, StringAlignment align)
36 Point p;
37 /* In case we have a RTL language we swap the alignment. */
38 if (!(align & SA_FORCE) && _current_text_dir == TD_RTL && (align & SA_HOR_MASK) != SA_HOR_CENTER) align ^= SA_RIGHT;
39 switch (align & SA_HOR_MASK) {
40 case SA_LEFT: p.x = r.left; break;
41 case SA_HOR_CENTER: p.x = CenterBounds(r.left, r.right, d.width); break;
42 case SA_RIGHT: p.x = r.right - d.width; break;
43 default: NOT_REACHED();
45 switch (align & SA_VERT_MASK) {
46 case SA_TOP: p.y = r.top; break;
47 case SA_VERT_CENTER: p.y = CenterBounds(r.top, r.bottom, d.height); break;
48 case SA_BOTTOM: p.y = r.bottom - d.height; break;
49 default: NOT_REACHED();
51 return p;
54 /**
55 * Compute the vertical position of the draggable part of scrollbar
56 * @param sb Scrollbar list data
57 * @param top Top position of the scrollbar (top position of the up-button)
58 * @param bottom Bottom position of the scrollbar (bottom position of the down-button)
59 * @param horizontal Whether the scrollbar is horizontal or not
60 * @return A Point, with x containing the top coordinate of the draggable part, and
61 * y containing the bottom coordinate of the draggable part
63 static Point HandleScrollbarHittest(const Scrollbar *sb, int top, int bottom, bool horizontal)
65 /* Base for reversion */
66 int rev_base = top + bottom;
67 int button_size;
68 if (horizontal) {
69 button_size = NWidgetScrollbar::GetHorizontalDimension().width;
70 } else {
71 button_size = NWidgetScrollbar::GetVerticalDimension().height;
73 top += button_size; // top points to just below the up-button
74 bottom -= button_size; // bottom points to top of the down-button
76 int height = (bottom - top);
77 int pos = sb->GetPosition();
78 int count = sb->GetCount();
79 int cap = sb->GetCapacity();
81 if (count != 0) top += height * pos / count;
83 if (cap > count) cap = count;
84 if (count != 0) bottom -= (count - pos - cap) * height / count;
86 Point pt;
87 if (horizontal && _current_text_dir == TD_RTL) {
88 pt.x = rev_base - bottom;
89 pt.y = rev_base - top;
90 } else {
91 pt.x = top;
92 pt.y = bottom;
94 return pt;
97 /**
98 * Compute new position of the scrollbar after a click and updates the window flags.
99 * @param w Window on which a scroll was performed.
100 * @param sb Scrollbar
101 * @param mi Minimum coordinate of the scroll bar.
102 * @param ma Maximum coordinate of the scroll bar.
103 * @param x The X coordinate of the mouse click.
104 * @param y The Y coordinate of the mouse click.
106 static void ScrollbarClickPositioning(Window *w, NWidgetScrollbar *sb, int x, int y, int mi, int ma)
108 int pos;
109 int button_size;
110 bool rtl = false;
111 bool changed = false;
113 if (sb->type == NWID_HSCROLLBAR) {
114 pos = x;
115 rtl = _current_text_dir == TD_RTL;
116 button_size = NWidgetScrollbar::GetHorizontalDimension().width;
117 } else {
118 pos = y;
119 button_size = NWidgetScrollbar::GetVerticalDimension().height;
121 if (pos < mi + button_size) {
122 /* Pressing the upper button? */
123 SetBit(sb->disp_flags, NDB_SCROLLBAR_UP);
124 if (_scroller_click_timeout <= 1) {
125 _scroller_click_timeout = 3;
126 changed = sb->UpdatePosition(rtl ? 1 : -1);
128 w->mouse_capture_widget = sb->index;
129 } else if (pos >= ma - button_size) {
130 /* Pressing the lower button? */
131 SetBit(sb->disp_flags, NDB_SCROLLBAR_DOWN);
133 if (_scroller_click_timeout <= 1) {
134 _scroller_click_timeout = 3;
135 changed = sb->UpdatePosition(rtl ? -1 : 1);
137 w->mouse_capture_widget = sb->index;
138 } else {
139 Point pt = HandleScrollbarHittest(sb, mi, ma, sb->type == NWID_HSCROLLBAR);
141 if (pos < pt.x) {
142 changed = sb->UpdatePosition(rtl ? 1 : -1, Scrollbar::SS_BIG);
143 } else if (pos > pt.y) {
144 changed = sb->UpdatePosition(rtl ? -1 : 1, Scrollbar::SS_BIG);
145 } else {
146 _scrollbar_start_pos = pt.x - mi - button_size;
147 _scrollbar_size = ma - mi - button_size * 2;
148 w->mouse_capture_widget = sb->index;
149 _cursorpos_drag_start = _cursor.pos;
153 if (changed) {
154 /* Position changed so refresh the window */
155 w->SetDirty();
156 } else {
157 /* No change so only refresh this scrollbar */
158 sb->SetDirty(w);
163 * Special handling for the scrollbar widget type.
164 * Handles the special scrolling buttons and other scrolling.
165 * @param w Window on which a scroll was performed.
166 * @param nw Pointer to the scrollbar widget.
167 * @param x The X coordinate of the mouse click.
168 * @param y The Y coordinate of the mouse click.
170 void ScrollbarClickHandler(Window *w, NWidgetCore *nw, int x, int y)
172 int mi, ma;
174 if (nw->type == NWID_HSCROLLBAR) {
175 mi = nw->pos_x;
176 ma = nw->pos_x + nw->current_x;
177 } else {
178 mi = nw->pos_y;
179 ma = nw->pos_y + nw->current_y;
181 NWidgetScrollbar *scrollbar = dynamic_cast<NWidgetScrollbar*>(nw);
182 assert(scrollbar != nullptr);
183 ScrollbarClickPositioning(w, scrollbar, x, y, mi, ma);
187 * Returns the index for the widget located at the given position
188 * relative to the window. It includes all widget-corner pixels as well.
189 * @param *w Window to look inside
190 * @param x The Window client X coordinate
191 * @param y The Window client y coordinate
192 * @return A widget index, or -1 if no widget was found.
194 int GetWidgetFromPos(const Window *w, int x, int y)
196 NWidgetCore *nw = w->nested_root->GetWidgetFromPos(x, y);
197 return (nw != nullptr) ? nw->index : -1;
201 * Draw frame rectangle.
202 * @param left Left edge of the frame
203 * @param top Top edge of the frame
204 * @param right Right edge of the frame
205 * @param bottom Bottom edge of the frame
206 * @param colour Colour table to use. @see _colour_gradient
207 * @param flags Flags controlling how to draw the frame. @see FrameFlags
209 void DrawFrameRect(int left, int top, int right, int bottom, Colours colour, FrameFlags flags)
211 assert(colour < COLOUR_END);
213 uint dark = _colour_gradient[colour][3];
214 uint medium_dark = _colour_gradient[colour][5];
215 uint medium_light = _colour_gradient[colour][6];
216 uint light = _colour_gradient[colour][7];
218 if (flags & FR_TRANSPARENT) {
219 GfxFillRect(left, top, right, bottom, PALETTE_TO_TRANSPARENT, FILLRECT_RECOLOUR);
220 } else {
221 uint interior;
223 if (flags & FR_LOWERED) {
224 GfxFillRect(left, top, left, bottom, dark);
225 GfxFillRect(left + WD_BEVEL_LEFT, top, right, top, dark);
226 GfxFillRect(right, top + WD_BEVEL_TOP, right, bottom - WD_BEVEL_BOTTOM, light);
227 GfxFillRect(left + WD_BEVEL_LEFT, bottom, right, bottom, light);
228 interior = (flags & FR_DARKENED ? medium_dark : medium_light);
229 } else {
230 GfxFillRect(left, top, left, bottom - WD_BEVEL_BOTTOM, light);
231 GfxFillRect(left + WD_BEVEL_LEFT, top, right - WD_BEVEL_RIGHT, top, light);
232 GfxFillRect(right, top, right, bottom - WD_BEVEL_BOTTOM, dark);
233 GfxFillRect(left, bottom, right, bottom, dark);
234 interior = medium_dark;
236 if (!(flags & FR_BORDERONLY)) {
237 GfxFillRect(left + WD_BEVEL_LEFT, top + WD_BEVEL_TOP, right - WD_BEVEL_RIGHT, bottom - WD_BEVEL_BOTTOM, interior);
243 * Draw an image button.
244 * @param r Rectangle of the button.
245 * @param type Widget type (#WWT_IMGBTN or #WWT_IMGBTN_2).
246 * @param colour Colour of the button.
247 * @param clicked Button is lowered.
248 * @param img Sprite to draw.
249 * @param align Alignment of the sprite.
251 static inline void DrawImageButtons(const Rect &r, WidgetType type, Colours colour, bool clicked, SpriteID img, StringAlignment align)
253 assert(img != 0);
254 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
256 if ((type & WWT_MASK) == WWT_IMGBTN_2 && clicked) img++; // Show different image when clicked for #WWT_IMGBTN_2.
257 Dimension d = GetSpriteSize(img);
258 Point p = GetAlignedPosition(r, d, align);
259 DrawSprite(img, PAL_NONE, p.x + clicked, p.y + clicked);
263 * Draw the label-part of a widget.
264 * @param r Rectangle of the label background.
265 * @param type Widget type (#WWT_TEXTBTN, #WWT_TEXTBTN_2, or #WWT_LABEL).
266 * @param clicked Label is rendered lowered.
267 * @param colour Colour of the text.
268 * @param str Text to draw.
269 * @param align Alignment of the text.
271 static inline void DrawLabel(const Rect &r, WidgetType type, bool clicked, TextColour colour, StringID str, StringAlignment align)
273 if (str == STR_NULL) return;
274 if ((type & WWT_MASK) == WWT_TEXTBTN_2 && clicked) str++;
275 Dimension d = GetStringBoundingBox(str);
276 Point p = GetAlignedPosition(r, d, align);
277 DrawString(r.left + clicked, r.right + clicked, p.y + clicked, str, colour, align);
281 * Draw text.
282 * @param r Rectangle of the background.
283 * @param colour Colour of the text.
284 * @param str Text to draw.
285 * @param align Alignment of the text.
287 static inline void DrawText(const Rect &r, TextColour colour, StringID str, StringAlignment align)
289 Dimension d = GetStringBoundingBox(str);
290 Point p = GetAlignedPosition(r, d, align);
291 if (str != STR_NULL) DrawString(r.left, r.right, p.y, str, colour, align);
295 * Draw an inset widget.
296 * @param r Rectangle of the background.
297 * @param colour Colour of the inset.
298 * @param text_colour Colour of the text.
299 * @param str Text to draw.
300 * @param align Alignment of the text.
302 static inline void DrawInset(const Rect &r, Colours colour, TextColour text_colour, StringID str, StringAlignment align)
304 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_LOWERED | FR_DARKENED);
305 if (str != STR_NULL) DrawString(r.left + WD_INSET_LEFT, r.right - WD_INSET_RIGHT, r.top + WD_INSET_TOP, str, text_colour, align);
309 * Draw a matrix widget.
310 * @param r Rectangle of the matrix background.
311 * @param colour Colour of the background.
312 * @param clicked Matrix is rendered lowered.
313 * @param data Data of the widget, number of rows and columns of the widget.
314 * @param resize_x Matrix resize unit size.
315 * @param resize_y Matrix resize unit size.
317 static inline void DrawMatrix(const Rect &r, Colours colour, bool clicked, uint16 data, uint resize_x, uint resize_y)
319 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
321 int num_columns = GB(data, MAT_COL_START, MAT_COL_BITS); // Lower 8 bits of the widget data: Number of columns in the matrix.
322 int column_width; // Width of a single column in the matrix.
323 if (num_columns == 0) {
324 column_width = resize_x;
325 num_columns = (r.right - r.left + 1) / column_width;
326 } else {
327 column_width = (r.right - r.left + 1) / num_columns;
330 int num_rows = GB(data, MAT_ROW_START, MAT_ROW_BITS); // Upper 8 bits of the widget data: Number of rows in the matrix.
331 int row_height; // Height of a single row in the matrix.
332 if (num_rows == 0) {
333 row_height = resize_y;
334 num_rows = (r.bottom - r.top + 1) / row_height;
335 } else {
336 row_height = (r.bottom - r.top + 1) / num_rows;
339 int col = _colour_gradient[colour & 0xF][6];
341 int x = r.left;
342 for (int ctr = num_columns; ctr > 1; ctr--) {
343 x += column_width;
344 GfxFillRect(x, r.top + 1, x, r.bottom - 1, col);
347 x = r.top;
348 for (int ctr = num_rows; ctr > 1; ctr--) {
349 x += row_height;
350 GfxFillRect(r.left + 1, x, r.right - 1, x, col);
353 col = _colour_gradient[colour & 0xF][4];
355 x = r.left - 1;
356 for (int ctr = num_columns; ctr > 1; ctr--) {
357 x += column_width;
358 GfxFillRect(x, r.top + 1, x, r.bottom - 1, col);
361 x = r.top - 1;
362 for (int ctr = num_rows; ctr > 1; ctr--) {
363 x += row_height;
364 GfxFillRect(r.left + 1, x, r.right - 1, x, col);
369 * Draw a vertical scrollbar.
370 * @param r Rectangle of the scrollbar widget.
371 * @param colour Colour of the scrollbar widget.
372 * @param up_clicked Up-arrow is clicked.
373 * @param bar_dragged Bar is dragged.
374 * @param down_clicked Down-arrow is clicked.
375 * @param scrollbar Scrollbar size, offset, and capacity information.
377 static inline void DrawVerticalScrollbar(const Rect &r, Colours colour, bool up_clicked, bool bar_dragged, bool down_clicked, const Scrollbar *scrollbar)
379 int centre = (r.right - r.left) / 2;
380 int height = NWidgetScrollbar::GetVerticalDimension().height;
382 /* draw up/down buttons */
383 DrawFrameRect(r.left, r.top, r.right, r.top + height - 1, colour, (up_clicked) ? FR_LOWERED : FR_NONE);
384 DrawSprite(SPR_ARROW_UP, PAL_NONE, r.left + 1 + up_clicked, r.top + 1 + up_clicked);
386 DrawFrameRect(r.left, r.bottom - (height - 1), r.right, r.bottom, colour, (down_clicked) ? FR_LOWERED : FR_NONE);
387 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.left + 1 + down_clicked, r.bottom - (height - 2) + down_clicked);
389 int c1 = _colour_gradient[colour & 0xF][3];
390 int c2 = _colour_gradient[colour & 0xF][7];
392 /* draw "shaded" background */
393 GfxFillRect(r.left, r.top + height, r.right, r.bottom - height, c2);
394 GfxFillRect(r.left, r.top + height, r.right, r.bottom - height, c1, FILLRECT_CHECKER);
396 /* draw shaded lines */
397 GfxFillRect(r.left + centre - 3, r.top + height, r.left + centre - 3, r.bottom - height, c1);
398 GfxFillRect(r.left + centre - 2, r.top + height, r.left + centre - 2, r.bottom - height, c2);
399 GfxFillRect(r.left + centre + 2, r.top + height, r.left + centre + 2, r.bottom - height, c1);
400 GfxFillRect(r.left + centre + 3, r.top + height, r.left + centre + 3, r.bottom - height, c2);
402 Point pt = HandleScrollbarHittest(scrollbar, r.top, r.bottom, false);
403 DrawFrameRect(r.left, pt.x, r.right, pt.y, colour, bar_dragged ? FR_LOWERED : FR_NONE);
407 * Draw a horizontal scrollbar.
408 * @param r Rectangle of the scrollbar widget.
409 * @param colour Colour of the scrollbar widget.
410 * @param left_clicked Left-arrow is clicked.
411 * @param bar_dragged Bar is dragged.
412 * @param right_clicked Right-arrow is clicked.
413 * @param scrollbar Scrollbar size, offset, and capacity information.
415 static inline void DrawHorizontalScrollbar(const Rect &r, Colours colour, bool left_clicked, bool bar_dragged, bool right_clicked, const Scrollbar *scrollbar)
417 int centre = (r.bottom - r.top) / 2;
418 int width = NWidgetScrollbar::GetHorizontalDimension().width;
420 DrawFrameRect(r.left, r.top, r.left + width - 1, r.bottom, colour, left_clicked ? FR_LOWERED : FR_NONE);
421 DrawSprite(SPR_ARROW_LEFT, PAL_NONE, r.left + 1 + left_clicked, r.top + 1 + left_clicked);
423 DrawFrameRect(r.right - (width - 1), r.top, r.right, r.bottom, colour, right_clicked ? FR_LOWERED : FR_NONE);
424 DrawSprite(SPR_ARROW_RIGHT, PAL_NONE, r.right - (width - 2) + right_clicked, r.top + 1 + right_clicked);
426 int c1 = _colour_gradient[colour & 0xF][3];
427 int c2 = _colour_gradient[colour & 0xF][7];
429 /* draw "shaded" background */
430 GfxFillRect(r.left + width, r.top, r.right - width, r.bottom, c2);
431 GfxFillRect(r.left + width, r.top, r.right - width, r.bottom, c1, FILLRECT_CHECKER);
433 /* draw shaded lines */
434 GfxFillRect(r.left + width, r.top + centre - 3, r.right - width, r.top + centre - 3, c1);
435 GfxFillRect(r.left + width, r.top + centre - 2, r.right - width, r.top + centre - 2, c2);
436 GfxFillRect(r.left + width, r.top + centre + 2, r.right - width, r.top + centre + 2, c1);
437 GfxFillRect(r.left + width, r.top + centre + 3, r.right - width, r.top + centre + 3, c2);
439 /* draw actual scrollbar */
440 Point pt = HandleScrollbarHittest(scrollbar, r.left, r.right, true);
441 DrawFrameRect(pt.x, r.top, pt.y, r.bottom, colour, bar_dragged ? FR_LOWERED : FR_NONE);
445 * Draw a frame widget.
446 * @param r Rectangle of the frame.
447 * @param colour Colour of the frame.
448 * @param text_colour Colour of the text.
449 * @param str Text of the frame.
450 * @param align Alignment of the text in the frame.
452 static inline void DrawFrame(const Rect &r, Colours colour, TextColour text_colour, StringID str, StringAlignment align)
454 int x2 = r.left; // by default the left side is the left side of the widget
456 if (str != STR_NULL) x2 = DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, r.top, str, text_colour, align);
458 int c1 = _colour_gradient[colour][3];
459 int c2 = _colour_gradient[colour][7];
461 /* If the frame has text, adjust the top bar to fit half-way through */
462 int dy1 = 4;
463 if (str != STR_NULL) dy1 = FONT_HEIGHT_NORMAL / 2 - 1;
464 int dy2 = dy1 + 1;
466 if (_current_text_dir == TD_LTR) {
467 /* Line from upper left corner to start of text */
468 GfxFillRect(r.left, r.top + dy1, r.left + 4, r.top + dy1, c1);
469 GfxFillRect(r.left + 1, r.top + dy2, r.left + 4, r.top + dy2, c2);
471 /* Line from end of text to upper right corner */
472 GfxFillRect(x2, r.top + dy1, r.right - 1, r.top + dy1, c1);
473 GfxFillRect(x2, r.top + dy2, r.right - 2, r.top + dy2, c2);
474 } else {
475 /* Line from upper left corner to start of text */
476 GfxFillRect(r.left, r.top + dy1, x2 - 2, r.top + dy1, c1);
477 GfxFillRect(r.left + 1, r.top + dy2, x2 - 2, r.top + dy2, c2);
479 /* Line from end of text to upper right corner */
480 GfxFillRect(r.right - 5, r.top + dy1, r.right - 1, r.top + dy1, c1);
481 GfxFillRect(r.right - 5, r.top + dy2, r.right - 2, r.top + dy2, c2);
484 /* Line from upper left corner to bottom left corner */
485 GfxFillRect(r.left, r.top + dy2, r.left, r.bottom - 1, c1);
486 GfxFillRect(r.left + 1, r.top + dy2 + 1, r.left + 1, r.bottom - 2, c2);
488 /* Line from upper right corner to bottom right corner */
489 GfxFillRect(r.right - 1, r.top + dy2, r.right - 1, r.bottom - 2, c1);
490 GfxFillRect(r.right, r.top + dy1, r.right, r.bottom - 1, c2);
492 GfxFillRect(r.left + 1, r.bottom - 1, r.right - 1, r.bottom - 1, c1);
493 GfxFillRect(r.left, r.bottom, r.right, r.bottom, c2);
497 * Draw a shade box.
498 * @param r Rectangle of the box.
499 * @param colour Colour of the shade box.
500 * @param clicked Box is lowered.
502 static inline void DrawShadeBox(const Rect &r, Colours colour, bool clicked)
504 DrawImageButtons(r, WWT_SHADEBOX, colour, clicked, clicked ? SPR_WINDOW_SHADE: SPR_WINDOW_UNSHADE, SA_CENTER);
508 * Draw a sticky box.
509 * @param r Rectangle of the box.
510 * @param colour Colour of the sticky box.
511 * @param clicked Box is lowered.
513 static inline void DrawStickyBox(const Rect &r, Colours colour, bool clicked)
515 DrawImageButtons(r, WWT_STICKYBOX, colour, clicked, clicked ? SPR_PIN_UP : SPR_PIN_DOWN, SA_CENTER);
519 * Draw a defsize box.
520 * @param r Rectangle of the box.
521 * @param colour Colour of the defsize box.
522 * @param clicked Box is lowered.
524 static inline void DrawDefSizeBox(const Rect &r, Colours colour, bool clicked)
526 DrawImageButtons(r, WWT_DEFSIZEBOX, colour, clicked, SPR_WINDOW_DEFSIZE, SA_CENTER);
530 * Draw a NewGRF debug box.
531 * @param r Rectangle of the box.
532 * @param colour Colour of the debug box.
533 * @param clicked Box is lowered.
535 static inline void DrawDebugBox(const Rect &r, Colours colour, bool clicked)
537 DrawImageButtons(r, WWT_DEBUGBOX, colour, clicked, SPR_WINDOW_DEBUG, SA_CENTER);
541 * Draw a resize box.
542 * @param r Rectangle of the box.
543 * @param colour Colour of the resize box.
544 * @param at_left Resize box is at left-side of the window,
545 * @param clicked Box is lowered.
547 static inline void DrawResizeBox(const Rect &r, Colours colour, bool at_left, bool clicked)
549 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
550 if (at_left) {
551 Dimension d = GetSpriteSize(SPR_WINDOW_RESIZE_LEFT);
552 DrawSprite(SPR_WINDOW_RESIZE_LEFT, PAL_NONE, r.left + WD_RESIZEBOX_RIGHT + clicked,
553 r.bottom + 1 - WD_RESIZEBOX_BOTTOM - d.height + clicked);
554 } else {
555 Dimension d = GetSpriteSize(SPR_WINDOW_RESIZE_RIGHT);
556 DrawSprite(SPR_WINDOW_RESIZE_RIGHT, PAL_NONE, r.right + 1 - WD_RESIZEBOX_RIGHT - d.width + clicked,
557 r.bottom + 1 - WD_RESIZEBOX_BOTTOM - d.height + clicked);
562 * Draw a close box.
563 * @param r Rectangle of the box.
564 * @param colour Colour of the close box.
566 static inline void DrawCloseBox(const Rect &r, Colours colour)
568 if (colour != COLOUR_WHITE) DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_NONE);
569 Dimension d = GetSpriteSize(SPR_CLOSEBOX);
570 int s = UnScaleGUI(1); /* Offset to account for shadow of SPR_CLOSEBOX */
571 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));
575 * Draw a caption bar.
576 * @param r Rectangle of the bar.
577 * @param colour Colour of the window.
578 * @param owner 'Owner' of the window.
579 * @param text_colour Colour of the text.
580 * @param str Text to draw in the bar.
581 * @param align Alignment of the text.
583 void DrawCaption(const Rect &r, Colours colour, Owner owner, TextColour text_colour, StringID str, StringAlignment align)
585 bool company_owned = owner < MAX_COMPANIES;
587 DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, FR_BORDERONLY);
588 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);
590 if (company_owned) {
591 GfxFillRect(r.left + 2, r.top + 2, r.right - 2, r.bottom - 2, _colour_gradient[_company_colours[owner]][4]);
594 if (str != STR_NULL) {
595 Dimension d = GetStringBoundingBox(str);
596 Point p = GetAlignedPosition(r, d, align);
597 DrawString(r.left + WD_CAPTIONTEXT_LEFT, r.right - WD_CAPTIONTEXT_RIGHT, p.y, str, text_colour, align);
602 * Draw a button with a dropdown (#WWT_DROPDOWN and #NWID_BUTTON_DROPDOWN).
603 * @param r Rectangle containing the widget.
604 * @param colour Background colour of the widget.
605 * @param clicked_button The button-part is lowered.
606 * @param clicked_dropdown The drop-down part is lowered.
607 * @param str Text of the button.
608 * @param align Alignment of the text within the dropdown.
610 * @note Magic constants are also used in #NWidgetLeaf::ButtonHit.
612 static inline void DrawButtonDropdown(const Rect &r, Colours colour, bool clicked_button, bool clicked_dropdown, StringID str, StringAlignment align)
614 int text_offset = std::max(0, ((int)(r.bottom - r.top + 1) - FONT_HEIGHT_NORMAL) / 2); // Offset for rendering the text vertically centered
616 int dd_width = NWidgetLeaf::dropdown_dimension.width;
617 int dd_height = NWidgetLeaf::dropdown_dimension.height;
618 int image_offset = std::max(0, ((int)(r.bottom - r.top + 1) - dd_height) / 2);
620 if (_current_text_dir == TD_LTR) {
621 DrawFrameRect(r.left, r.top, r.right - dd_width, r.bottom, colour, clicked_button ? FR_LOWERED : FR_NONE);
622 DrawFrameRect(r.right + 1 - dd_width, r.top, r.right, r.bottom, colour, clicked_dropdown ? FR_LOWERED : FR_NONE);
623 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.right - (dd_width - 2) + clicked_dropdown, r.top + image_offset + clicked_dropdown);
624 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, align);
625 } else {
626 DrawFrameRect(r.left + dd_width, r.top, r.right, r.bottom, colour, clicked_button ? FR_LOWERED : FR_NONE);
627 DrawFrameRect(r.left, r.top, r.left + dd_width - 1, r.bottom, colour, clicked_dropdown ? FR_LOWERED : FR_NONE);
628 DrawSprite(SPR_ARROW_DOWN, PAL_NONE, r.left + 1 + clicked_dropdown, r.top + image_offset + clicked_dropdown);
629 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, align);
634 * Paint all widgets of a window.
636 void Window::DrawWidgets() const
638 this->nested_root->Draw(this);
640 if (this->flags & WF_WHITE_BORDER) {
641 DrawFrameRect(0, 0, this->width - 1, this->height - 1, COLOUR_WHITE, FR_BORDERONLY);
644 if (this->flags & WF_HIGHLIGHTED) {
645 extern bool _window_highlight_colour;
646 for (uint i = 0; i < this->nested_array_size; i++) {
647 const NWidgetBase *widget = this->GetWidget<NWidgetBase>(i);
648 if (widget == nullptr || !widget->IsHighlighted()) continue;
650 int left = widget->pos_x;
651 int top = widget->pos_y;
652 int right = left + widget->current_x - 1;
653 int bottom = top + widget->current_y - 1;
655 int colour = _string_colourmap[_window_highlight_colour ? widget->GetHighlightColour() : TC_WHITE];
657 GfxFillRect(left, top, left, bottom - WD_BEVEL_BOTTOM, colour);
658 GfxFillRect(left + WD_BEVEL_LEFT, top, right - WD_BEVEL_RIGHT, top, colour);
659 GfxFillRect(right, top, right, bottom - WD_BEVEL_BOTTOM, colour);
660 GfxFillRect(left, bottom, right, bottom, colour);
666 * Draw a sort button's up or down arrow symbol.
667 * @param widget Sort button widget
668 * @param state State of sort button
670 void Window::DrawSortButtonState(int widget, SortButtonState state) const
672 if (state == SBS_OFF) return;
674 assert(this->nested_array != nullptr);
675 const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget);
677 /* Sort button uses the same sprites as vertical scrollbar */
678 Dimension dim = NWidgetScrollbar::GetVerticalDimension();
679 int offset = this->IsWidgetLowered(widget) ? 1 : 0;
680 int x = offset + nwid->pos_x + (_current_text_dir == TD_LTR ? nwid->current_x - dim.width : 0);
681 int y = offset + nwid->pos_y + (nwid->current_y - dim.height) / 2;
683 DrawSprite(state == SBS_DOWN ? SPR_ARROW_DOWN : SPR_ARROW_UP, PAL_NONE, x, y);
687 * Get width of up/down arrow of sort button state.
688 * @return Width of space required by sort button arrow.
690 int Window::SortButtonWidth()
692 return NWidgetScrollbar::GetVerticalDimension().width + 1;
697 * @defgroup NestedWidgets Hierarchical widgets
698 * Hierarchical widgets, also known as nested widgets, are widgets stored in a tree. At the leafs of the tree are (mostly) the 'real' widgets
699 * visible to the user. At higher levels, widgets get organized in container widgets, until all widgets of the window are merged.
701 * \section nestedwidgetkinds Hierarchical widget kinds
702 * A leaf widget is one of
703 * <ul>
704 * <li> #NWidgetLeaf for widgets visible for the user, or
705 * <li> #NWidgetSpacer for creating (flexible) empty space between widgets.
706 * </ul>
707 * The purpose of a leaf widget is to provide interaction with the user by displaying settings, and/or allowing changing the settings.
709 * A container widget is one of
710 * <ul>
711 * <li> #NWidgetHorizontal for organizing child widgets in a (horizontal) row. The row switches order depending on the language setting (thus supporting
712 * right-to-left languages),
713 * <li> #NWidgetHorizontalLTR for organizing child widgets in a (horizontal) row, always in the same order. All children below this container will also
714 * never swap order.
715 * <li> #NWidgetVertical for organizing child widgets underneath each other.
716 * <li> #NWidgetMatrix for organizing child widgets in a matrix form.
717 * <li> #NWidgetBackground for adding a background behind its child widget.
718 * <li> #NWidgetStacked for stacking child widgets on top of each other.
719 * </ul>
720 * The purpose of a container widget is to structure its leafs and sub-containers to allow proper resizing.
722 * \section nestedwidgetscomputations Hierarchical widget computations
723 * 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,
724 * or by means of specifying the tree as a collection of nested widgets parts and instantiating the tree from the array.
726 * After the creation step,
727 * - 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).
728 * - Containers only know what their children are, \e fill_x, \e fill_y, \e resize_x, and \e resize_y are not initialized.
730 * Computations in the nested widgets take place as follows:
731 * <ol>
732 * <li> A bottom-up sweep by recursively calling NWidgetBase::SetupSmallestSize() to initialize the smallest size (\e smallest_x, \e smallest_y) and
733 * to propagate filling and resize steps upwards to the root of the tree.
734 * <li> A top-down sweep by recursively calling NWidgetBase::AssignSizePosition() with #ST_SMALLEST to make the smallest sizes consistent over
735 * 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
736 * 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.
737 * <li> After initializing the smallest size in the widget tree with #ST_SMALLEST, the tree can be resized (the current size modified) by calling
738 * 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
739 * 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}).
740 * </ol>
741 * After the second step, the current size of the widgets are set to the smallest size.
743 * To resize, perform the last step with the new window size. This can be done as often as desired.
744 * When the smallest size of at least one widget changes, the whole procedure has to be redone from the start.
746 * @see NestedWidgetParts
750 * Base class constructor.
751 * @param tp Nested widget type.
753 NWidgetBase::NWidgetBase(WidgetType tp) : ZeroedMemoryAllocator()
755 this->type = tp;
758 /* ~NWidgetContainer() takes care of #next and #prev data members. */
761 * @fn void NWidgetBase::SetupSmallestSize(Window *w, bool init_array)
762 * Compute smallest size needed by the widget.
764 * The smallest size of a widget is the smallest size that a widget needs to
765 * display itself properly. In addition, filling and resizing of the widget are computed.
766 * The function calls #Window::UpdateWidgetSize for each leaf widget and
767 * background widget without child with a non-negative index.
769 * @param w Window owning the widget.
770 * @param init_array Initialize the \c w->nested_array.
772 * @note After the computation, the results can be queried by accessing the #smallest_x and #smallest_y data members of the widget.
776 * @fn void NWidgetBase::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
777 * Assign size and position to the widget.
778 * @param sizing Type of resizing to perform.
779 * @param x Horizontal offset of the widget relative to the left edge of the window.
780 * @param y Vertical offset of the widget relative to the top edge of the window.
781 * @param given_width Width allocated to the widget.
782 * @param given_height Height allocated to the widget.
783 * @param rtl Adapt for right-to-left languages (position contents of horizontal containers backwards).
785 * Afterwards, \e pos_x and \e pos_y contain the top-left position of the widget, \e smallest_x and \e smallest_y contain
786 * the smallest size such that all widgets of the window are consistent, and \e current_x and \e current_y contain the current size.
790 * @fn void NWidgetBase::FillNestedArray(NWidgetBase **array, uint length)
791 * Fill the Window::nested_array array with pointers to nested widgets in the tree.
792 * @param array Base pointer of the array.
793 * @param length Length of the array.
797 * @fn void NWidgetBase::Draw(const Window *w)
798 * Draw the widgets of the tree.
799 * The function calls #Window::DrawWidget for each widget with a non-negative index, after the widget itself is painted.
800 * @param w Window that owns the tree.
804 * Mark the widget as 'dirty' (in need of repaint).
805 * @param w Window owning the widget.
807 void NWidgetBase::SetDirty(const Window *w) const
809 int abs_left = w->left + this->pos_x;
810 int abs_top = w->top + this->pos_y;
811 AddDirtyBlock(abs_left, abs_top, abs_left + this->current_x, abs_top + this->current_y);
815 * @fn NWidgetCore *NWidgetBase::GetWidgetFromPos(int x, int y)
816 * Retrieve a widget by its position.
817 * @param x Horizontal position relative to the left edge of the window.
818 * @param y Vertical position relative to the top edge of the window.
819 * @return Returns the deepest nested widget that covers the given position, or \c nullptr if no widget can be found.
823 * Retrieve a widget by its type.
824 * @param tp Widget type to search for.
825 * @return Returns the first widget of the specified type, or \c nullptr if no widget can be found.
827 NWidgetBase *NWidgetBase::GetWidgetOfType(WidgetType tp)
829 return (this->type == tp) ? this : nullptr;
832 void NWidgetBase::AdjustPaddingForZoom()
834 this->padding_top = ScaleGUITrad(this->uz_padding_top);
835 this->padding_right = ScaleGUITrad(this->uz_padding_right);
836 this->padding_bottom = ScaleGUITrad(this->uz_padding_bottom);
837 this->padding_left = ScaleGUITrad(this->uz_padding_left);
841 * Constructor for resizable nested widgets.
842 * @param tp Nested widget type.
843 * @param fill_x Horizontal fill step size, \c 0 means no filling is allowed.
844 * @param fill_y Vertical fill step size, \c 0 means no filling is allowed.
846 NWidgetResizeBase::NWidgetResizeBase(WidgetType tp, uint fill_x, uint fill_y) : NWidgetBase(tp)
848 this->fill_x = fill_x;
849 this->fill_y = fill_y;
852 void NWidgetResizeBase::AdjustPaddingForZoom()
854 if (!this->absolute) {
855 this->min_x = ScaleGUITrad(this->uz_min_x);
856 this->min_y = std::max(ScaleGUITrad(this->uz_min_y), this->uz_text_lines * GetCharacterHeight(this->uz_text_size) + ScaleGUITrad(this->uz_text_spacing));
858 NWidgetBase::AdjustPaddingForZoom();
862 * Set minimal size of the widget.
863 * @param min_x Horizontal minimal size of the widget.
864 * @param min_y Vertical minimal size of the widget.
866 void NWidgetResizeBase::SetMinimalSize(uint min_x, uint min_y)
868 this->uz_min_x = std::max(this->uz_min_x, min_x);
869 this->uz_min_y = std::max(this->uz_min_y, min_y);
870 this->min_x = ScaleGUITrad(this->uz_min_x);
871 this->min_y = std::max(ScaleGUITrad(this->uz_min_y), this->uz_text_lines * GetCharacterHeight(this->uz_text_size) + ScaleGUITrad(this->uz_text_spacing));
875 * Set absolute (post-scaling) minimal size of the widget.
876 * @param min_x Horizontal minimal size of the widget.
877 * @param min_y Vertical minimal size of the widget.
879 void NWidgetResizeBase::SetMinimalSizeAbsolute(uint min_x, uint min_y)
881 this->absolute = true;
882 this->min_x = std::max(this->min_x, min_x);
883 this->min_y = std::max(this->min_y, min_y);
887 * Set minimal text lines for the widget.
888 * @param min_lines Number of text lines of the widget.
889 * @param spacing Extra spacing (eg WD_FRAMERECT_TOP + _BOTTOM) of the widget.
890 * @param size Font size of text.
892 void NWidgetResizeBase::SetMinimalTextLines(uint8 min_lines, uint8 spacing, FontSize size)
894 this->uz_text_lines = min_lines;
895 this->uz_text_spacing = spacing;
896 this->uz_text_size = size;
897 this->min_y = std::max(ScaleGUITrad(this->uz_min_y), this->uz_text_lines * GetCharacterHeight(this->uz_text_size) + ScaleGUITrad(this->uz_text_spacing));
901 * Set the filling of the widget from initial size.
902 * @param fill_x Horizontal fill step size, \c 0 means no filling is allowed.
903 * @param fill_y Vertical fill step size, \c 0 means no filling is allowed.
905 void NWidgetResizeBase::SetFill(uint fill_x, uint fill_y)
907 this->fill_x = fill_x;
908 this->fill_y = fill_y;
912 * Set resize step of the widget.
913 * @param resize_x Resize step in horizontal direction, value \c 0 means no resize, otherwise the step size in pixels.
914 * @param resize_y Resize step in vertical direction, value \c 0 means no resize, otherwise the step size in pixels.
916 void NWidgetResizeBase::SetResize(uint resize_x, uint resize_y)
918 this->resize_x = resize_x;
919 this->resize_y = resize_y;
922 void NWidgetResizeBase::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
924 this->StoreSizePosition(sizing, x, y, given_width, given_height);
928 * Initialization of a 'real' widget.
929 * @param tp Type of the widget.
930 * @param colour Colour of the widget.
931 * @param fill_x Default horizontal filling.
932 * @param fill_y Default vertical filling.
933 * @param widget_data Data component of the widget. @see Widget::data
934 * @param tool_tip Tool tip of the widget. @see Widget::tooltips
936 NWidgetCore::NWidgetCore(WidgetType tp, Colours colour, uint fill_x, uint fill_y, uint32 widget_data, StringID tool_tip) : NWidgetResizeBase(tp, fill_x, fill_y)
938 this->colour = colour;
939 this->index = -1;
940 this->widget_data = widget_data;
941 this->tool_tip = tool_tip;
942 this->scrollbar_index = -1;
943 this->text_colour = TC_BLACK;
944 this->align = SA_CENTER;
948 * Set index of the nested widget in the widget array.
949 * @param index Index to use.
951 void NWidgetCore::SetIndex(int index)
953 assert(index >= 0);
954 this->index = index;
958 * Set data and tool tip of the nested widget.
959 * @param widget_data Data to use.
960 * @param tool_tip Tool tip string to use.
962 void NWidgetCore::SetDataTip(uint32 widget_data, StringID tool_tip)
964 this->widget_data = widget_data;
965 this->tool_tip = tool_tip;
969 * Set the text colour of the nested widget.
970 * @param colour TextColour to use.
972 void NWidgetCore::SetTextColour(TextColour colour)
974 this->text_colour = colour;
978 * Set the tool tip of the nested widget.
979 * @param tool_tip Tool tip string to use.
981 void NWidgetCore::SetToolTip(StringID tool_tip)
983 this->tool_tip = tool_tip;
987 * Set the text/image alignment of the nested widget.
988 * @param align Alignment to use.
990 void NWidgetCore::SetAlignment(StringAlignment align)
992 this->align = align;
995 void NWidgetCore::FillNestedArray(NWidgetBase **array, uint length)
997 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1000 NWidgetCore *NWidgetCore::GetWidgetFromPos(int x, int y)
1002 return (IsInsideBS(x, this->pos_x, this->current_x) && IsInsideBS(y, this->pos_y, this->current_y)) ? this : nullptr;
1006 * Constructor container baseclass.
1007 * @param tp Type of the container.
1009 NWidgetContainer::NWidgetContainer(WidgetType tp) : NWidgetBase(tp)
1011 this->head = nullptr;
1012 this->tail = nullptr;
1015 NWidgetContainer::~NWidgetContainer()
1017 while (this->head != nullptr) {
1018 NWidgetBase *wid = this->head->next;
1019 delete this->head;
1020 this->head = wid;
1022 this->tail = nullptr;
1025 NWidgetBase *NWidgetContainer::GetWidgetOfType(WidgetType tp)
1027 if (this->type == tp) return this;
1028 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1029 NWidgetBase *nwid = child_wid->GetWidgetOfType(tp);
1030 if (nwid != nullptr) return nwid;
1032 return nullptr;
1035 void NWidgetContainer::AdjustPaddingForZoom()
1037 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1038 child_wid->AdjustPaddingForZoom();
1040 NWidgetBase::AdjustPaddingForZoom();
1044 * Append widget \a wid to container.
1045 * @param wid Widget to append.
1047 void NWidgetContainer::Add(NWidgetBase *wid)
1049 assert(wid->next == nullptr && wid->prev == nullptr);
1051 if (this->head == nullptr) {
1052 this->head = wid;
1053 this->tail = wid;
1054 } else {
1055 assert(this->tail != nullptr);
1056 assert(this->tail->next == nullptr);
1058 this->tail->next = wid;
1059 wid->prev = this->tail;
1060 this->tail = wid;
1064 void NWidgetContainer::FillNestedArray(NWidgetBase **array, uint length)
1066 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1067 child_wid->FillNestedArray(array, length);
1072 * Widgets stacked on top of each other.
1074 NWidgetStacked::NWidgetStacked() : NWidgetContainer(NWID_SELECTION)
1076 this->index = -1;
1079 void NWidgetStacked::SetIndex(int index)
1081 this->index = index;
1084 void NWidgetStacked::AdjustPaddingForZoom()
1086 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1087 child_wid->AdjustPaddingForZoom();
1089 NWidgetContainer::AdjustPaddingForZoom();
1092 void NWidgetStacked::SetupSmallestSize(Window *w, bool init_array)
1094 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
1095 assert(w->nested_array_size > (uint)this->index);
1096 w->nested_array[this->index] = this;
1099 /* Zero size plane selected */
1100 if (this->shown_plane >= SZSP_BEGIN) {
1101 Dimension size = {0, 0};
1102 Dimension padding = {0, 0};
1103 Dimension fill = {(this->shown_plane == SZSP_HORIZONTAL), (this->shown_plane == SZSP_VERTICAL)};
1104 Dimension resize = {(this->shown_plane == SZSP_HORIZONTAL), (this->shown_plane == SZSP_VERTICAL)};
1105 /* Here we're primarily interested in the value of resize */
1106 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, padding, &fill, &resize);
1108 this->smallest_x = size.width;
1109 this->smallest_y = size.height;
1110 this->fill_x = fill.width;
1111 this->fill_y = fill.height;
1112 this->resize_x = resize.width;
1113 this->resize_y = resize.height;
1114 return;
1117 /* First sweep, recurse down and compute minimal size and filling. */
1118 this->smallest_x = 0;
1119 this->smallest_y = 0;
1120 this->fill_x = (this->head != nullptr) ? 1 : 0;
1121 this->fill_y = (this->head != nullptr) ? 1 : 0;
1122 this->resize_x = (this->head != nullptr) ? 1 : 0;
1123 this->resize_y = (this->head != nullptr) ? 1 : 0;
1124 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1125 child_wid->SetupSmallestSize(w, init_array);
1127 this->smallest_x = std::max(this->smallest_x, child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right);
1128 this->smallest_y = std::max(this->smallest_y, child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom);
1129 this->fill_x = LeastCommonMultiple(this->fill_x, child_wid->fill_x);
1130 this->fill_y = LeastCommonMultiple(this->fill_y, child_wid->fill_y);
1131 this->resize_x = LeastCommonMultiple(this->resize_x, child_wid->resize_x);
1132 this->resize_y = LeastCommonMultiple(this->resize_y, child_wid->resize_y);
1136 void NWidgetStacked::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1138 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1139 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1141 if (this->shown_plane >= SZSP_BEGIN) return;
1143 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1144 uint hor_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetHorizontalStepSize(sizing);
1145 uint child_width = ComputeMaxSize(child_wid->smallest_x, given_width - child_wid->padding_left - child_wid->padding_right, hor_step);
1146 uint child_pos_x = (rtl ? child_wid->padding_right : child_wid->padding_left);
1148 uint vert_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetVerticalStepSize(sizing);
1149 uint child_height = ComputeMaxSize(child_wid->smallest_y, given_height - child_wid->padding_top - child_wid->padding_bottom, vert_step);
1150 uint child_pos_y = child_wid->padding_top;
1152 child_wid->AssignSizePosition(sizing, x + child_pos_x, y + child_pos_y, child_width, child_height, rtl);
1156 void NWidgetStacked::FillNestedArray(NWidgetBase **array, uint length)
1158 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1159 NWidgetContainer::FillNestedArray(array, length);
1162 void NWidgetStacked::Draw(const Window *w)
1164 if (this->shown_plane >= SZSP_BEGIN) return;
1166 int plane = 0;
1167 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; plane++, child_wid = child_wid->next) {
1168 if (plane == this->shown_plane) {
1169 child_wid->Draw(w);
1170 return;
1174 NOT_REACHED();
1177 NWidgetCore *NWidgetStacked::GetWidgetFromPos(int x, int y)
1179 if (this->shown_plane >= SZSP_BEGIN) return nullptr;
1181 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1182 int plane = 0;
1183 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; plane++, child_wid = child_wid->next) {
1184 if (plane == this->shown_plane) {
1185 return child_wid->GetWidgetFromPos(x, y);
1188 return nullptr;
1192 * Select which plane to show (for #NWID_SELECTION only).
1193 * @param plane Plane number to display.
1195 void NWidgetStacked::SetDisplayedPlane(int plane)
1197 this->shown_plane = plane;
1200 NWidgetPIPContainer::NWidgetPIPContainer(WidgetType tp, NWidContainerFlags flags) : NWidgetContainer(tp)
1202 this->flags = flags;
1205 void NWidgetPIPContainer::AdjustPaddingForZoom()
1207 this->pip_pre = ScaleGUITrad(this->uz_pip_pre);
1208 this->pip_inter = ScaleGUITrad(this->uz_pip_inter);
1209 this->pip_post = ScaleGUITrad(this->uz_pip_post);
1210 NWidgetContainer::AdjustPaddingForZoom();
1214 * Set additional pre/inter/post space for the container.
1216 * @param pip_pre Additional space in front of the first child widget (above
1217 * for the vertical container, at the left for the horizontal container).
1218 * @param pip_inter Additional space between two child widgets.
1219 * @param pip_post Additional space after the last child widget (below for the
1220 * vertical container, at the right for the horizontal container).
1222 void NWidgetPIPContainer::SetPIP(uint8 pip_pre, uint8 pip_inter, uint8 pip_post)
1224 this->uz_pip_pre = pip_pre;
1225 this->uz_pip_inter = pip_inter;
1226 this->uz_pip_post = pip_post;
1228 this->pip_pre = ScaleGUITrad(this->uz_pip_pre);
1229 this->pip_inter = ScaleGUITrad(this->uz_pip_inter);
1230 this->pip_post = ScaleGUITrad(this->uz_pip_post);
1233 void NWidgetPIPContainer::Draw(const Window *w)
1235 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1236 child_wid->Draw(w);
1240 NWidgetCore *NWidgetPIPContainer::GetWidgetFromPos(int x, int y)
1242 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1244 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1245 NWidgetCore *nwid = child_wid->GetWidgetFromPos(x, y);
1246 if (nwid != nullptr) return nwid;
1248 return nullptr;
1251 /** Horizontal container widget. */
1252 NWidgetHorizontal::NWidgetHorizontal(NWidContainerFlags flags) : NWidgetPIPContainer(NWID_HORIZONTAL, flags)
1256 void NWidgetHorizontal::SetupSmallestSize(Window *w, bool init_array)
1258 this->smallest_x = 0; // Sum of minimal size of all children.
1259 this->smallest_y = 0; // Biggest child.
1260 this->fill_x = 0; // smallest non-zero child widget fill step.
1261 this->fill_y = 1; // smallest common child fill step.
1262 this->resize_x = 0; // smallest non-zero child widget resize step.
1263 this->resize_y = 1; // smallest common child resize step.
1265 /* 1a. Forward call, collect biggest nested array index, and longest/widest child length. */
1266 uint longest = 0; // Longest child found.
1267 uint max_vert_fill = 0; // Biggest vertical fill step.
1268 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1269 child_wid->SetupSmallestSize(w, init_array);
1270 longest = std::max(longest, child_wid->smallest_x);
1271 max_vert_fill = std::max(max_vert_fill, child_wid->GetVerticalStepSize(ST_SMALLEST));
1272 this->smallest_y = std::max(this->smallest_y, child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom);
1274 /* 1b. Make the container higher if needed to accommodate all children nicely. */
1275 [[maybe_unused]] uint max_smallest = this->smallest_y + 3 * max_vert_fill; // Upper limit to computing smallest height.
1276 uint cur_height = this->smallest_y;
1277 for (;;) {
1278 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1279 uint step_size = child_wid->GetVerticalStepSize(ST_SMALLEST);
1280 uint child_height = child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1281 if (step_size > 1 && child_height < cur_height) { // Small step sizes or already fitting children are not interesting.
1282 uint remainder = (cur_height - child_height) % step_size;
1283 if (remainder > 0) { // Child did not fit entirely, widen the container.
1284 cur_height += step_size - remainder;
1285 assert(cur_height < max_smallest); // Safeguard against infinite height expansion.
1286 /* Remaining children will adapt to the new cur_height, thus speeding up the computation. */
1290 if (this->smallest_y == cur_height) break;
1291 this->smallest_y = cur_height; // Smallest height got changed, try again.
1293 /* 2. For containers that must maintain equal width, extend child minimal size. */
1294 if (this->flags & NC_EQUALSIZE) {
1295 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1296 if (child_wid->fill_x == 1) child_wid->smallest_x = longest;
1299 /* 3. Move PIP space to the children, compute smallest, fill, and resize values of the container. */
1300 if (this->head != nullptr) this->head->padding_left += this->pip_pre;
1301 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1302 if (child_wid->next != nullptr) {
1303 child_wid->padding_right += this->pip_inter;
1304 } else {
1305 child_wid->padding_right += this->pip_post;
1308 this->smallest_x += child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right;
1309 if (child_wid->fill_x > 0) {
1310 if (this->fill_x == 0 || this->fill_x > child_wid->fill_x) this->fill_x = child_wid->fill_x;
1312 this->fill_y = LeastCommonMultiple(this->fill_y, child_wid->fill_y);
1314 if (child_wid->resize_x > 0) {
1315 if (this->resize_x == 0 || this->resize_x > child_wid->resize_x) this->resize_x = child_wid->resize_x;
1317 this->resize_y = LeastCommonMultiple(this->resize_y, child_wid->resize_y);
1319 /* We need to zero the PIP settings so we can re-initialize the tree. */
1320 this->pip_pre = this->pip_inter = this->pip_post = 0;
1323 void NWidgetHorizontal::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1325 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1327 /* Compute additional width given to us. */
1328 uint additional_length = given_width;
1329 if (sizing == ST_SMALLEST && (this->flags & NC_EQUALSIZE)) {
1330 /* For EQUALSIZE containers this does not sum to smallest_x during initialisation */
1331 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1332 additional_length -= child_wid->smallest_x + child_wid->padding_right + child_wid->padding_left;
1334 } else {
1335 additional_length -= this->smallest_x;
1338 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1340 /* In principle, the additional horizontal space is distributed evenly over the available resizable children. Due to step sizes, this may not always be feasible.
1341 * To make resizing work as good as possible, first children with biggest step sizes are done. These may get less due to rounding down.
1342 * 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
1343 * of the child with the smallest non-zero stepsize.
1345 * 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
1346 * size and position, and directly call child->AssignSizePosition() with the computed values.
1347 * 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
1348 * then we call the child.
1351 /* First loop: Find biggest stepsize, find number of children that want a piece of the pie, handle vertical size for all children,
1352 * handle horizontal size for non-resizing children.
1354 int num_changing_childs = 0; // Number of children that can change size.
1355 uint biggest_stepsize = 0;
1356 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1357 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1358 if (hor_step > 0) {
1359 if (!(flags & NC_BIGFIRST)) num_changing_childs++;
1360 biggest_stepsize = std::max(biggest_stepsize, hor_step);
1361 } else {
1362 child_wid->current_x = child_wid->smallest_x;
1365 uint vert_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetVerticalStepSize(sizing);
1366 child_wid->current_y = ComputeMaxSize(child_wid->smallest_y, given_height - child_wid->padding_top - child_wid->padding_bottom, vert_step);
1369 /* First.5 loop: count how many children are of the biggest step size. */
1370 if ((flags & NC_BIGFIRST) && biggest_stepsize > 0) {
1371 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1372 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1373 if (hor_step == biggest_stepsize) {
1374 num_changing_childs++;
1379 /* Second loop: Allocate the additional horizontal space over the resizing children, starting with the biggest resize steps. */
1380 while (biggest_stepsize > 0) {
1381 uint next_biggest_stepsize = 0;
1382 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1383 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1384 if (hor_step > biggest_stepsize) continue; // Already done
1385 if (hor_step == biggest_stepsize) {
1386 uint increment = additional_length / num_changing_childs;
1387 num_changing_childs--;
1388 if (hor_step > 1) increment -= increment % hor_step;
1389 child_wid->current_x = child_wid->smallest_x + increment;
1390 additional_length -= increment;
1391 continue;
1393 next_biggest_stepsize = std::max(next_biggest_stepsize, hor_step);
1395 biggest_stepsize = next_biggest_stepsize;
1397 if (num_changing_childs == 0 && (flags & NC_BIGFIRST) && biggest_stepsize > 0) {
1398 /* Second.5 loop: count how many children are of the updated biggest step size. */
1399 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1400 uint hor_step = child_wid->GetHorizontalStepSize(sizing);
1401 if (hor_step == biggest_stepsize) {
1402 num_changing_childs++;
1407 assert(num_changing_childs == 0);
1409 /* Third loop: Compute position and call the child. */
1410 uint position = rtl ? this->current_x : 0; // Place to put next child relative to origin of the container.
1411 NWidgetBase *child_wid = this->head;
1412 while (child_wid != nullptr) {
1413 uint child_width = child_wid->current_x;
1414 uint child_x = x + (rtl ? position - child_width - child_wid->padding_left : position + child_wid->padding_left);
1415 uint child_y = y + child_wid->padding_top;
1417 child_wid->AssignSizePosition(sizing, child_x, child_y, child_width, child_wid->current_y, rtl);
1418 uint padded_child_width = child_width + child_wid->padding_right + child_wid->padding_left;
1419 position = rtl ? position - padded_child_width : position + padded_child_width;
1421 child_wid = child_wid->next;
1425 /** Horizontal left-to-right container widget. */
1426 NWidgetHorizontalLTR::NWidgetHorizontalLTR(NWidContainerFlags flags) : NWidgetHorizontal(flags)
1428 this->type = NWID_HORIZONTAL_LTR;
1431 void NWidgetHorizontalLTR::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1433 NWidgetHorizontal::AssignSizePosition(sizing, x, y, given_width, given_height, false);
1436 /** Vertical container widget. */
1437 NWidgetVertical::NWidgetVertical(NWidContainerFlags flags) : NWidgetPIPContainer(NWID_VERTICAL, flags)
1441 void NWidgetVertical::SetupSmallestSize(Window *w, bool init_array)
1443 this->smallest_x = 0; // Biggest child.
1444 this->smallest_y = 0; // Sum of minimal size of all children.
1445 this->fill_x = 1; // smallest common child fill step.
1446 this->fill_y = 0; // smallest non-zero child widget fill step.
1447 this->resize_x = 1; // smallest common child resize step.
1448 this->resize_y = 0; // smallest non-zero child widget resize step.
1450 /* 1a. Forward call, collect biggest nested array index, and longest/widest child length. */
1451 uint highest = 0; // Highest child found.
1452 uint max_hor_fill = 0; // Biggest horizontal fill step.
1453 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1454 child_wid->SetupSmallestSize(w, init_array);
1455 highest = std::max(highest, child_wid->smallest_y);
1456 max_hor_fill = std::max(max_hor_fill, child_wid->GetHorizontalStepSize(ST_SMALLEST));
1457 this->smallest_x = std::max(this->smallest_x, child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right);
1459 /* 1b. Make the container wider if needed to accommodate all children nicely. */
1460 [[maybe_unused]] uint max_smallest = this->smallest_x + 3 * max_hor_fill; // Upper limit to computing smallest height.
1461 uint cur_width = this->smallest_x;
1462 for (;;) {
1463 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1464 uint step_size = child_wid->GetHorizontalStepSize(ST_SMALLEST);
1465 uint child_width = child_wid->smallest_x + child_wid->padding_left + child_wid->padding_right;
1466 if (step_size > 1 && child_width < cur_width) { // Small step sizes or already fitting children are not interesting.
1467 uint remainder = (cur_width - child_width) % step_size;
1468 if (remainder > 0) { // Child did not fit entirely, widen the container.
1469 cur_width += step_size - remainder;
1470 assert(cur_width < max_smallest); // Safeguard against infinite width expansion.
1471 /* Remaining children will adapt to the new cur_width, thus speeding up the computation. */
1475 if (this->smallest_x == cur_width) break;
1476 this->smallest_x = cur_width; // Smallest width got changed, try again.
1478 /* 2. For containers that must maintain equal width, extend children minimal size. */
1479 if (this->flags & NC_EQUALSIZE) {
1480 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1481 if (child_wid->fill_y == 1) child_wid->smallest_y = highest;
1484 /* 3. Move PIP space to the child, compute smallest, fill, and resize values of the container. */
1485 if (this->head != nullptr) this->head->padding_top += this->pip_pre;
1486 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1487 if (child_wid->next != nullptr) {
1488 child_wid->padding_bottom += this->pip_inter;
1489 } else {
1490 child_wid->padding_bottom += this->pip_post;
1493 this->smallest_y += child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1494 if (child_wid->fill_y > 0) {
1495 if (this->fill_y == 0 || this->fill_y > child_wid->fill_y) this->fill_y = child_wid->fill_y;
1497 this->fill_x = LeastCommonMultiple(this->fill_x, child_wid->fill_x);
1499 if (child_wid->resize_y > 0) {
1500 if (this->resize_y == 0 || this->resize_y > child_wid->resize_y) this->resize_y = child_wid->resize_y;
1502 this->resize_x = LeastCommonMultiple(this->resize_x, child_wid->resize_x);
1504 /* We need to zero the PIP settings so we can re-initialize the tree. */
1505 this->pip_pre = this->pip_inter = this->pip_post = 0;
1508 void NWidgetVertical::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1510 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1512 /* Compute additional height given to us. */
1513 uint additional_length = given_height;
1514 if (sizing == ST_SMALLEST && (this->flags & NC_EQUALSIZE)) {
1515 /* For EQUALSIZE containers this does not sum to smallest_y during initialisation */
1516 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1517 additional_length -= child_wid->smallest_y + child_wid->padding_top + child_wid->padding_bottom;
1519 } else {
1520 additional_length -= this->smallest_y;
1523 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1525 /* Like the horizontal container, the vertical container also distributes additional height evenly, starting with the children with the biggest resize steps.
1526 * It also stores computed widths and heights into current_x and current_y values of the child.
1529 /* 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. */
1530 int num_changing_childs = 0; // Number of children that can change size.
1531 uint biggest_stepsize = 0;
1532 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1533 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1534 if (vert_step > 0) {
1535 if (!(flags & NC_BIGFIRST)) num_changing_childs++;
1536 biggest_stepsize = std::max(biggest_stepsize, vert_step);
1537 } else {
1538 child_wid->current_y = child_wid->smallest_y;
1541 uint hor_step = (sizing == ST_SMALLEST) ? 1 : child_wid->GetHorizontalStepSize(sizing);
1542 child_wid->current_x = ComputeMaxSize(child_wid->smallest_x, given_width - child_wid->padding_left - child_wid->padding_right, hor_step);
1545 /* First.5 loop: count how many children are of the biggest step size. */
1546 if ((this->flags & NC_BIGFIRST) && biggest_stepsize > 0) {
1547 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1548 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1549 if (vert_step == biggest_stepsize) {
1550 num_changing_childs++;
1555 /* Second loop: Allocate the additional vertical space over the resizing children, starting with the biggest resize steps. */
1556 while (biggest_stepsize > 0) {
1557 uint next_biggest_stepsize = 0;
1558 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1559 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1560 if (vert_step > biggest_stepsize) continue; // Already done
1561 if (vert_step == biggest_stepsize) {
1562 uint increment = additional_length / num_changing_childs;
1563 num_changing_childs--;
1564 if (vert_step > 1) increment -= increment % vert_step;
1565 child_wid->current_y = child_wid->smallest_y + increment;
1566 additional_length -= increment;
1567 continue;
1569 next_biggest_stepsize = std::max(next_biggest_stepsize, vert_step);
1571 biggest_stepsize = next_biggest_stepsize;
1573 if (num_changing_childs == 0 && (flags & NC_BIGFIRST) && biggest_stepsize > 0) {
1574 /* Second.5 loop: count how many children are of the updated biggest step size. */
1575 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1576 uint vert_step = child_wid->GetVerticalStepSize(sizing);
1577 if (vert_step == biggest_stepsize) {
1578 num_changing_childs++;
1583 assert(num_changing_childs == 0);
1585 /* Third loop: Compute position and call the child. */
1586 uint position = 0; // Place to put next child relative to origin of the container.
1587 for (NWidgetBase *child_wid = this->head; child_wid != nullptr; child_wid = child_wid->next) {
1588 uint child_x = x + (rtl ? child_wid->padding_right : child_wid->padding_left);
1589 uint child_height = child_wid->current_y;
1591 child_wid->AssignSizePosition(sizing, child_x, y + position + child_wid->padding_top, child_wid->current_x, child_height, rtl);
1592 position += child_height + child_wid->padding_top + child_wid->padding_bottom;
1597 * Generic spacer widget.
1598 * @param width Horizontal size of the spacer widget.
1599 * @param height Vertical size of the spacer widget.
1601 NWidgetSpacer::NWidgetSpacer(int width, int height) : NWidgetResizeBase(NWID_SPACER, 0, 0)
1603 this->SetMinimalSize(width, height);
1604 this->SetResize(0, 0);
1607 void NWidgetSpacer::SetupSmallestSize(Window *w, bool init_array)
1609 this->smallest_x = this->min_x;
1610 this->smallest_y = this->min_y;
1613 void NWidgetSpacer::FillNestedArray(NWidgetBase **array, uint length)
1617 void NWidgetSpacer::Draw(const Window *w)
1619 /* Spacer widget is never visible. */
1622 void NWidgetSpacer::SetDirty(const Window *w) const
1624 /* Spacer widget never need repainting. */
1627 NWidgetCore *NWidgetSpacer::GetWidgetFromPos(int x, int y)
1629 return nullptr;
1632 NWidgetMatrix::NWidgetMatrix() : NWidgetPIPContainer(NWID_MATRIX, NC_EQUALSIZE), index(-1), clicked(-1), count(-1)
1636 void NWidgetMatrix::SetIndex(int index)
1638 this->index = index;
1641 void NWidgetMatrix::SetColour(Colours colour)
1643 this->colour = colour;
1647 * Sets the clicked widget in the matrix.
1648 * @param clicked The clicked widget.
1650 void NWidgetMatrix::SetClicked(int clicked)
1652 this->clicked = clicked;
1653 if (this->clicked >= 0 && this->sb != nullptr && this->widgets_x != 0) {
1654 int vpos = (this->clicked / this->widgets_x) * this->widget_h; // Vertical position of the top.
1655 /* Need to scroll down -> Scroll to the bottom.
1656 * However, last entry has no 'this->pip_inter' underneath, and we must stay below this->sb->GetCount() */
1657 if (this->sb->GetPosition() < vpos) vpos += this->widget_h - this->pip_inter - 1;
1658 this->sb->ScrollTowards(vpos);
1663 * Set the number of elements in this matrix.
1664 * @note Updates the number of elements/capacity of the real scrollbar.
1665 * @param count The number of elements.
1667 void NWidgetMatrix::SetCount(int count)
1669 this->count = count;
1671 if (this->sb == nullptr || this->widgets_x == 0) return;
1673 /* We need to get the number of pixels the matrix is high/wide.
1674 * So, determine the number of rows/columns based on the number of
1675 * columns/rows (one is constant/unscrollable).
1676 * Then multiply that by the height of a widget, and add the pre
1677 * and post spacing "offsets". */
1678 count = CeilDiv(count, this->sb->IsVertical() ? this->widgets_x : this->widgets_y);
1679 count *= (this->sb->IsVertical() ? this->head->smallest_y : this->head->smallest_x) + this->pip_inter;
1680 if (count > 0) count -= this->pip_inter; // We counted an inter too much in the multiplication above
1681 count += this->pip_pre + this->pip_post;
1682 this->sb->SetCount(count);
1683 this->sb->SetCapacity(this->sb->IsVertical() ? this->current_y : this->current_x);
1684 this->sb->SetStepSize(this->sb->IsVertical() ? this->widget_h : this->widget_w);
1688 * Assign a scrollbar to this matrix.
1689 * @param sb The scrollbar to assign to us.
1691 void NWidgetMatrix::SetScrollbar(Scrollbar *sb)
1693 this->sb = sb;
1696 void NWidgetMatrix::SetupSmallestSize(Window *w, bool init_array)
1698 assert(this->head != nullptr);
1699 assert(this->head->next == nullptr);
1701 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
1702 assert(w->nested_array_size > (uint)this->index);
1703 w->nested_array[this->index] = this;
1706 /* Reset the widget number. */
1707 NWidgetCore *nw = dynamic_cast<NWidgetCore *>(this->head);
1708 assert(nw != nullptr);
1709 SB(nw->index, 16, 16, 0);
1710 this->head->SetupSmallestSize(w, init_array);
1712 Dimension padding = { (uint)this->pip_pre + this->pip_post, (uint)this->pip_pre + this->pip_post};
1713 Dimension size = {this->head->smallest_x + padding.width, this->head->smallest_y + padding.height};
1714 Dimension fill = {0, 0};
1715 Dimension resize = {this->pip_inter + this->head->smallest_x, this->pip_inter + this->head->smallest_y};
1717 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, padding, &fill, &resize);
1719 this->smallest_x = size.width;
1720 this->smallest_y = size.height;
1721 this->fill_x = fill.width;
1722 this->fill_y = fill.height;
1723 this->resize_x = resize.width;
1724 this->resize_y = resize.height;
1727 void NWidgetMatrix::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1729 assert(given_width >= this->smallest_x && given_height >= this->smallest_y);
1731 this->pos_x = x;
1732 this->pos_y = y;
1733 this->current_x = given_width;
1734 this->current_y = given_height;
1736 /* Determine the size of the widgets, and the number of visible widgets on each of the axis. */
1737 this->widget_w = this->head->smallest_x + this->pip_inter;
1738 this->widget_h = this->head->smallest_y + this->pip_inter;
1740 /* Account for the pip_inter is between widgets, so we need to account for that when
1741 * the division assumes pip_inter is used for all widgets. */
1742 this->widgets_x = CeilDiv(this->current_x - this->pip_pre - this->pip_post + this->pip_inter, this->widget_w);
1743 this->widgets_y = CeilDiv(this->current_y - this->pip_pre - this->pip_post + this->pip_inter, this->widget_h);
1745 /* When resizing, update the scrollbar's count. E.g. with a vertical
1746 * scrollbar becoming wider or narrower means the amount of rows in
1747 * the scrollbar becomes respectively smaller or higher. */
1748 this->SetCount(this->count);
1751 void NWidgetMatrix::FillNestedArray(NWidgetBase **array, uint length)
1753 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
1754 NWidgetContainer::FillNestedArray(array, length);
1757 NWidgetCore *NWidgetMatrix::GetWidgetFromPos(int x, int y)
1759 /* Falls outside of the matrix widget. */
1760 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return nullptr;
1762 int start_x, start_y, base_offs_x, base_offs_y;
1763 this->GetScrollOffsets(start_x, start_y, base_offs_x, base_offs_y);
1765 bool rtl = _current_text_dir == TD_RTL;
1767 int widget_col = (rtl ?
1768 -x + (int)this->pip_post + (int)this->pos_x + base_offs_x + (int)this->widget_w - 1 - (int)this->pip_inter :
1769 x - (int)this->pip_pre - (int)this->pos_x - base_offs_x
1770 ) / this->widget_w;
1772 int widget_row = (y - base_offs_y - (int)this->pip_pre - (int)this->pos_y) / this->widget_h;
1774 int sub_wid = (widget_row + start_y) * this->widgets_x + start_x + widget_col;
1775 if (sub_wid >= this->count) return nullptr;
1777 NWidgetCore *child = dynamic_cast<NWidgetCore *>(this->head);
1778 assert(child != nullptr);
1779 child->AssignSizePosition(ST_RESIZE,
1780 this->pos_x + (rtl ? this->pip_post - widget_col * this->widget_w : this->pip_pre + widget_col * this->widget_w) + base_offs_x,
1781 this->pos_y + this->pip_pre + widget_row * this->widget_h + base_offs_y,
1782 child->smallest_x, child->smallest_y, rtl);
1784 SB(child->index, 16, 16, sub_wid);
1786 return child->GetWidgetFromPos(x, y);
1789 /* virtual */ void NWidgetMatrix::Draw(const Window *w)
1791 /* Fill the background. */
1792 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]);
1794 /* Set up a clipping area for the previews. */
1795 bool rtl = _current_text_dir == TD_RTL;
1796 DrawPixelInfo tmp_dpi;
1797 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;
1798 DrawPixelInfo *old_dpi = _cur_dpi;
1799 _cur_dpi = &tmp_dpi;
1801 /* Get the appropriate offsets so we can draw the right widgets. */
1802 NWidgetCore *child = dynamic_cast<NWidgetCore *>(this->head);
1803 assert(child != nullptr);
1804 int start_x, start_y, base_offs_x, base_offs_y;
1805 this->GetScrollOffsets(start_x, start_y, base_offs_x, base_offs_y);
1807 int offs_y = base_offs_y;
1808 for (int y = start_y; y < start_y + this->widgets_y + 1; y++, offs_y += this->widget_h) {
1809 /* Are we within bounds? */
1810 if (offs_y + child->smallest_y <= 0) continue;
1811 if (offs_y >= (int)this->current_y) break;
1813 /* We've passed our amount of widgets. */
1814 if (y * this->widgets_x >= this->count) break;
1816 int offs_x = base_offs_x;
1817 for (int x = start_x; x < start_x + this->widgets_x + 1; x++, offs_x += rtl ? -this->widget_w : this->widget_w) {
1818 /* Are we within bounds? */
1819 if (offs_x + child->smallest_x <= 0) continue;
1820 if (offs_x >= (int)this->current_x) continue;
1822 /* Do we have this many widgets? */
1823 int sub_wid = y * this->widgets_x + x;
1824 if (sub_wid >= this->count) break;
1826 child->AssignSizePosition(ST_RESIZE, offs_x, offs_y, child->smallest_x, child->smallest_y, rtl);
1827 child->SetLowered(this->clicked == sub_wid);
1828 SB(child->index, 16, 16, sub_wid);
1829 child->Draw(w);
1833 /* Restore the clipping area. */
1834 _cur_dpi = old_dpi;
1838 * Get the different offsets that are influenced by scrolling.
1839 * @param[out] start_x The start position in columns (index of the left-most column, swapped in RTL).
1840 * @param[out] start_y The start position in rows.
1841 * @param[out] base_offs_x The base horizontal offset in pixels (X position of the column \a start_x).
1842 * @param[out] base_offs_y The base vertical offset in pixels (Y position of the column \a start_y).
1844 void NWidgetMatrix::GetScrollOffsets(int &start_x, int &start_y, int &base_offs_x, int &base_offs_y)
1846 base_offs_x = _current_text_dir == TD_RTL ? this->widget_w * (this->widgets_x - 1) : 0;
1847 base_offs_y = 0;
1848 start_x = 0;
1849 start_y = 0;
1850 if (this->sb != nullptr) {
1851 if (this->sb->IsVertical()) {
1852 start_y = this->sb->GetPosition() / this->widget_h;
1853 base_offs_y += -this->sb->GetPosition() + start_y * this->widget_h;
1854 } else {
1855 start_x = this->sb->GetPosition() / this->widget_w;
1856 int sub_x = this->sb->GetPosition() - start_x * this->widget_w;
1857 if (_current_text_dir == TD_RTL) {
1858 base_offs_x += sub_x;
1859 } else {
1860 base_offs_x -= sub_x;
1867 * Constructor parent nested widgets.
1868 * @param tp Type of parent widget.
1869 * @param colour Colour of the parent widget.
1870 * @param index Index in the widget array used by the window system.
1871 * @param child Child container widget (if supplied). If not supplied, a
1872 * vertical container will be inserted while adding the first
1873 * child widget.
1875 NWidgetBackground::NWidgetBackground(WidgetType tp, Colours colour, int index, NWidgetPIPContainer *child) : NWidgetCore(tp, colour, 1, 1, 0x0, STR_NULL)
1877 assert(tp == WWT_PANEL || tp == WWT_INSET || tp == WWT_FRAME);
1878 if (index >= 0) this->SetIndex(index);
1879 this->child = child;
1880 this->SetAlignment(SA_TOP | SA_LEFT);
1883 NWidgetBackground::~NWidgetBackground()
1885 if (this->child != nullptr) delete this->child;
1889 * Add a child to the parent.
1890 * @param nwid Nested widget to add to the background widget.
1892 * Unless a child container has been given in the constructor, a parent behaves as a vertical container.
1893 * You can add several children to it, and they are put underneath each other.
1895 void NWidgetBackground::Add(NWidgetBase *nwid)
1897 if (this->child == nullptr) {
1898 this->child = new NWidgetVertical();
1900 this->child->Add(nwid);
1904 * Set additional pre/inter/post space for the background widget.
1906 * @param pip_pre Additional space in front of the first child widget (above
1907 * for the vertical container, at the left for the horizontal container).
1908 * @param pip_inter Additional space between two child widgets.
1909 * @param pip_post Additional space after the last child widget (below for the
1910 * vertical container, at the right for the horizontal container).
1911 * @note Using this function implies that the widget has (or will have) child widgets.
1913 void NWidgetBackground::SetPIP(uint8 pip_pre, uint8 pip_inter, uint8 pip_post)
1915 if (this->child == nullptr) {
1916 this->child = new NWidgetVertical();
1918 this->child->SetPIP(pip_pre, pip_inter, pip_post);
1921 void NWidgetBackground::AdjustPaddingForZoom()
1923 if (child != nullptr) child->AdjustPaddingForZoom();
1924 NWidgetCore::AdjustPaddingForZoom();
1927 void NWidgetBackground::SetupSmallestSize(Window *w, bool init_array)
1929 if (init_array && this->index >= 0) {
1930 assert(w->nested_array_size > (uint)this->index);
1931 w->nested_array[this->index] = this;
1933 if (this->child != nullptr) {
1934 this->child->SetupSmallestSize(w, init_array);
1936 this->smallest_x = this->child->smallest_x;
1937 this->smallest_y = this->child->smallest_y;
1938 this->fill_x = this->child->fill_x;
1939 this->fill_y = this->child->fill_y;
1940 this->resize_x = this->child->resize_x;
1941 this->resize_y = this->child->resize_y;
1943 /* Don't apply automatic padding if there is no child widget. */
1944 if (w == nullptr) return;
1946 if (this->type == WWT_FRAME) {
1947 /* Account for the size of the frame's text if that exists */
1948 this->child->padding_left = WD_FRAMETEXT_LEFT;
1949 this->child->padding_right = WD_FRAMETEXT_RIGHT;
1950 this->child->padding_top = std::max((int)WD_FRAMETEXT_TOP, this->widget_data != STR_NULL ? FONT_HEIGHT_NORMAL + WD_FRAMETEXT_TOP / 2 : 0);
1951 this->child->padding_bottom = WD_FRAMETEXT_BOTTOM;
1953 this->smallest_x += this->child->padding_left + this->child->padding_right;
1954 this->smallest_y += this->child->padding_top + this->child->padding_bottom;
1956 if (this->index >= 0) w->SetStringParameters(this->index);
1957 this->smallest_x = std::max(this->smallest_x, GetStringBoundingBox(this->widget_data).width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT);
1958 } else if (this->type == WWT_INSET) {
1959 /* Apply automatic padding for bevel thickness. */
1960 this->child->padding_left = WD_BEVEL_LEFT;
1961 this->child->padding_right = WD_BEVEL_RIGHT;
1962 this->child->padding_top = WD_BEVEL_TOP;
1963 this->child->padding_bottom = WD_BEVEL_BOTTOM;
1965 this->smallest_x += this->child->padding_left + this->child->padding_right;
1966 this->smallest_y += this->child->padding_top + this->child->padding_bottom;
1968 } else {
1969 Dimension d = {this->min_x, this->min_y};
1970 Dimension fill = {this->fill_x, this->fill_y};
1971 Dimension resize = {this->resize_x, this->resize_y};
1972 if (w != nullptr) { // A non-nullptr window pointer acts as switch to turn dynamic widget size on.
1973 if (this->type == WWT_FRAME || this->type == WWT_INSET) {
1974 if (this->index >= 0) w->SetStringParameters(this->index);
1975 Dimension background = GetStringBoundingBox(this->widget_data);
1976 background.width += (this->type == WWT_FRAME) ? (WD_FRAMETEXT_LEFT + WD_FRAMERECT_RIGHT) : (WD_INSET_LEFT + WD_INSET_RIGHT);
1977 d = maxdim(d, background);
1979 if (this->index >= 0) {
1980 static const Dimension padding = {0, 0};
1981 w->UpdateWidgetSize(this->index, &d, padding, &fill, &resize);
1984 this->smallest_x = d.width;
1985 this->smallest_y = d.height;
1986 this->fill_x = fill.width;
1987 this->fill_y = fill.height;
1988 this->resize_x = resize.width;
1989 this->resize_y = resize.height;
1993 void NWidgetBackground::AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1995 this->StoreSizePosition(sizing, x, y, given_width, given_height);
1997 if (this->child != nullptr) {
1998 uint x_offset = (rtl ? this->child->padding_right : this->child->padding_left);
1999 uint width = given_width - this->child->padding_right - this->child->padding_left;
2000 uint height = given_height - this->child->padding_top - this->child->padding_bottom;
2001 this->child->AssignSizePosition(sizing, x + x_offset, y + this->child->padding_top, width, height, rtl);
2005 void NWidgetBackground::FillNestedArray(NWidgetBase **array, uint length)
2007 if (this->index >= 0 && (uint)(this->index) < length) array[this->index] = this;
2008 if (this->child != nullptr) this->child->FillNestedArray(array, length);
2011 void NWidgetBackground::Draw(const Window *w)
2013 if (this->current_x == 0 || this->current_y == 0) return;
2015 Rect r = this->GetCurrentRect();
2017 const DrawPixelInfo *dpi = _cur_dpi;
2018 if (dpi->left > r.right || dpi->left + dpi->width <= r.left || dpi->top > r.bottom || dpi->top + dpi->height <= r.top) return;
2020 switch (this->type) {
2021 case WWT_PANEL:
2022 assert(this->widget_data == 0);
2023 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, this->IsLowered() ? FR_LOWERED : FR_NONE);
2024 break;
2026 case WWT_FRAME:
2027 if (this->index >= 0) w->SetStringParameters(this->index);
2028 DrawFrame(r, this->colour, this->text_colour, this->widget_data, this->align);
2029 break;
2031 case WWT_INSET:
2032 if (this->index >= 0) w->SetStringParameters(this->index);
2033 DrawInset(r, this->colour, this->text_colour, this->widget_data, this->align);
2034 break;
2036 default:
2037 NOT_REACHED();
2040 if (this->index >= 0) w->DrawWidget(r, this->index);
2041 if (this->child != nullptr) this->child->Draw(w);
2043 if (this->IsDisabled()) {
2044 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
2048 NWidgetCore *NWidgetBackground::GetWidgetFromPos(int x, int y)
2050 NWidgetCore *nwid = nullptr;
2051 if (IsInsideBS(x, this->pos_x, this->current_x) && IsInsideBS(y, this->pos_y, this->current_y)) {
2052 if (this->child != nullptr) nwid = this->child->GetWidgetFromPos(x, y);
2053 if (nwid == nullptr) nwid = this;
2055 return nwid;
2058 NWidgetBase *NWidgetBackground::GetWidgetOfType(WidgetType tp)
2060 NWidgetBase *nwid = nullptr;
2061 if (this->child != nullptr) nwid = this->child->GetWidgetOfType(tp);
2062 if (nwid == nullptr && this->type == tp) nwid = this;
2063 return nwid;
2066 NWidgetViewport::NWidgetViewport(int index) : NWidgetCore(NWID_VIEWPORT, INVALID_COLOUR, 1, 1, 0x0, STR_NULL)
2068 this->SetIndex(index);
2071 void NWidgetViewport::SetupSmallestSize(Window *w, bool init_array)
2073 if (init_array && this->index >= 0) {
2074 assert(w->nested_array_size > (uint)this->index);
2075 w->nested_array[this->index] = this;
2077 this->smallest_x = this->min_x;
2078 this->smallest_y = this->min_y;
2081 void NWidgetViewport::Draw(const Window *w)
2083 if (this->current_x == 0 || this->current_y == 0) return;
2085 if (this->disp_flags & ND_NO_TRANSPARENCY) {
2086 TransparencyOptionBits to_backup = _transparency_opt;
2087 _transparency_opt &= (1 << TO_SIGNS) | (1 << TO_LOADING); // Disable all transparency, except textual stuff
2088 w->DrawViewport();
2089 _transparency_opt = to_backup;
2090 } else {
2091 w->DrawViewport();
2094 /* Optionally shade the viewport. */
2095 if (this->disp_flags & (ND_SHADE_GREY | ND_SHADE_DIMMED)) {
2096 GfxFillRect(this->pos_x, this->pos_y, this->pos_x + this->current_x - 1, this->pos_y + this->current_y - 1,
2097 (this->disp_flags & ND_SHADE_DIMMED) ? PALETTE_TO_TRANSPARENT : PALETTE_NEWSPAPER, FILLRECT_RECOLOUR);
2102 * Initialize the viewport of the window.
2103 * @param w Window owning the viewport.
2104 * @param follow_flags Type of viewport, see #InitializeWindowViewport().
2105 * @param zoom Zoom level.
2107 void NWidgetViewport::InitializeViewport(Window *w, uint32 follow_flags, ZoomLevel zoom)
2109 InitializeWindowViewport(w, this->pos_x, this->pos_y, this->current_x, this->current_y, follow_flags, zoom);
2113 * Update the position and size of the viewport (after eg a resize).
2114 * @param w Window owning the viewport.
2116 void NWidgetViewport::UpdateViewportCoordinates(Window *w)
2118 Viewport *vp = w->viewport;
2119 if (vp != nullptr) {
2120 vp->left = w->left + this->pos_x;
2121 vp->top = w->top + this->pos_y;
2122 vp->width = this->current_x;
2123 vp->height = this->current_y;
2125 vp->virtual_width = ScaleByZoom(vp->width, vp->zoom);
2126 vp->virtual_height = ScaleByZoom(vp->height, vp->zoom);
2131 * Compute the row of a scrolled widget that a user clicked in.
2132 * @param clickpos Vertical position of the mouse click (without taking scrolling into account).
2133 * @param w The window the click was in.
2134 * @param widget Widget number of the widget clicked in.
2135 * @param padding Amount of empty space between the widget edge and the top of the first row. Default value is \c 0.
2136 * @return Row number clicked at. If clicked at a wrong position, #INT_MAX is returned.
2138 int Scrollbar::GetScrolledRowFromWidget(int clickpos, const Window * const w, int widget, int padding) const
2140 uint pos = w->GetRowFromWidget(clickpos, widget, padding, -1);
2141 if (pos != INT_MAX) pos += this->GetPosition();
2142 return (pos >= this->GetCount()) ? INT_MAX : pos;
2146 * Update the given list position as if it were on this scroll bar when the given keycode was pressed.
2147 * This does not update the actual position of this scroll bar, that is left to the caller. It does,
2148 * however use the capacity and count of the scroll bar for the bounds and amount to scroll.
2150 * When the count is 0 or the return is ES_NOT_HANDLED, then the position is not updated.
2151 * With WKC_UP and WKC_DOWN the position goes one up or down respectively.
2152 * With WKC_PAGEUP and WKC_PAGEDOWN the position goes one capacity up or down respectively.
2153 * With WKC_HOME the first position is selected and with WKC_END the last position is selected.
2154 * This function ensures that pos is in the range [0..count).
2155 * @param list_position The current position in the list.
2156 * @param key_code The pressed key code.
2157 * @return ES_NOT_HANDLED when another key than the 6 specific keys was pressed, otherwise ES_HANDLED.
2159 EventState Scrollbar::UpdateListPositionOnKeyPress(int &list_position, uint16 keycode) const
2161 int new_pos = list_position;
2162 switch (keycode) {
2163 case WKC_UP:
2164 /* scroll up by one */
2165 new_pos--;
2166 break;
2168 case WKC_DOWN:
2169 /* scroll down by one */
2170 new_pos++;
2171 break;
2173 case WKC_PAGEUP:
2174 /* scroll up a page */
2175 new_pos -= this->GetCapacity();
2176 break;
2178 case WKC_PAGEDOWN:
2179 /* scroll down a page */
2180 new_pos += this->GetCapacity();
2181 break;
2183 case WKC_HOME:
2184 /* jump to beginning */
2185 new_pos = 0;
2186 break;
2188 case WKC_END:
2189 /* jump to end */
2190 new_pos = this->GetCount() - 1;
2191 break;
2193 default:
2194 return ES_NOT_HANDLED;
2197 /* If there are no elements, there is nothing to scroll/update. */
2198 if (this->GetCount() != 0) {
2199 list_position = Clamp(new_pos, 0, this->GetCount() - 1);
2201 return ES_HANDLED;
2206 * Set capacity of visible elements from the size and resize properties of a widget.
2207 * @param w Window.
2208 * @param widget Widget with size and resize properties.
2209 * @param padding Padding to subtract from the size.
2210 * @note Updates the position if needed.
2212 void Scrollbar::SetCapacityFromWidget(Window *w, int widget, int padding)
2214 NWidgetBase *nwid = w->GetWidget<NWidgetBase>(widget);
2215 if (this->IsVertical()) {
2216 this->SetCapacity(((int)nwid->current_y - padding) / (int)nwid->resize_y);
2217 } else {
2218 this->SetCapacity(((int)nwid->current_x - padding) / (int)nwid->resize_x);
2223 * Scrollbar widget.
2224 * @param tp Scrollbar type. (horizontal/vertical)
2225 * @param colour Colour of the scrollbar.
2226 * @param index Index in the widget array used by the window system.
2228 NWidgetScrollbar::NWidgetScrollbar(WidgetType tp, Colours colour, int index) : NWidgetCore(tp, colour, 1, 1, 0x0, STR_NULL), Scrollbar(tp != NWID_HSCROLLBAR)
2230 assert(tp == NWID_HSCROLLBAR || tp == NWID_VSCROLLBAR);
2231 this->SetIndex(index);
2233 switch (this->type) {
2234 case NWID_HSCROLLBAR:
2235 this->SetResize(1, 0);
2236 this->SetFill(1, 0);
2237 this->SetDataTip(0x0, STR_TOOLTIP_HSCROLL_BAR_SCROLLS_LIST);
2238 break;
2240 case NWID_VSCROLLBAR:
2241 this->SetResize(0, 1);
2242 this->SetFill(0, 1);
2243 this->SetDataTip(0x0, STR_TOOLTIP_VSCROLL_BAR_SCROLLS_LIST);
2244 break;
2246 default: NOT_REACHED();
2250 void NWidgetScrollbar::SetupSmallestSize(Window *w, bool init_array)
2252 if (init_array && this->index >= 0) {
2253 assert(w->nested_array_size > (uint)this->index);
2254 w->nested_array[this->index] = this;
2256 this->min_x = 0;
2257 this->min_y = 0;
2259 switch (this->type) {
2260 case NWID_HSCROLLBAR:
2261 this->SetMinimalSizeAbsolute(NWidgetScrollbar::GetHorizontalDimension().width * 3, NWidgetScrollbar::GetHorizontalDimension().height);
2262 break;
2264 case NWID_VSCROLLBAR:
2265 this->SetMinimalSizeAbsolute(NWidgetScrollbar::GetVerticalDimension().width, NWidgetScrollbar::GetVerticalDimension().height * 3);
2266 break;
2268 default: NOT_REACHED();
2271 this->smallest_x = this->min_x;
2272 this->smallest_y = this->min_y;
2275 void NWidgetScrollbar::Draw(const Window *w)
2277 if (this->current_x == 0 || this->current_y == 0) return;
2279 Rect r = this->GetCurrentRect();
2281 const DrawPixelInfo *dpi = _cur_dpi;
2282 if (dpi->left > r.right || dpi->left + dpi->width <= r.left || dpi->top > r.bottom || dpi->top + dpi->height <= r.top) return;
2284 bool up_lowered = HasBit(this->disp_flags, NDB_SCROLLBAR_UP);
2285 bool down_lowered = HasBit(this->disp_flags, NDB_SCROLLBAR_DOWN);
2286 bool middle_lowered = !(this->disp_flags & ND_SCROLLBAR_BTN) && w->mouse_capture_widget == this->index;
2288 if (this->type == NWID_HSCROLLBAR) {
2289 DrawHorizontalScrollbar(r, this->colour, up_lowered, middle_lowered, down_lowered, this);
2290 } else {
2291 DrawVerticalScrollbar(r, this->colour, up_lowered, middle_lowered, down_lowered, this);
2294 if (this->IsDisabled()) {
2295 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
2299 /* static */ void NWidgetScrollbar::InvalidateDimensionCache()
2301 vertical_dimension.width = vertical_dimension.height = 0;
2302 horizontal_dimension.width = horizontal_dimension.height = 0;
2305 /* static */ Dimension NWidgetScrollbar::GetVerticalDimension()
2307 static const Dimension extra = {WD_SCROLLBAR_LEFT + WD_SCROLLBAR_RIGHT, WD_SCROLLBAR_TOP + WD_SCROLLBAR_BOTTOM};
2308 if (vertical_dimension.width == 0) {
2309 vertical_dimension = maxdim(GetSpriteSize(SPR_ARROW_UP), GetSpriteSize(SPR_ARROW_DOWN));
2310 vertical_dimension.width += extra.width;
2311 vertical_dimension.height += extra.height;
2313 return vertical_dimension;
2316 /* static */ Dimension NWidgetScrollbar::GetHorizontalDimension()
2318 static const Dimension extra = {WD_SCROLLBAR_LEFT + WD_SCROLLBAR_RIGHT, WD_SCROLLBAR_TOP + WD_SCROLLBAR_BOTTOM};
2319 if (horizontal_dimension.width == 0) {
2320 horizontal_dimension = maxdim(GetSpriteSize(SPR_ARROW_LEFT), GetSpriteSize(SPR_ARROW_RIGHT));
2321 horizontal_dimension.width += extra.width;
2322 horizontal_dimension.height += extra.height;
2324 return horizontal_dimension;
2327 Dimension NWidgetScrollbar::vertical_dimension = {0, 0};
2328 Dimension NWidgetScrollbar::horizontal_dimension = {0, 0};
2330 /** Reset the cached dimensions. */
2331 /* static */ void NWidgetLeaf::InvalidateDimensionCache()
2333 shadebox_dimension.width = shadebox_dimension.height = 0;
2334 debugbox_dimension.width = debugbox_dimension.height = 0;
2335 defsizebox_dimension.width = defsizebox_dimension.height = 0;
2336 stickybox_dimension.width = stickybox_dimension.height = 0;
2337 resizebox_dimension.width = resizebox_dimension.height = 0;
2338 closebox_dimension.width = closebox_dimension.height = 0;
2339 dropdown_dimension.width = dropdown_dimension.height = 0;
2342 Dimension NWidgetLeaf::shadebox_dimension = {0, 0};
2343 Dimension NWidgetLeaf::debugbox_dimension = {0, 0};
2344 Dimension NWidgetLeaf::defsizebox_dimension = {0, 0};
2345 Dimension NWidgetLeaf::stickybox_dimension = {0, 0};
2346 Dimension NWidgetLeaf::resizebox_dimension = {0, 0};
2347 Dimension NWidgetLeaf::closebox_dimension = {0, 0};
2348 Dimension NWidgetLeaf::dropdown_dimension = {0, 0};
2351 * Nested leaf widget.
2352 * @param tp Type of leaf widget.
2353 * @param colour Colour of the leaf widget.
2354 * @param index Index in the widget array used by the window system.
2355 * @param data Data of the widget.
2356 * @param tip Tooltip of the widget.
2358 NWidgetLeaf::NWidgetLeaf(WidgetType tp, Colours colour, int index, uint32 data, StringID tip) : NWidgetCore(tp, colour, 1, 1, data, tip)
2360 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);
2361 if (index >= 0) this->SetIndex(index);
2362 this->min_x = 0;
2363 this->min_y = 0;
2364 this->SetResize(0, 0);
2366 switch (tp) {
2367 case WWT_EMPTY:
2368 break;
2370 case WWT_TEXT:
2371 this->SetFill(0, 0);
2372 this->SetAlignment(SA_LEFT | SA_VERT_CENTER);
2373 break;
2375 case WWT_PUSHBTN:
2376 case WWT_IMGBTN:
2377 case WWT_PUSHIMGBTN:
2378 case WWT_IMGBTN_2:
2379 case WWT_TEXTBTN:
2380 case WWT_PUSHTXTBTN:
2381 case WWT_TEXTBTN_2:
2382 case WWT_LABEL:
2383 case WWT_MATRIX:
2384 case NWID_BUTTON_DROPDOWN:
2385 case NWID_PUSHBUTTON_DROPDOWN:
2386 case WWT_ARROWBTN:
2387 case WWT_PUSHARROWBTN:
2388 this->SetFill(0, 0);
2389 break;
2391 case WWT_EDITBOX:
2392 this->SetFill(0, 0);
2393 break;
2395 case WWT_CAPTION:
2396 this->SetFill(1, 0);
2397 this->SetResize(1, 0);
2398 this->SetMinimalSize(0, WD_CAPTION_HEIGHT);
2399 this->SetMinimalTextLines(1, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM, FS_NORMAL);
2400 this->SetDataTip(data, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS);
2401 break;
2403 case WWT_STICKYBOX:
2404 this->SetFill(0, 0);
2405 this->SetMinimalSize(WD_STICKYBOX_WIDTH, WD_CAPTION_HEIGHT);
2406 this->SetDataTip(STR_NULL, STR_TOOLTIP_STICKY);
2407 break;
2409 case WWT_SHADEBOX:
2410 this->SetFill(0, 0);
2411 this->SetMinimalSize(WD_SHADEBOX_WIDTH, WD_CAPTION_HEIGHT);
2412 this->SetDataTip(STR_NULL, STR_TOOLTIP_SHADE);
2413 break;
2415 case WWT_DEBUGBOX:
2416 this->SetFill(0, 0);
2417 this->SetMinimalSize(WD_DEBUGBOX_WIDTH, WD_CAPTION_HEIGHT);
2418 this->SetDataTip(STR_NULL, STR_TOOLTIP_DEBUG);
2419 break;
2421 case WWT_DEFSIZEBOX:
2422 this->SetFill(0, 0);
2423 this->SetMinimalSize(WD_DEFSIZEBOX_WIDTH, WD_CAPTION_HEIGHT);
2424 this->SetDataTip(STR_NULL, STR_TOOLTIP_DEFSIZE);
2425 break;
2427 case WWT_RESIZEBOX:
2428 this->SetFill(0, 0);
2429 this->SetMinimalSize(WD_RESIZEBOX_WIDTH, 12);
2430 this->SetDataTip(STR_NULL, STR_TOOLTIP_RESIZE);
2431 break;
2433 case WWT_CLOSEBOX:
2434 this->SetFill(0, 0);
2435 this->SetMinimalSize(WD_CLOSEBOX_WIDTH, WD_CAPTION_HEIGHT);
2436 this->SetDataTip(STR_NULL, STR_TOOLTIP_CLOSE_WINDOW);
2437 break;
2439 case WWT_DROPDOWN:
2440 this->SetFill(0, 0);
2441 this->SetMinimalSize(0, WD_DROPDOWN_HEIGHT);
2442 this->SetAlignment(SA_TOP | SA_LEFT);
2443 break;
2445 default:
2446 NOT_REACHED();
2450 void NWidgetLeaf::SetupSmallestSize(Window *w, bool init_array)
2452 if (this->index >= 0 && init_array) { // Fill w->nested_array[]
2453 assert(w->nested_array_size > (uint)this->index);
2454 w->nested_array[this->index] = this;
2457 Dimension size = {this->min_x, this->min_y};
2458 Dimension fill = {this->fill_x, this->fill_y};
2459 Dimension resize = {this->resize_x, this->resize_y};
2460 /* Get padding, and update size with the real content size if appropriate. */
2461 const Dimension *padding = nullptr;
2462 switch (this->type) {
2463 case WWT_EMPTY: {
2464 static const Dimension extra = {0, 0};
2465 padding = &extra;
2466 break;
2468 case WWT_MATRIX: {
2469 static const Dimension extra = {WD_MATRIX_LEFT + WD_MATRIX_RIGHT, WD_MATRIX_TOP + WD_MATRIX_BOTTOM};
2470 padding = &extra;
2471 break;
2473 case WWT_SHADEBOX: {
2474 static const Dimension extra = {WD_SHADEBOX_LEFT + WD_SHADEBOX_RIGHT, WD_SHADEBOX_TOP + WD_SHADEBOX_BOTTOM};
2475 padding = &extra;
2476 if (NWidgetLeaf::shadebox_dimension.width == 0) {
2477 NWidgetLeaf::shadebox_dimension = maxdim(GetSpriteSize(SPR_WINDOW_SHADE), GetSpriteSize(SPR_WINDOW_UNSHADE));
2478 NWidgetLeaf::shadebox_dimension.width += extra.width;
2479 NWidgetLeaf::shadebox_dimension.height += extra.height;
2481 size = maxdim(size, NWidgetLeaf::shadebox_dimension);
2482 break;
2484 case WWT_DEBUGBOX:
2485 if (_settings_client.gui.newgrf_developer_tools && w->IsNewGRFInspectable()) {
2486 static const Dimension extra = {WD_DEBUGBOX_LEFT + WD_DEBUGBOX_RIGHT, WD_DEBUGBOX_TOP + WD_DEBUGBOX_BOTTOM};
2487 padding = &extra;
2488 if (NWidgetLeaf::debugbox_dimension.width == 0) {
2489 NWidgetLeaf::debugbox_dimension = GetSpriteSize(SPR_WINDOW_DEBUG);
2490 NWidgetLeaf::debugbox_dimension.width += extra.width;
2491 NWidgetLeaf::debugbox_dimension.height += extra.height;
2493 size = maxdim(size, NWidgetLeaf::debugbox_dimension);
2494 } else {
2495 /* If the setting is disabled we don't want to see it! */
2496 size.width = 0;
2497 fill.width = 0;
2498 resize.width = 0;
2500 break;
2502 case WWT_STICKYBOX: {
2503 static const Dimension extra = {WD_STICKYBOX_LEFT + WD_STICKYBOX_RIGHT, WD_STICKYBOX_TOP + WD_STICKYBOX_BOTTOM};
2504 padding = &extra;
2505 if (NWidgetLeaf::stickybox_dimension.width == 0) {
2506 NWidgetLeaf::stickybox_dimension = maxdim(GetSpriteSize(SPR_PIN_UP), GetSpriteSize(SPR_PIN_DOWN));
2507 NWidgetLeaf::stickybox_dimension.width += extra.width;
2508 NWidgetLeaf::stickybox_dimension.height += extra.height;
2510 size = maxdim(size, NWidgetLeaf::stickybox_dimension);
2511 break;
2514 case WWT_DEFSIZEBOX: {
2515 static const Dimension extra = {WD_DEFSIZEBOX_LEFT + WD_DEFSIZEBOX_RIGHT, WD_DEFSIZEBOX_TOP + WD_DEFSIZEBOX_BOTTOM};
2516 padding = &extra;
2517 if (NWidgetLeaf::defsizebox_dimension.width == 0) {
2518 NWidgetLeaf::defsizebox_dimension = GetSpriteSize(SPR_WINDOW_DEFSIZE);
2519 NWidgetLeaf::defsizebox_dimension.width += extra.width;
2520 NWidgetLeaf::defsizebox_dimension.height += extra.height;
2522 size = maxdim(size, NWidgetLeaf::defsizebox_dimension);
2523 break;
2526 case WWT_RESIZEBOX: {
2527 static const Dimension extra = {WD_RESIZEBOX_LEFT + WD_RESIZEBOX_RIGHT, WD_RESIZEBOX_TOP + WD_RESIZEBOX_BOTTOM};
2528 padding = &extra;
2529 if (NWidgetLeaf::resizebox_dimension.width == 0) {
2530 NWidgetLeaf::resizebox_dimension = maxdim(GetSpriteSize(SPR_WINDOW_RESIZE_LEFT), GetSpriteSize(SPR_WINDOW_RESIZE_RIGHT));
2531 NWidgetLeaf::resizebox_dimension.width += extra.width;
2532 NWidgetLeaf::resizebox_dimension.height += extra.height;
2534 size = maxdim(size, NWidgetLeaf::resizebox_dimension);
2535 break;
2537 case WWT_EDITBOX: {
2538 Dimension sprite_size = GetSpriteSize(_current_text_dir == TD_RTL ? SPR_IMG_DELETE_RIGHT : SPR_IMG_DELETE_LEFT);
2539 size.width = std::max(size.width, 30 + sprite_size.width);
2540 size.height = std::max(sprite_size.height, GetStringBoundingBox("_").height + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM);
2542 FALLTHROUGH;
2543 case WWT_PUSHBTN: {
2544 static const Dimension extra = {WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM};
2545 padding = &extra;
2546 break;
2548 case WWT_IMGBTN:
2549 case WWT_IMGBTN_2:
2550 case WWT_PUSHIMGBTN: {
2551 static const Dimension extra = {WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT, WD_IMGBTN_TOP + WD_IMGBTN_BOTTOM};
2552 padding = &extra;
2553 Dimension d2 = GetSpriteSize(this->widget_data);
2554 if (this->type == WWT_IMGBTN_2) d2 = maxdim(d2, GetSpriteSize(this->widget_data + 1));
2555 d2.width += extra.width;
2556 d2.height += extra.height;
2557 size = maxdim(size, d2);
2558 break;
2560 case WWT_ARROWBTN:
2561 case WWT_PUSHARROWBTN: {
2562 static const Dimension extra = {WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT, WD_IMGBTN_TOP + WD_IMGBTN_BOTTOM};
2563 padding = &extra;
2564 Dimension d2 = maxdim(GetSpriteSize(SPR_ARROW_LEFT), GetSpriteSize(SPR_ARROW_RIGHT));
2565 d2.width += extra.width;
2566 d2.height += extra.height;
2567 size = maxdim(size, d2);
2568 break;
2571 case WWT_CLOSEBOX: {
2572 static const Dimension extra = {WD_CLOSEBOX_LEFT + WD_CLOSEBOX_RIGHT, WD_CLOSEBOX_TOP + WD_CLOSEBOX_BOTTOM};
2573 padding = &extra;
2574 if (NWidgetLeaf::closebox_dimension.width == 0) {
2575 NWidgetLeaf::closebox_dimension = GetSpriteSize(SPR_CLOSEBOX);
2576 NWidgetLeaf::closebox_dimension.width += extra.width;
2577 NWidgetLeaf::closebox_dimension.height += extra.height;
2579 size = maxdim(size, NWidgetLeaf::closebox_dimension);
2580 break;
2582 case WWT_TEXTBTN:
2583 case WWT_PUSHTXTBTN:
2584 case WWT_TEXTBTN_2: {
2585 static const Dimension extra = {WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM};
2586 padding = &extra;
2587 if (this->index >= 0) w->SetStringParameters(this->index);
2588 Dimension d2 = GetStringBoundingBox(this->widget_data);
2589 d2.width += extra.width;
2590 d2.height += extra.height;
2591 size = maxdim(size, d2);
2592 break;
2594 case WWT_LABEL:
2595 case WWT_TEXT: {
2596 static const Dimension extra = {0, 0};
2597 padding = &extra;
2598 if (this->index >= 0) w->SetStringParameters(this->index);
2599 size = maxdim(size, GetStringBoundingBox(this->widget_data));
2600 break;
2602 case WWT_CAPTION: {
2603 static const Dimension extra = {WD_CAPTIONTEXT_LEFT + WD_CAPTIONTEXT_RIGHT, WD_CAPTIONTEXT_TOP + WD_CAPTIONTEXT_BOTTOM};
2604 padding = &extra;
2605 if (this->index >= 0) w->SetStringParameters(this->index);
2606 Dimension d2 = GetStringBoundingBox(this->widget_data);
2607 d2.width += extra.width;
2608 d2.height += extra.height;
2609 size = maxdim(size, d2);
2610 break;
2612 case WWT_DROPDOWN:
2613 case NWID_BUTTON_DROPDOWN:
2614 case NWID_PUSHBUTTON_DROPDOWN: {
2615 static Dimension extra = {WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT, WD_DROPDOWNTEXT_TOP + WD_DROPDOWNTEXT_BOTTOM};
2616 padding = &extra;
2617 if (NWidgetLeaf::dropdown_dimension.width == 0) {
2618 NWidgetLeaf::dropdown_dimension = GetSpriteSize(SPR_ARROW_DOWN);
2619 NWidgetLeaf::dropdown_dimension.width += WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT;
2620 NWidgetLeaf::dropdown_dimension.height += WD_DROPDOWNTEXT_TOP + WD_DROPDOWNTEXT_BOTTOM;
2621 extra.width = WD_DROPDOWNTEXT_LEFT + WD_DROPDOWNTEXT_RIGHT + NWidgetLeaf::dropdown_dimension.width;
2623 if (this->index >= 0) w->SetStringParameters(this->index);
2624 Dimension d2 = GetStringBoundingBox(this->widget_data);
2625 d2.width += extra.width;
2626 d2.height = std::max(d2.height, NWidgetLeaf::dropdown_dimension.height) + extra.height;
2627 size = maxdim(size, d2);
2628 break;
2630 default:
2631 NOT_REACHED();
2634 if (this->index >= 0) w->UpdateWidgetSize(this->index, &size, *padding, &fill, &resize);
2636 this->smallest_x = size.width;
2637 this->smallest_y = size.height;
2638 this->fill_x = fill.width;
2639 this->fill_y = fill.height;
2640 this->resize_x = resize.width;
2641 this->resize_y = resize.height;
2644 void NWidgetLeaf::Draw(const Window *w)
2646 if (this->current_x == 0 || this->current_y == 0) return;
2648 /* Setup a clipping rectangle... */
2649 DrawPixelInfo new_dpi;
2650 if (!FillDrawPixelInfo(&new_dpi, this->pos_x, this->pos_y, this->current_x, this->current_y)) return;
2651 /* ...but keep coordinates relative to the window. */
2652 new_dpi.left += this->pos_x;
2653 new_dpi.top += this->pos_y;
2655 DrawPixelInfo *old_dpi = _cur_dpi;
2656 _cur_dpi = &new_dpi;
2658 Rect r = this->GetCurrentRect();
2660 bool clicked = this->IsLowered();
2661 switch (this->type) {
2662 case WWT_EMPTY:
2663 break;
2665 case WWT_PUSHBTN:
2666 assert(this->widget_data == 0);
2667 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, (clicked) ? FR_LOWERED : FR_NONE);
2668 break;
2670 case WWT_IMGBTN:
2671 case WWT_PUSHIMGBTN:
2672 case WWT_IMGBTN_2:
2673 DrawImageButtons(r, this->type, this->colour, clicked, this->widget_data, this->align);
2674 break;
2676 case WWT_TEXTBTN:
2677 case WWT_PUSHTXTBTN:
2678 case WWT_TEXTBTN_2:
2679 if (this->index >= 0) w->SetStringParameters(this->index);
2680 DrawFrameRect(r.left, r.top, r.right, r.bottom, this->colour, (clicked) ? FR_LOWERED : FR_NONE);
2681 DrawLabel(r, this->type, clicked, this->text_colour, this->widget_data, this->align);
2682 break;
2684 case WWT_ARROWBTN:
2685 case WWT_PUSHARROWBTN: {
2686 SpriteID sprite;
2687 switch (this->widget_data) {
2688 case AWV_DECREASE: sprite = _current_text_dir != TD_RTL ? SPR_ARROW_LEFT : SPR_ARROW_RIGHT; break;
2689 case AWV_INCREASE: sprite = _current_text_dir == TD_RTL ? SPR_ARROW_LEFT : SPR_ARROW_RIGHT; break;
2690 case AWV_LEFT: sprite = SPR_ARROW_LEFT; break;
2691 case AWV_RIGHT: sprite = SPR_ARROW_RIGHT; break;
2692 default: NOT_REACHED();
2694 DrawImageButtons(r, WWT_PUSHIMGBTN, this->colour, clicked, sprite, this->align);
2695 break;
2698 case WWT_LABEL:
2699 if (this->index >= 0) w->SetStringParameters(this->index);
2700 DrawLabel(r, this->type, clicked, this->text_colour, this->widget_data, this->align);
2701 break;
2703 case WWT_TEXT:
2704 if (this->index >= 0) w->SetStringParameters(this->index);
2705 DrawText(r, this->text_colour, this->widget_data, this->align);
2706 break;
2708 case WWT_MATRIX:
2709 DrawMatrix(r, this->colour, clicked, this->widget_data, this->resize_x, this->resize_y);
2710 break;
2712 case WWT_EDITBOX: {
2713 const QueryString *query = w->GetQueryString(this->index);
2714 if (query != nullptr) query->DrawEditBox(w, this->index);
2715 break;
2718 case WWT_CAPTION:
2719 if (this->index >= 0) w->SetStringParameters(this->index);
2720 DrawCaption(r, this->colour, w->owner, this->text_colour, this->widget_data, this->align);
2721 break;
2723 case WWT_SHADEBOX:
2724 assert(this->widget_data == 0);
2725 DrawShadeBox(r, this->colour, w->IsShaded());
2726 break;
2728 case WWT_DEBUGBOX:
2729 DrawDebugBox(r, this->colour, clicked);
2730 break;
2732 case WWT_STICKYBOX:
2733 assert(this->widget_data == 0);
2734 DrawStickyBox(r, this->colour, !!(w->flags & WF_STICKY));
2735 break;
2737 case WWT_DEFSIZEBOX:
2738 assert(this->widget_data == 0);
2739 DrawDefSizeBox(r, this->colour, clicked);
2740 break;
2742 case WWT_RESIZEBOX:
2743 assert(this->widget_data == 0);
2744 DrawResizeBox(r, this->colour, this->pos_x < (w->width / 2), !!(w->flags & WF_SIZING));
2745 break;
2747 case WWT_CLOSEBOX:
2748 DrawCloseBox(r, this->colour);
2749 break;
2751 case WWT_DROPDOWN:
2752 if (this->index >= 0) w->SetStringParameters(this->index);
2753 DrawButtonDropdown(r, this->colour, false, clicked, this->widget_data, this->align);
2754 break;
2756 case NWID_BUTTON_DROPDOWN:
2757 case NWID_PUSHBUTTON_DROPDOWN:
2758 if (this->index >= 0) w->SetStringParameters(this->index);
2759 DrawButtonDropdown(r, this->colour, clicked, (this->disp_flags & ND_DROPDOWN_ACTIVE) != 0, this->widget_data, this->align);
2760 break;
2762 default:
2763 NOT_REACHED();
2765 if (this->index >= 0) w->DrawWidget(r, this->index);
2767 if (this->IsDisabled()) {
2768 GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, _colour_gradient[this->colour & 0xF][2], FILLRECT_CHECKER);
2771 _cur_dpi = old_dpi;
2775 * For a #NWID_BUTTON_DROPDOWN, test whether \a pt refers to the button or to the drop-down.
2776 * @param pt Point in the widget.
2777 * @return The point refers to the button.
2779 * @note The magic constants are also used at #DrawButtonDropdown.
2781 bool NWidgetLeaf::ButtonHit(const Point &pt)
2783 if (_current_text_dir == TD_LTR) {
2784 int button_width = this->pos_x + this->current_x - NWidgetLeaf::dropdown_dimension.width;
2785 return pt.x < button_width;
2786 } else {
2787 int button_left = this->pos_x + NWidgetLeaf::dropdown_dimension.width;
2788 return pt.x >= button_left;
2792 /* == Conversion code from NWidgetPart array to NWidgetBase* tree == */
2795 * Construct a single nested widget in \a *dest from its parts.
2797 * Construct a NWidgetBase object from a #NWidget function, and apply all
2798 * settings that follow it, until encountering a #EndContainer, another
2799 * #NWidget, or the end of the parts array.
2801 * @param parts Array with parts of the nested widget.
2802 * @param count Length of the \a parts array.
2803 * @param dest Address of pointer to use for returning the composed widget.
2804 * @param fill_dest Fill the composed widget with child widgets.
2805 * @param biggest_index Pointer to biggest nested widget index in the tree encountered so far.
2806 * @return Number of widget part elements used to compose the widget.
2807 * @pre \c biggest_index != nullptr.
2809 static int MakeNWidget(const NWidgetPart *parts, int count, NWidgetBase **dest, bool *fill_dest, int *biggest_index)
2811 int num_used = 0;
2813 *dest = nullptr;
2814 *fill_dest = false;
2816 while (count > num_used) {
2817 switch (parts->type) {
2818 case NWID_SPACER:
2819 if (*dest != nullptr) return num_used;
2820 *dest = new NWidgetSpacer(0, 0);
2821 break;
2823 case NWID_HORIZONTAL:
2824 if (*dest != nullptr) return num_used;
2825 *dest = new NWidgetHorizontal(parts->u.cont_flags);
2826 *fill_dest = true;
2827 break;
2829 case NWID_HORIZONTAL_LTR:
2830 if (*dest != nullptr) return num_used;
2831 *dest = new NWidgetHorizontalLTR(parts->u.cont_flags);
2832 *fill_dest = true;
2833 break;
2835 case WWT_PANEL:
2836 case WWT_INSET:
2837 case WWT_FRAME:
2838 if (*dest != nullptr) return num_used;
2839 *dest = new NWidgetBackground(parts->type, parts->u.widget.colour, parts->u.widget.index);
2840 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2841 *fill_dest = true;
2842 break;
2844 case NWID_VERTICAL:
2845 if (*dest != nullptr) return num_used;
2846 *dest = new NWidgetVertical(parts->u.cont_flags);
2847 *fill_dest = true;
2848 break;
2850 case NWID_MATRIX: {
2851 if (*dest != nullptr) return num_used;
2852 NWidgetMatrix *nwm = new NWidgetMatrix();
2853 *dest = nwm;
2854 *fill_dest = true;
2855 nwm->SetIndex(parts->u.widget.index);
2856 nwm->SetColour(parts->u.widget.colour);
2857 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2858 break;
2861 case WPT_FUNCTION: {
2862 if (*dest != nullptr) return num_used;
2863 /* Ensure proper functioning even when the called code simply writes its largest index. */
2864 int biggest = -1;
2865 *dest = parts->u.func_ptr(&biggest);
2866 *biggest_index = std::max(*biggest_index, biggest);
2867 *fill_dest = false;
2868 break;
2871 case WPT_RESIZE: {
2872 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2873 if (nwrb != nullptr) {
2874 assert(parts->u.xy.x >= 0 && parts->u.xy.y >= 0);
2875 nwrb->SetResize(parts->u.xy.x, parts->u.xy.y);
2877 break;
2880 case WPT_MINSIZE: {
2881 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2882 if (nwrb != nullptr) {
2883 assert(parts->u.xy.x >= 0 && parts->u.xy.y >= 0);
2884 nwrb->SetMinimalSize(parts->u.xy.x, parts->u.xy.y);
2886 break;
2889 case WPT_MINTEXTLINES: {
2890 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2891 if (nwrb != nullptr) {
2892 assert(parts->u.text_lines.size >= FS_BEGIN && parts->u.text_lines.size < FS_END);
2893 nwrb->SetMinimalTextLines(parts->u.text_lines.lines, parts->u.text_lines.spacing, parts->u.text_lines.size);
2895 break;
2898 case WPT_TEXTCOLOUR: {
2899 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2900 if (nwc != nullptr) {
2901 nwc->SetTextColour(parts->u.colour.colour);
2903 break;
2906 case WPT_ALIGNMENT: {
2907 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2908 if (nwc != nullptr) {
2909 nwc->SetAlignment(parts->u.align.align);
2911 break;
2914 case WPT_FILL: {
2915 NWidgetResizeBase *nwrb = dynamic_cast<NWidgetResizeBase *>(*dest);
2916 if (nwrb != nullptr) nwrb->SetFill(parts->u.xy.x, parts->u.xy.y);
2917 break;
2920 case WPT_DATATIP: {
2921 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2922 if (nwc != nullptr) {
2923 nwc->widget_data = parts->u.data_tip.data;
2924 nwc->tool_tip = parts->u.data_tip.tooltip;
2926 break;
2929 case WPT_PADDING:
2930 if (*dest != nullptr) (*dest)->SetPadding(parts->u.padding.top, parts->u.padding.right, parts->u.padding.bottom, parts->u.padding.left);
2931 break;
2933 case WPT_PIPSPACE: {
2934 NWidgetPIPContainer *nwc = dynamic_cast<NWidgetPIPContainer *>(*dest);
2935 if (nwc != nullptr) nwc->SetPIP(parts->u.pip.pre, parts->u.pip.inter, parts->u.pip.post);
2937 NWidgetBackground *nwb = dynamic_cast<NWidgetBackground *>(*dest);
2938 if (nwb != nullptr) nwb->SetPIP(parts->u.pip.pre, parts->u.pip.inter, parts->u.pip.post);
2939 break;
2942 case WPT_SCROLLBAR: {
2943 NWidgetCore *nwc = dynamic_cast<NWidgetCore *>(*dest);
2944 if (nwc != nullptr) {
2945 nwc->scrollbar_index = parts->u.widget.index;
2947 break;
2950 case WPT_ENDCONTAINER:
2951 return num_used;
2953 case NWID_VIEWPORT:
2954 if (*dest != nullptr) return num_used;
2955 *dest = new NWidgetViewport(parts->u.widget.index);
2956 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2957 break;
2959 case NWID_HSCROLLBAR:
2960 case NWID_VSCROLLBAR:
2961 if (*dest != nullptr) return num_used;
2962 *dest = new NWidgetScrollbar(parts->type, parts->u.widget.colour, parts->u.widget.index);
2963 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2964 break;
2966 case NWID_SELECTION: {
2967 if (*dest != nullptr) return num_used;
2968 NWidgetStacked *nws = new NWidgetStacked();
2969 *dest = nws;
2970 *fill_dest = true;
2971 nws->SetIndex(parts->u.widget.index);
2972 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2973 break;
2976 default:
2977 if (*dest != nullptr) return num_used;
2978 assert((parts->type & WWT_MASK) < WWT_LAST || (parts->type & WWT_MASK) == NWID_BUTTON_DROPDOWN);
2979 *dest = new NWidgetLeaf(parts->type, parts->u.widget.colour, parts->u.widget.index, 0x0, STR_NULL);
2980 *biggest_index = std::max(*biggest_index, (int)parts->u.widget.index);
2981 break;
2983 num_used++;
2984 parts++;
2987 return num_used;
2991 * Build a nested widget tree by recursively filling containers with nested widgets read from their parts.
2992 * @param parts Array with parts of the nested widgets.
2993 * @param count Length of the \a parts array.
2994 * @param parent Pointer or container to use for storing the child widgets (*parent == nullptr or *parent == container or background widget).
2995 * @param biggest_index Pointer to biggest nested widget index in the tree.
2996 * @return Number of widget part elements used to fill the container.
2997 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
2999 static int MakeWidgetTree(const NWidgetPart *parts, int count, NWidgetBase **parent, int *biggest_index)
3001 /* If *parent == nullptr, only the first widget is read and returned. Otherwise, *parent must point to either
3002 * a #NWidgetContainer or a #NWidgetBackground object, and parts are added as much as possible. */
3003 NWidgetContainer *nwid_cont = dynamic_cast<NWidgetContainer *>(*parent);
3004 NWidgetBackground *nwid_parent = dynamic_cast<NWidgetBackground *>(*parent);
3005 assert(*parent == nullptr || (nwid_cont != nullptr && nwid_parent == nullptr) || (nwid_cont == nullptr && nwid_parent != nullptr));
3007 int total_used = 0;
3008 for (;;) {
3009 NWidgetBase *sub_widget = nullptr;
3010 bool fill_sub = false;
3011 int num_used = MakeNWidget(parts, count - total_used, &sub_widget, &fill_sub, biggest_index);
3012 parts += num_used;
3013 total_used += num_used;
3015 /* Break out of loop when end reached */
3016 if (sub_widget == nullptr) break;
3018 /* If sub-widget is a container, recursively fill that container. */
3019 WidgetType tp = sub_widget->type;
3020 if (fill_sub && (tp == NWID_HORIZONTAL || tp == NWID_HORIZONTAL_LTR || tp == NWID_VERTICAL || tp == NWID_MATRIX
3021 || tp == WWT_PANEL || tp == WWT_FRAME || tp == WWT_INSET || tp == NWID_SELECTION)) {
3022 NWidgetBase *sub_ptr = sub_widget;
3023 int num_used = MakeWidgetTree(parts, count - total_used, &sub_ptr, biggest_index);
3024 parts += num_used;
3025 total_used += num_used;
3028 /* Add sub_widget to parent container if available, otherwise return the widget to the caller. */
3029 if (nwid_cont != nullptr) nwid_cont->Add(sub_widget);
3030 if (nwid_parent != nullptr) nwid_parent->Add(sub_widget);
3031 if (nwid_cont == nullptr && nwid_parent == nullptr) {
3032 *parent = sub_widget;
3033 return total_used;
3037 if (count == total_used) return total_used; // Reached the end of the array of parts?
3039 assert(total_used < count);
3040 assert(parts->type == WPT_ENDCONTAINER);
3041 return total_used + 1; // *parts is also 'used'
3045 * Construct a nested widget tree from an array of parts.
3046 * @param parts Array with parts of the widgets.
3047 * @param count Length of the \a parts array.
3048 * @param biggest_index Pointer to biggest nested widget index collected in the tree.
3049 * @param container Container to add the nested widgets to. In case it is nullptr a vertical container is used.
3050 * @return Root of the nested widget tree, a vertical container containing the entire GUI.
3051 * @ingroup NestedWidgetParts
3052 * @pre \c biggest_index != nullptr
3053 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
3055 NWidgetContainer *MakeNWidgets(const NWidgetPart *parts, int count, int *biggest_index, NWidgetContainer *container)
3057 *biggest_index = -1;
3058 if (container == nullptr) container = new NWidgetVertical();
3059 NWidgetBase *cont_ptr = container;
3060 MakeWidgetTree(parts, count, &cont_ptr, biggest_index);
3061 return container;
3065 * Make a nested widget tree for a window from a parts array. Besides loading, it inserts a shading selection widget
3066 * 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
3067 * container with a caption widget) and has a shade box widget.
3068 * @param parts Array with parts of the widgets.
3069 * @param count Length of the \a parts array.
3070 * @param biggest_index Pointer to biggest nested widget index collected in the tree.
3071 * @param[out] shade_select Pointer to the inserted shade selection widget (\c nullptr if not unserted).
3072 * @return Root of the nested widget tree, a vertical container containing the entire GUI.
3073 * @ingroup NestedWidgetParts
3074 * @pre \c biggest_index != nullptr
3075 * @post \c *biggest_index contains the largest widget index of the tree and \c -1 if no index is used.
3077 NWidgetContainer *MakeWindowNWidgetTree(const NWidgetPart *parts, int count, int *biggest_index, NWidgetStacked **shade_select)
3079 *biggest_index = -1;
3081 /* Read the first widget recursively from the array. */
3082 NWidgetBase *nwid = nullptr;
3083 int num_used = MakeWidgetTree(parts, count, &nwid, biggest_index);
3084 assert(nwid != nullptr);
3085 parts += num_used;
3086 count -= num_used;
3088 NWidgetContainer *root = new NWidgetVertical;
3089 root->Add(nwid);
3090 if (count == 0) { // There is no body at all.
3091 *shade_select = nullptr;
3092 return root;
3095 /* If the first widget looks like a titlebar, treat it as such.
3096 * If it has a shading box, silently add a shade selection widget in the tree. */
3097 NWidgetHorizontal *hor_cont = dynamic_cast<NWidgetHorizontal *>(nwid);
3098 NWidgetContainer *body;
3099 if (hor_cont != nullptr && hor_cont->GetWidgetOfType(WWT_CAPTION) != nullptr && hor_cont->GetWidgetOfType(WWT_SHADEBOX) != nullptr) {
3100 *shade_select = new NWidgetStacked;
3101 root->Add(*shade_select);
3102 body = new NWidgetVertical;
3103 (*shade_select)->Add(body);
3104 } else {
3105 *shade_select = nullptr;
3106 body = root;
3109 /* Load the remaining parts into 'body'. */
3110 int biggest2 = -1;
3111 MakeNWidgets(parts, count, &biggest2, body);
3113 *biggest_index = std::max(*biggest_index, biggest2);
3114 return root;
3118 * Make a number of rows with button-like graphics, for enabling/disabling each company.
3119 * @param biggest_index Storage for collecting the biggest index used in the returned tree.
3120 * @param widget_first The first widget index to use.
3121 * @param widget_last The last widget index to use.
3122 * @param colour The colour in which to draw the button.
3123 * @param max_length Maximal number of company buttons in one row.
3124 * @param button_tooltip The tooltip-string of every button.
3125 * @return Panel with rows of company buttons.
3126 * @post \c *biggest_index contains the largest used index in the tree.
3128 NWidgetBase *MakeCompanyButtonRows(int *biggest_index, int widget_first, int widget_last, Colours button_colour, int max_length, StringID button_tooltip)
3130 assert(max_length >= 1);
3131 NWidgetVertical *vert = nullptr; // Storage for all rows.
3132 NWidgetHorizontal *hor = nullptr; // Storage for buttons in one row.
3133 int hor_length = 0;
3135 Dimension sprite_size = GetSpriteSize(SPR_COMPANY_ICON, nullptr, ZOOM_LVL_OUT_4X);
3136 sprite_size.width += WD_MATRIX_LEFT + WD_MATRIX_RIGHT;
3137 sprite_size.height += WD_MATRIX_TOP + WD_MATRIX_BOTTOM + 1; // 1 for the 'offset' of being pressed
3139 for (int widnum = widget_first; widnum <= widget_last; widnum++) {
3140 /* Ensure there is room in 'hor' for another button. */
3141 if (hor_length == max_length) {
3142 if (vert == nullptr) vert = new NWidgetVertical();
3143 vert->Add(hor);
3144 hor = nullptr;
3145 hor_length = 0;
3147 if (hor == nullptr) {
3148 hor = new NWidgetHorizontal();
3149 hor_length = 0;
3152 NWidgetBackground *panel = new NWidgetBackground(WWT_PANEL, button_colour, widnum);
3153 panel->SetMinimalSize(sprite_size.width, sprite_size.height);
3154 panel->SetFill(1, 1);
3155 panel->SetResize(1, 0);
3156 panel->SetDataTip(0x0, button_tooltip);
3157 hor->Add(panel);
3158 hor_length++;
3160 *biggest_index = widget_last;
3161 if (vert == nullptr) return hor; // All buttons fit in a single row.
3163 if (hor_length > 0 && hor_length < max_length) {
3164 /* Last row is partial, add a spacer at the end to force all buttons to the left. */
3165 NWidgetSpacer *spc = new NWidgetSpacer(sprite_size.width, sprite_size.height);
3166 spc->SetFill(1, 1);
3167 spc->SetResize(1, 0);
3168 hor->Add(spc);
3170 if (hor != nullptr) vert->Add(hor);
3171 return vert;