summaryrefslogtreecommitdiff
path: root/src/widget.cpp
AgeCommit message (Collapse)Author
2010-08-12(svn r20459) -Codechange: Remove the Scrollbar members of Window and make ↵frosch
NWidgetScrollbar inherit from Scrollbar instead.
2010-08-12(svn r20458) -Codechange: Move Scrollbar from window.cpp to widget.cppfrosch
2010-08-12(svn r20457) -Codechange: Remove _scrolling_scrollbar and WF_SCROLL_MIDDLE ↵frosch
and instead store the widget index of the being scrolled scrollbar in the Window.
2010-08-12(svn r20456) -Codechange: Add separate nested widget class for scrollbars.frosch
2010-08-12(svn r20453) -Codechange: Remove direct accesses to Window::hscroll, vscroll ↵frosch
and vscroll2. Note: All windows get individual members with the same names, which are initialised via Window::GetScrollbar(). This caching is not required at all, but simplifies conversion.
2010-08-12(svn r20452) -Codechange: Remove NWidgetCore::FindScrollbar() and associate ↵frosch
scrollbar explicitly using a NWidgetPart via SetScrollbar().
2010-08-06(svn r20394) -Fix [FS#4010]: make the default minimum width for editboxes 10 ↵yexo
pixels
2010-08-01(svn r20283) -Codechange: Unify start of doygen comments.frosch
2010-07-29(svn r20239) -Doc: Give a common name to all fall throughs (FALL THROUGH).terkhen
2010-07-02(svn r20043) -Codechange: Introduce vertical alignment for ↵alberth
DrawStringMultiLine().
2010-06-07(svn r19943) -Fix [FS#3865]: Disallow moving of vehicle news window.frosch
2010-05-16(svn r19844) -Fix: Move NWidgetBase::StoreSizePosition() to an include file, ↵alberth
and use proper inline macro.
2010-05-16(svn r19843) -Codechange: Move ComputeMaxSize() to widget_type.h to make it ↵alberth
globally accessible.
2010-04-24(svn r19706) -Add: support for the (NewGRF) debug boxrubidium
2010-01-15(svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, ↵rubidium
if a header require a header make it include that header
2009-12-22(svn r18606) -Codechange: Introduce several forms of zero-size stacked ↵alberth
display planes.
2009-12-22(svn r18605) -Codechange: Coding style fixes, prevent useless calls to ↵alberth
UpdateWidgetSize().
2009-12-21(svn r18593) -Fix: GetWidget call case similar to r18591rubidium
2009-12-21(svn r18592) -Fix (r18591): argh... save after starting the commit :(rubidium
2009-12-21(svn r18591) -Fix [FS#3399]: FindScrollbar could trigger an assert if the ↵rubidium
next widget (in the widget array) was a container-ish (e.g. selection) widget
2009-12-21(svn r18587) -Codechange: Insert a shade selection widget in the widget tree ↵alberth
when the window starts with a title bar with a shade box.
2009-12-21(svn r18584) -Codechange: Generalize MakeWidgetTree to read only one widget ↵alberth
(recursively).
2009-12-21(svn r18583) -Codechange: Add WWT_SHADEBOX widget and its functions (heavily ↵alberth
based on code by erikjanp).
2009-12-13(svn r18492) -Doc: A few Doxygen reference fixes (NewsSubtype reported by ↵alberth
Eddi), and a typo fix.
2009-12-13(svn r18491) -Fix (r18482): Update doxy comments of SetupSmallestSize() as well.alberth
2009-12-13(svn r18490) -Doc: Fixed syntax of a few doxygen pre and post coditions.alberth
2009-12-13(svn r18482) -Cleanup (r18092): Conversion to widget array is not done any more.alberth
2009-11-28(svn r18330) -Cleanup: remove some unneeded includesrubidium
2009-11-26(svn r18303) -Fix: Widget indices are valid when >= 0.frosch
2009-11-24(svn r18273) -Codechange: do not require widget numbers for default widgets ↵rubidium
(close, sticky, resize buttons and the caption), except when you want to use SetStringParameter for the caption ofcourse. Also remove the requirement for some of the WDF flags; no need to test for both the flag whether a feature is used and whether the feature is in action.
2009-11-24(svn r18272) -Codechange: make FindScrollbar a const functionrubidium
2009-11-24(svn r18267) -Codechange: make the music window big font awarerubidium
2009-11-22(svn r18232) -Fix: Extend container widgets to accomadate multiples of ↵alberth
filling step size.
2009-11-22(svn r18230) -Codechange: Allow fill stepsize to be set from ↵alberth
Window::UpdateWidgetSize().
2009-11-22(svn r18229) -Codechange: Make fill_x, fill_y a number instead of a bool.alberth
2009-11-22(svn r18223) -Codechange: remove the requirement of having an index for ↵rubidium
background widgets
2009-11-22(svn r18212) -Codechange: remove unneeded 'parameters' for WWT_CAPTION, ↵rubidium
WWT_CLOSEBOX and WWT_STICKYBOX in the nested widget arrays
2009-11-22(svn r18210) -Codechange: Child widgets always get the entire space in ↵alberth
perpendicular direction of the container.
2009-11-20(svn r18201) -Codechange (r18092): No need anymore for initializing nested ↵alberth
widgets for Widget* arrays.
2009-11-19(svn r18195) -Codechange: move the child padding calculation/handling to ↵rubidium
WWT_FRAME -Fix (r18168): crash when switching languages when a non-standard font height is used
2009-11-19(svn r18189) -Codechange: remove some now unneeded stringsrubidium
2009-11-19(svn r18188) -Codechange: s/NWID_BUTTON_DRPDOWN/NWID_BUTTON_DROPDOWN/grubidium
2009-11-19(svn r18186) -Add: a widgets for left/right arrows with the ability to turn ↵rubidium
themselves around when a RTL language is loaded
2009-11-18(svn r18168) -Codechange: Adjust a frame's child's padding to account for ↵peter1138
text height, and draw the top bar appropriately.
2009-11-17(svn r18150) -Codechange: make the horizontal scrollbar scroll in the ↵rubidium
opposite direction with RTL
2009-11-17(svn r18138) -Codechange: Add a new widgetpart to specify the height of a ↵peter1138
widget in text lines.
2009-11-15(svn r18099) -Codechange: scale the edit boxes to the fontsizerubidium
2009-11-15(svn r18092) -Codechange: remove support for the unnested widgetsrubidium
2009-11-15(svn r18089) -Codechange: remove ResizeWindowForWidgetrubidium
2009-11-15(svn r18088) -Codechange: remove CompareWidgetArraysrubidium