summaryrefslogtreecommitdiff
path: root/src/widget.cpp
AgeCommit message (Collapse)Author
2018-10-31Doc: Lots and lots of doxymentation fixesCharles Pigott
2017-08-13(svn r27893) -Codechange: Use fallthrough attribute. (LordAro)frosch
2017-03-26(svn r27831) -Fix (r24577): Misaligned resize icon (due to widget bounds ↵peter1138
being inclusive)
2017-03-23(svn r27821) -Change: Draw images in centre of buttons (inspired by Juanjo)peter1138
2016-12-25(svn r27713) -Fix [FS#6527]: Setup clipping areas for individual widgets ↵frosch
when drawing. (adf88)
2015-08-10(svn r27381) -Fix: Warnings due to C++11 requirements for explicit narrowing ↵michi_cc
conversions in initializer lists.
2015-07-26(svn r27340) -Fix [FS#6338]: Silence warning by moving _string_colourmap to ↵frosch
a file no its own. (Cif)
2015-06-20(svn r27303) -Fix [FS#6321]: SetMinimalSize was ignored for WWT_EDITBOX.frosch
2015-04-26(svn r27255) -Fix [FS#6270]: Combined button+dropdown widgets in order and ↵frosch
autoreplace GUI had incorrect hitbox when using GUI zoom. (_dp_)
2014-10-21(svn r27030) -Fix: crash when having the vehicle list opened from a buoy or ↵rubidium
oil rig while the buoy/oil rig gets its final removal (i.e. the sign gets removed)
2014-10-06(svn r26971) -Fix: widget_data was sometimes uint16 and sometimes uint32; ↵rubidium
make it always be uint32
2014-10-05(svn r26965) -Codechange: Add palette bit to indicate that palette is ↵peter1138
actually a text colour remap, and draw closebox as a sprite, using said bit. Change news popup to use closebox widget for its closebox.
2014-10-05(svn r26964) -Codechange: Allow editbox size to change.peter1138
2014-10-05(svn r26962) -Fix: Set up scrollbar size at the correct time (where it can ↵peter1138
be changed). Also ensure scrollbar is long enough to at least contain its buttons.
2014-10-05(svn r26960) -Codechange: Draw sort button symbols as sprites, and pad sort ↵peter1138
buttons with non-static width.
2014-09-20(svn r26861) -Codechange: Include height of dropdown image in dropdown ↵peter1138
widget. Draw vertically centred image in dropdown button.
2014-09-20(svn r26855) -Codechange: Render vertical scrollbars the same as horizontal ↵peter1138
scrollbars, with sprites instead of text.
2014-09-20(svn r26854) -Codechange: Don't override computed minimal size with static ↵peter1138
minimal size, instead only increase it.
2014-04-23(svn r26482) -Codechange: add an include that allows us to undefine/redefine ↵rubidium
"unsafe" functions to prevent them from being used, and thus having to care about certain aspects of their return values
2014-02-22(svn r26362) -Fix [FS#5906]: reset the default window size icon size just ↵rubidium
like all the other cached icon sizes (based on patch by MJP)
2013-11-26(svn r26127) -Fix (r18186): missing breakrubidium
2013-11-26(svn r26123) -Fix: make sure the maximum row length when making company ↵rubidium
buttons is at least 1
2013-11-26(svn r26121) -Codechange: add some asserts after dynamic casts to show they ↵rubidium
shouldn't return NULL ever
2013-10-13(svn r25864) -Fix: Use the actual sprite dimensions for sizing the dropdown ↵frosch
arrow of dropdown widgets.
2013-10-13(svn r25862) -Fix [FS#5715] (r25729): Usage of implicit unsigned wrap ↵frosch
around. (sbr)
2013-10-13(svn r25861) -Fix [FS#5760]: Scale linkgraph legend according to text ↵frosch
dimensions.
2013-08-18(svn r25729) -Fix [FS#5686]: If the child widgets of a NWidgetHorizontal ↵frosch
container do not fill the complete container, align them according to text direction. (sbr)
2013-08-18(svn r25727) -Fix [FS#5686]: NWidgetMatrix used pip_pre and pip_post ↵frosch
inconsistently and incorrectly, causing misalignment for RTL. (spotted by sbr)
2013-06-30(svn r25537) -Codechange: Optionally make WWT_MATRIX compute the number of ↵frosch
rows and columns from the resize step size.
2013-06-25(svn r25468) -Fix-ish: the min/max of the close box were so small the glyph ↵rubidium
wouldn't even fit between them
2013-05-26(svn r25294) -Feature: Add another button to window title bars to resize the ↵frosch
window to its default size.
2013-03-25(svn r25123) -Fix: when the count for a scrollbar was 0, the inter distance ↵rubidium
was subtracted too much causing a scrollbar with a negative size
2013-03-24(svn r25121) -Fix: Editboxes could become too small when resizing windows.frosch
2013-01-14(svn r24915) -Fix: Several out-of-bounds readssmatz
2013-01-08(svn r24900) -Fix [FS#5389]: Comments with typos (most fixes supplied by ↵planetmaker
Eagle_rainbow)
2012-12-25(svn r24853) -Fix: Extend widget data member to 32 bits so that sprite IDs ↵peter1138
>= 2^16 can be used.
2012-11-14(svn r24745) -Codechange: Draw complete editbox via QueryString.frosch
2012-11-14(svn r24742) -Codechange: Remove QueryStringBaseWindow and store ↵frosch
QueryStrings per widget instead.
2012-11-13(svn r24724) -Codechange: Move drawing of editboxes to the widget drawing code.frosch
2012-10-08(svn r24577) -Fix [FS#5324]: Draw the window resize sprite bottom-aligned (sbr)planetmaker
2012-07-07(svn r24378) -Fix [FS#5218]: ReInit could crash for windows with ↵frosch
NWidgetMatrix widgets.
2012-06-16(svn r24346) -Fix: EQUALSIZE widget containers within EQUALSIZE containers ↵frosch
were initialised with wrong sizes.
2012-04-17(svn r24136) -Feature [FS#4465]: Autoreplace vehicles only when they get ↵michi_cc
old. (Vikthor)
2011-12-19(svn r23631) -Add: ScriptWindow, to manipulate windows on the client ↵truebrain
(GameScript only)
2011-12-15(svn r23525) -Codechange: make Window::flags4 WindowFlags instead of uint16, ↵truebrain
with only values known in WindowFlags (and move out 2 timers to their own variable) -Codechange: rename Window::flags4 to Window::flags -Codechange: move some non-inline functions from .hpp to .cpp
2011-11-18(svn r23252) -Codechange: Add WD_BEVEL_xxx constants.frosch
2011-10-11(svn r23024) -Codechange: Vertically centre text within a dropdown control.peter1138
2011-10-11(svn r23020) -Codechange: Vertically centre caption text if the caption ↵peter1138
height is taller than the text.
2011-10-11(svn r23017) -Codechange: Add support for resized scrollbars.peter1138
2011-09-02(svn r22869) -Codechange: Use the same constant to set the minimum height of ↵planetmaker
all widgets in the windows title bar