src/settings_gui.cpp
Fri, 05 Dec 2008 22:46:39 +0000 rubidium (svn r14658) -Change: allow changing town names when there are no towns in the scenario yet.
Sun, 23 Nov 2008 12:35:02 +0000 peter1138 (svn r14609) -Codechange: Use supplied button colour instead of hardcoded yellow, for 'greyed out' arrow buttons. (Yorick)
Sun, 02 Nov 2008 11:20:15 +0000 skidd13 (svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible
Mon, 13 Oct 2008 03:40:48 +0000 rubidium (svn r14462) -Codechange: replace magic number with already existing constant (Albert)
Sun, 28 Sep 2008 15:42:15 +0000 frosch (svn r14412) -Documentation: Comment some functions related to the advanced settings. Patch by Alberth, but with less excessive use of 'at'.
Tue, 23 Sep 2008 15:24:15 +0000 rubidium (svn r14390) -Codechange: replace magic constants with symbolic constants.
Mon, 15 Sep 2008 16:29:40 +0000 smatz (svn r14331) -Codechange: use an enum as additional parameter for ShowQueryString()
Fri, 08 Aug 2008 06:02:06 +0000 peter1138 (svn r14018) -Fix (r14017): Typos prevented compilation.
Fri, 08 Aug 2008 03:37:00 +0000 belugas (svn r14017) -Codechange: DrawArrowButtons now uses Colours enum to specify the colour of the button
Sat, 02 Aug 2008 22:49:23 +0000 rubidium (svn r13935) -Codechange [YAPP]: PBS signals can now be built with the normal signal tools. (michi_cc)
Sat, 02 Aug 2008 22:47:34 +0000 rubidium (svn r13927) -Add [YAPP]: Draw reserved tracks darker, toggeld by a patch setting. (michi_cc)
Fri, 01 Aug 2008 03:43:53 +0000 belugas (svn r13907) -Codechange: Replace a number with Colours enum on DrawFrameRect usage
Thu, 31 Jul 2008 17:45:52 +0000 belugas (svn r13900) -Codechange: Replace numbers with Colours enum on settings, smallmaps, stations and signs guis.
Thu, 17 Jul 2008 13:47:04 +0000 rubidium (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
Sat, 28 Jun 2008 15:44:24 +0000 frosch (svn r13649) -Codechange: Split the GfxFillRect() special flags from 'color' into their own parameter.
Tue, 24 Jun 2008 09:05:24 +0000 smatz (svn r13618) -Codechange: move tar-specific declarations to separate file
Mon, 16 Jun 2008 19:38:41 +0000 smatz (svn r13537) -Fix [FS#2090](r13523): QSortT won't work this way, use Dimension instead of uint16[2] for resolutions
Thu, 05 Jun 2008 11:26:38 +0000 rubidium (svn r13386) -Fix: global currency/units setting being overriden when loading a savegame.
Thu, 29 May 2008 21:35:49 +0000 rubidium (svn r13335) -Fix: remove rogue (debugging) printf.
Thu, 29 May 2008 15:13:28 +0000 rubidium (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
Mon, 26 May 2008 00:31:36 +0000 rubidium (svn r13256) -Codechange: merge the OPTS and PATS chuncks.
Sun, 25 May 2008 22:36:44 +0000 rubidium (svn r13255) -Codechange: move _opt to _settings.
Sun, 25 May 2008 19:17:03 +0000 rubidium (svn r13251) -Codechange: rename _patches to _settings as that is more logic.
Sun, 25 May 2008 12:57:39 +0000 rubidium (svn r13242) -Codechange: remove _opt_ptr.
Sat, 24 May 2008 02:54:47 +0000 belugas (svn r13226) -Feature: Allow to have more than only two airports per town. The number of airports is now controlled by the noise each of them generates, the distance from town's center and how tolerant the town is.
Mon, 19 May 2008 09:48:47 +0000 rubidium (svn r13185) -Codechange: remove everything related to the WindowProc callbacks.
Sun, 18 May 2008 17:40:13 +0000 rubidium (svn r13166) -Codechange: CmdSetRoadDriveSide belongs in road_cmd.cpp, not settings_gui.cpp.
Sun, 18 May 2008 12:17:52 +0000 rubidium (svn r13158) -Codechange: make a class of the GameOptionsWindow.
Sat, 17 May 2008 12:48:06 +0000 rubidium (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
Thu, 15 May 2008 21:48:47 +0000 rubidium (svn r13112) -Codechange: make classes of the patches and custom currency windows.
Thu, 15 May 2008 00:01:42 +0000 glx (svn r13097) -Codechange: make a class of the GameDifficultyWindow.
Sat, 10 May 2008 08:58:52 +0000 rubidium (svn r13027) -Codechange: use StrEmpty instead of arr[0] == '\0' and remove the need for WE_ON_EDIT_TEXT_CANCEL.
Fri, 09 May 2008 09:29:27 +0000 rubidium (svn r13024) -Codechange: do not use WE_MOUSELOOP when WE_TICK suffices, rename WE_4 to something more descriptive and correct some (completely incorrect) comments.
Thu, 08 May 2008 11:31:41 +0000 rubidium (svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Tue, 06 May 2008 22:08:18 +0000 rubidium (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
Tue, 06 May 2008 21:28:30 +0000 rubidium (svn r12975) -Codechange: replace DeleteWindow(w) with delete w.
Tue, 06 May 2008 15:11:33 +0000 rubidium (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
Mon, 05 May 2008 02:11:12 +0000 belugas (svn r12951) -Fix(r9762)[FS#1977): Revert the new difficulty settings of town and industries back to their initial values.
Tue, 29 Apr 2008 21:31:29 +0000 peter1138 (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
Fri, 18 Apr 2008 04:37:06 +0000 rubidium (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
Thu, 10 Apr 2008 08:30:15 +0000 rubidium (svn r12648) -Feature: allow four different non-stop types in a single game instead of two. The "TTDP compatible order" setting now only sets the default behaviour of new trains.
Thu, 03 Apr 2008 19:55:40 +0000 smatz (svn r12547) -Feature: invisibility options to make objects invisible instead of transparent
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.
Mon, 31 Mar 2008 00:06:17 +0000 rubidium (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
Wed, 27 Feb 2008 21:07:12 +0000 peter1138 (svn r12293) -Feature: Ability to change aircraft speed factor, from so
Mon, 18 Feb 2008 13:19:57 +0000 peter1138 (svn r12175) -Fix (r12174): Ensure the patches window is centred properly.
Mon, 18 Feb 2008 12:36:10 +0000 peter1138 (svn r12174) -Codechange: Make the patches window dynamically resize to the largest patch tab, so adding patch options is simply a case of adding to the lists.
Wed, 13 Feb 2008 14:21:36 +0000 smatz (svn r12129) -Change [FS#1759]: simplified patch settings for pathfinders (Yorick)
Fri, 08 Feb 2008 17:53:01 +0000 glx (svn r12087) -Fix: MSVC warnings
Thu, 07 Feb 2008 16:17:00 +0000 glx (svn r12080) -Fix: update waypoint signs when changing language
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.
Thu, 24 Jan 2008 18:35:35 +0000 skidd13 (svn r11978) -Codechange: Replace some global variables with window owned ones
Thu, 17 Jan 2008 18:10:27 +0000 peter1138 (svn r11902) -Codechange: use new dropdown widget for game options window
Thu, 17 Jan 2008 02:10:26 +0000 glx (svn r11888) -Codechange: simplify sorting of the strings in town names dropdown
Thu, 17 Jan 2008 00:21:43 +0000 glx (svn r11886) -Add: sort the strings in languages dropdown
Wed, 16 Jan 2008 23:46:46 +0000 peter1138 (svn r11884) -Cleanup: leftover use of widget numbers instead of enum
Mon, 14 Jan 2008 16:10:58 +0000 peter1138 (svn r11848) -Codechange: New class-based drop down list functionality. Lists are now dynamically generated, and can include parameters, or be extended however needed.
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 14:23:25 +0000 rubidium (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.