summaryrefslogtreecommitdiff
path: root/src/rail_gui.cpp
AgeCommit message (Collapse)Author
2008-08-09(svn r14034) -Cleanup (r13938) [FS#2210]: Typo in YAPP constant. (Eddi)peter1138
2008-08-09(svn r14033) -Fix (r13938) [FS#2209]: Wrong offset in signal GUI. (Eddi)peter1138
2008-08-02(svn r13938) -Codechange [YAPP]: Add the new signals to the build signal ↵rubidium
GUI. (michi_cc)
2008-08-02(svn r13936) -Codechange [YAPP]: Enable the auto-signal tool to build PBS ↵rubidium
signals and honor the default signal type. (michi_cc)
2008-08-02(svn r13935) -Codechange [YAPP]: PBS signals can now be built with the ↵rubidium
normal signal tools. (michi_cc)
2008-08-01(svn r13909) -Codechange: use the same type before CmdBuildRailStation as it ↵rubidium
used in the command itself (Alberth)
2008-08-01(svn r13908) -Codechange: merge two tables into a single one (Alberth)rubidium
2008-07-31(svn r13898) -Codechange: Replace remaining numbers with Colours enum on ↵belugas
players, roads and rails guis
2008-07-17(svn r13719) -Codechange: rename IsValidPlayer to IsValidPlayerID in line ↵rubidium
with all other structs/classes that are in a pool.
2008-06-28(svn r13649) -Codechange: Split the GfxFillRect() special flags from 'color' ↵frosch
into their own parameter.
2008-06-01(svn r13350) -Fix: wrong tooltip for waypoint picker scrollbarglx
2008-05-29(svn r13325) -Codechange: split the client-side only settings from the ↵rubidium
settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
2008-05-25(svn r13251) -Codechange: rename _patches to _settings as that is more logic.rubidium
-Codechange: move all Settings into substructs of _settings in a way that they are logically grouped.
2008-05-24(svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their ↵frosch
PickerWindows.
2008-05-19(svn r13185) -Codechange: remove everything related to the WindowProc callbacks.rubidium
2008-05-19(svn r13182) -Doc: add documentation to mostly rail_gui related functions. ↵rubidium
Patch by Alberth.
2008-05-18(svn r13171) -Codechange: make a class of the ↵rubidium
Build[Air|Rail|Road|Dock]ToolbarWindows.
2008-05-18(svn r13160) -Codechange: prepare GUIPlaceProcDragXY for the removal of ↵rubidium
WindowEvent.
2008-05-17(svn r13143) -Fix (r13142): the Build Waypoint window wasn't resized when it ↵smatz
was opened
2008-05-17(svn r13142) -Codechange: make classes of the ↵glx
Build[RailDepot|RailStation|RailWaypoint|Signal]Window
2008-05-17(svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to ↵rubidium
the Window class and remove Window from their naming.
2008-05-15(svn r13104) -Codechange: make ResetObjectToPlace safe to be called ↵rubidium
recursively via the OnPlaceObjectAbort callback and use this knowledge to simplify closing some windows.
2008-05-09(svn r13024) -Codechange: do not use WE_MOUSELOOP when WE_TICK suffices, ↵rubidium
rename WE_4 to something more descriptive and correct some (completely incorrect) comments.
2008-05-08(svn r13011) -Codechange: move PlaceProc_BuyLand out of rail_gui.cpp to the ↵rubidium
place where it is used and remove some unneeded globalisations of some other PlaceProc functions.
2008-05-08(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of ↵rubidium
Window.
2008-05-08(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with ↵rubidium
a Window constructor.
2008-05-07(svn r12987) -Codechange: split viewport and tile selection.rubidium
2008-05-06(svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) ↵rubidium
when it's certain that w != NULL.
2008-05-06(svn r12975) -Codechange: replace DeleteWindow(w) with delete w.rubidium
2008-05-04(svn r12939) -Codechange: do not use the window proc to determine whether a ↵rubidium
toolbar is a rail toolbar, but use the window number.
2008-04-21(svn r12819) -Codechange: handle more NewGRFs in the same way as TTDP does ↵rubidium
it, i.e. testing the low bits for 0xFF or 0 instead of all bits.
2008-04-18(svn r12765) -Codechange: move some stuff out of variables.h that required ↵rubidium
including other headers in variables.h.
2008-04-06(svn r12596) -Feature: show what cargos a station could be supplied with. ↵rubidium
Patch by Roujin.
2008-04-05(svn r12577) -Fix (r11547): the convert signal button disallowed signal ↵smatz
dragging when the signal GUI was closed
2008-04-03(svn r12553) -Fix (r11547): redraw the signal GUI when the signal drag ↵smatz
density changes in the patch settings and vice versa
2008-04-03(svn r12550) -Change: the signal GUI is now persistent - has the same data ↵smatz
when it is reopened
2008-04-03(svn r12549) -Fix [FS#1900](r11547): respect type of selected signal when ↵smatz
building more signals using the GUI -Fix: do not check patch settings but check if the Signal GUI window is open instead
2008-03-31(svn r12489) -Codechange: split station.h into station_base.h and ↵rubidium
station_func.h.
2008-02-20(svn r12199) -Codechange: Remove magic around the results of ↵frosch
GetTileTrackStatus().
2008-02-17(svn r12168) -Fix: behave a bit better when 'R' is pressed during rail ↵smatz
station dragging
2008-02-17(svn r12167) -Feature(tte): change colour of autorail and autoroad selection ↵smatz
when Ctrl is pressed
2008-02-15(svn r12154) -Codechange: removed a magic numberglx
2008-02-14(svn r12135) -Codechange: Road and rail bridge selection windows were ↵belugas
identical apart the caption. So remove one window definition and set manually the caption accordingly. -Codechange: prepare the "type" of bridge parameter only once, at the beginning of the selection process. Makes less magic around.
2008-01-27(svn r11994) -Codechange: Remove numbers from string names where the strings ↵maedhros
aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
2008-01-27(svn r11993) -Fix: Resize station/roadstop/dock/airport construction windows ↵peter1138
if cargo acceptance list is too long.
2008-01-17(svn r11912) -Codechange: use dropdown widget for autoreplace, station ↵peter1138
builder and (second?) vehicle list windows
2008-01-15(svn r11859) -Codechange: Update newgrf station class dropdown to use new ↵peter1138
method of generating list.
2008-01-14(svn r11848) -Codechange: New class-based drop down list functionality. ↵peter1138
Lists are now dynamically generated, and can include parameters, or be extended however needed.
2008-01-13(svn r11834) -Codechange: only include settings_type.h if needed.rubidium
2008-01-13(svn r11828) -Codechange: include table/* as the last includes and remove an ↵rubidium
unneeded include from openttd.h.