src/train_gui.cpp
Mon, 07 Apr 2008 12:36:50 +0000 smatz (svn r12605) -Cleanup: variable scope and coding style in train*
Sat, 05 Apr 2008 11:27:50 +0000 smatz (svn r12576) -Feature(tte) [FS#337]: highlight vehicle chain when dragging in the group and depot GUI if appropriate
Mon, 31 Mar 2008 00:17:39 +0000 rubidium (svn r12490) -Codechange: rename engine.h to engine_func.h and remove unneeded inclusions of engine.h and/or replace them with engine_type.h.
Sun, 30 Mar 2008 23:24:18 +0000 rubidium (svn r12488) -Codechange: split order.h into order_base.h and order_func.h.
Sun, 27 Jan 2008 17:32:12 +0000 maedhros (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
Sun, 13 Jan 2008 01:21:35 +0000 rubidium (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Wed, 09 Jan 2008 09:45:45 +0000 rubidium (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
Mon, 07 Jan 2008 00:57:19 +0000 rubidium (svn r11774) -Change: do not include variables.h in a header when it is not needed.
Thu, 27 Dec 2007 13:35:39 +0000 rubidium (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
Fri, 21 Dec 2007 21:50:46 +0000 rubidium (svn r11677) -Codechange: move price and command related types/functions to their respective places.
Fri, 21 Dec 2007 19:49:27 +0000 rubidium (svn r11675) -Codechange: split the string types from the string functions.
Wed, 19 Dec 2007 20:45:46 +0000 rubidium (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
Wed, 19 Dec 2007 19:44:29 +0000 rubidium (svn r11667) -Codechange: split window.h into a header that defines some 'global' window related types, on that defined 'global' window functions and one that defines functions and types only used by *_gui.cpps.
Sun, 04 Nov 2007 00:08:57 +0000 belugas (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
Fri, 28 Sep 2007 21:15:45 +0000 rubidium (svn r11184) -Codechange: cleanup the code related to backup orders.
Wed, 05 Sep 2007 23:26:45 +0000 rubidium (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
Thu, 30 Aug 2007 13:03:56 +0000 rubidium (svn r11003) -Codechange: replace Vehicle->next to Vehicle->Next() and Vehicle->SetNext() so we can trap instances that change a next pointer and (in the future) update the first/previous pointers based on that.
Wed, 29 Aug 2007 21:27:16 +0000 rubidium (svn r10999) -Codechange: unify the way the running cost of a vehicle is determined. Patch by nycom.
Wed, 29 Aug 2007 20:50:58 +0000 rubidium (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
Tue, 28 Aug 2007 06:46:33 +0000 rubidium (svn r10995) -Codechange: unify the way to get the displayed maxium speed of a vehicle. Patch by nycom.
Sun, 26 Aug 2007 21:21:59 +0000 rubidium (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
Sun, 26 Aug 2007 20:43:22 +0000 rubidium (svn r10984) -Codechange: unify the way one can get the current speed in the same forwat so we can display it.
Fri, 27 Jul 2007 12:49:04 +0000 rubidium (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
Wed, 25 Jul 2007 00:16:30 +0000 rubidium (svn r10684) -Codechange: some more coding style related changes. Primarily moving { to a new line.
Mon, 16 Jul 2007 09:16:58 +0000 rubidium (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
Sun, 01 Jul 2007 19:11:47 +0000 rubidium (svn r10408) -Codechange: make GetImage a class method of Vehicle instead of Get(Aircraft|RoadVeh|Ship|Train)Image.
Mon, 25 Jun 2007 17:29:03 +0000 maedhros (svn r10328) -Codechange: Close the timetable window when closing the vehicle window.
Mon, 25 Jun 2007 14:46:32 +0000 peter1138 (svn r10324) -Codechange: reference engine names by index
Sun, 24 Jun 2007 22:42:11 +0000 peter1138 (svn r10314) -Codechange: Refer to vehicle names by index
Fri, 22 Jun 2007 11:58:59 +0000 rubidium (svn r10266) -Codechange: keep track of the origin, time of travel and accumulated feeder share (transfers) of individual pieces of cargo. This means that cargo isn't thrown on a big pile when it's put in a station or unloaded at a station, however the GUI does not reflect these changes yet so you will not actually see it.
Thu, 21 Jun 2007 17:25:17 +0000 rubidium (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
Thu, 21 Jun 2007 14:54:51 +0000 rubidium (svn r10247) -Fix (r10210): *always* call SetDParamMoney when you want to place money in some string.
Tue, 15 May 2007 14:08:39 +0000 truelight (svn r9844) -Codechange: replace zoomlevel with an enum
Wed, 18 Apr 2007 22:41:53 +0000 rubidium (svn r9673) -Cleanup: remove spaces before tabs and replace non-indenting tabs with spaces.
Wed, 04 Apr 2007 03:21:14 +0000 belugas (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
Sun, 03 Feb 2008 20:34:26 +0000 rubidium (svn r12053) [NewGRF_ports] -Sync: with trunk r11949:12050. NewGRF_ports
Tue, 22 Jan 2008 21:00:30 +0000 rubidium (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949. NewGRF_ports
Mon, 03 Dec 2007 23:39:38 +0000 rubidium (svn r11566) [NewGRF_ports] -Sync: with trunk r11218:r11565. NewGRF_ports
Sat, 06 Oct 2007 21:16:00 +0000 rubidium (svn r11219) [NewGRF_ports] -Sync: with trunk r11035:11218. NewGRF_ports
Sun, 02 Sep 2007 11:58:58 +0000 rubidium (svn r11037) [NewGRF_ports] -Sync: with trunk r10844:11035. NewGRF_ports
Fri, 03 Aug 2007 18:10:15 +0000 richk (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765 NewGRF_ports
Mon, 16 Jul 2007 21:22:24 +0000 richk (svn r10595) [NewGRF_ports] -Sync: with trunk r10559-10593 NewGRF_ports
Sat, 14 Jul 2007 19:42:58 +0000 richk (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559 NewGRF_ports
Sat, 02 Jun 2007 19:59:29 +0000 richk (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026 NewGRF_ports
Wed, 21 Mar 2007 13:19:01 +0000 peter1138 (svn r9388) -Codechange: variable scope and type, and standardify all CargoID loops.
Thu, 08 Mar 2007 16:27:54 +0000 rubidium (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
Fri, 02 Mar 2007 18:49:11 +0000 richk (svn r8978) -Feature: Rewrite of transfer system.
Tue, 13 Feb 2007 10:46:45 +0000 rubidium (svn r8701) -Codechange: replace magic numbers with enums for u.rail.track.
Sat, 21 Apr 2007 08:23:57 +0000 KUDr (svn r9708) [cpp_gui] -Sync with trunk (r9633:9707) cpp_gui
Sun, 15 Apr 2007 17:04:44 +0000 KUDr (svn r9639) [cpp_gui] -Sync with trunk (r9476:9633) cpp_gui
Mon, 26 Mar 2007 22:15:38 +0000 KUDr (svn r9486) [cpp_gui] -Sync with trunk (r9100:9476) cpp_gui
Sun, 11 Mar 2007 16:31:18 +0000 bjarni (svn r9119) [cpp_gui] -Sync with trunk (r9003:9100) cpp_gui
Sun, 04 Mar 2007 04:25:36 +0000 KUDr (svn r9004) [cpp_gui] -Sync with trunk (r8900..r9003) cpp_gui
Tue, 27 Feb 2007 13:26:47 +0000 KUDr (svn r8913) [cpp_gui] -Codechange: use BaseWindow accessors instead of accessing window size/position directly cpp_gui
Sun, 18 Feb 2007 14:17:28 +0000 KUDr (svn r8801) [cpp_gui] -Codechange: few changes towards OO GUI: cpp_gui
Wed, 14 Feb 2007 10:46:38 +0000 bjarni (svn r8731) [cpp_gui] -Sync: r8730 from trunk cpp_gui
Tue, 13 Feb 2007 23:07:54 +0000 KUDr (svn r8718) [cpp_gui] -Codechange: SetWindowWidgetHiddenState(), HideWindowWidget(), ShowWindowWidget() and IsWindowWidgetHidden() turned into Window methods cpp_gui
Tue, 13 Feb 2007 22:17:48 +0000 KUDr (svn r8714) [cpp_gui] -Codechange: DisableWindowWidget() and EnableWindowWidget() turned into Window methods cpp_gui
Tue, 13 Feb 2007 22:09:37 +0000 KUDr (svn r8713) [cpp_gui] -Codechange: SetWindowWidgetDisabledState turned into Window method cpp_gui