summaryrefslogtreecommitdiff
path: root/src/station_gui.cpp
AgeCommit message (Collapse)Author
2010-11-26(svn r21331) -Codechange: Make drawing the widgets default behaviour in ↵alberth
OnPaint().
2010-11-13(svn r21157) -Codechange: remove information about the text direction out of ↵rubidium
the language "list"
2010-11-11(svn r21144) -Change [FS#4206]: filter stations by cargo they have a rating ↵rubidium
for instead of having cargo waiting
2010-10-19(svn r20997) -Fix: Size of sort buttons for order and vehicle list gui could ↵planetmaker
be too small
2010-09-11(svn r20785) -Fix: crash when closing the station view of oilrigs (similar ↵rubidium
to r20774)
2010-09-08(svn r20772) -Codechange: use packed VehicleListIdentifiers as window numbersrubidium
2010-08-26(svn r20632) -Cleanup: remove "a few" unneeded includes, and add them to ↵rubidium
some headers
2010-08-20(svn r20579) -Change (r1579): Allow removing of buoys if they are only used ↵frosch
by own vehicles.
2010-08-15(svn r20499) -Doc: Spelling fixes, and one doxygen comment addition.alberth
2010-08-12(svn r20461) -Codechange: Replace WWT_HSCROLLBAR, WWT_SCROLLBAR and ↵frosch
WWT_SCROLL2BAR with NWID_HSCROLLBAR and NWID_VSCROLLBAR.
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-01(svn r20286) -Codechange: Unify end of doxygen comments.frosch
2010-08-01(svn r20283) -Codechange: Unify start of doygen comments.frosch
2010-07-26(svn r20223) -Codechange: Replace scrolled row calculations by a call to ↵alberth
GetScrolledRowFromWidget().
2010-07-02(svn r20043) -Codechange: Introduce vertical alignment for ↵alberth
DrawStringMultiLine().
2010-06-19(svn r19997) -Codechange: Unify order of ship and plane icon in stationlist ↵rubidium
and stationsigns with the rest of the game (frosch)
2010-06-12(svn r19969) -Change: swap 'list of ships' and 'list of aircraft' buttons in ↵smatz
the Station View window
2010-06-10(svn r19955) -Fix: close list of vehicles with given buoy/oil rig in orders ↵smatz
when switching company
2010-05-11(svn r19790) -Change: use the typed FOR_EACH_SET_BIT for CargoIDs (adf88)rubidium
2010-05-11(svn r19788) -Codechange: make FOR_EACH_SET_BIT not change the value of the ↵rubidium
passed bit variable, i.e. allow expressions as parameter
2010-04-18(svn r19670) -Codechange: Add CeilDiv() and RoundDiv() to simplify integer ↵frosch
divisions with rounding.
2010-04-07(svn r19581) -Codechange: auto-raise 'All facilities/cargos' buttons in the ↵smatz
Station list window
2010-04-07(svn r19573) -Fix (r19541): Special cargos did not appear at the refit list.terkhen
2010-04-02(svn r19540) -Feature: Sort the ratings of a station by cargo class / name.terkhen
2010-03-06(svn r19350) -Codechange: StationRect::BeforeAddRect() returns a CommandCost.alberth
2010-02-14(svn r19129) -Fix [FS#3623] (r19122): Don't draw cargo ratings/acceptance ↵alberth
when the window is shaded.
2010-02-13(svn r19123) -Fix [FS#3617]: Resize station cargo widget when needed to ↵alberth
display all accepted cargo types.
2010-02-13(svn r19122) -Codechange: Move cargo drawing to StationViewWindow::OnPaint().alberth
2010-02-13(svn r19121) -Codechange: Introduce a variable for the height of the ratings ↵alberth
and accepted cargo widgets.
2010-02-12(svn r19111) -Fix (r19070): the station view didn't show acceptance anymorerubidium
2010-02-10(svn r19087) -Codechange: some typos in StringIDsrubidium
2010-02-09(svn r19070) -Fix [FS#3607]: the station coverage text was not RTL language ↵rubidium
aware (sbr)
2010-01-30(svn r18966) -Codechange: Remove Window::OnDoubleClick() in favour of a ↵frosch
parameter for OnClick().
2010-01-18(svn r18866) -Codechange: remove the CmdFailed(ret)/CmdSucceeded(ret) ↵rubidium
wrapper functions
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
2010-01-05(svn r18731) -Codechange: move the DrawStationCoverage stuff from ↵rubidium
misc_gui.cpp to station_gui.cpp
2010-01-04(svn r18718) -Codechange: make a wrapper macro for looping TileAreasrubidium
2010-01-04(svn r18713) -Fix [FS#3476]: the join station window didn't account for ↵rubidium
scrolling, so if you did scroll the station was not joined with the selected station
2009-12-21(svn r18588) -Feature [FS#2943]: Add shading and unshading of windows.alberth
2009-12-20(svn r18580) -Codechange: Use widget information only for setting scrollbar ↵alberth
capacity.
2009-12-19(svn r18539) -Codechange: Re-use cargolist drawing in ↵alberth
StationViewWindow::DrawAcceptedCargo()
2009-12-05(svn r18410) -Codechange: Move GetCargoSprite() to CargoSpec::GetCargoIcon().alberth
2009-11-29(svn r18333) -Fix (r18127): Station view window did not resize properly when ↵alberth
toggling between ratings and acceptance view.
2009-11-28(svn r18322) -Codechange: remove the WDP duplication; no need to tell the ↵rubidium
same twice.
2009-11-24(svn r18280) -Codechange: remove widget indices that are not needed for ↵rubidium
custom drawing/handling input
2009-11-24(svn r18277) -Codechange: remove unneeded widget indices for close, resize ↵rubidium
and sticky boxes and for window captions
2009-11-24(svn r18274) -Codechange: remove the unused WDF flagsrubidium
2009-11-23(svn r18260) -Codechange: make the company station view big font awarerubidium
2009-11-22(svn r18230) -Codechange: Allow fill stepsize to be set from ↵alberth
Window::UpdateWidgetSize().