Tue, 13 May 2008 13:39:50 +0000 rubidium (svn r13067) -Codechange: make a class of the DepotWindow.
Tue, 13 May 2008 12:15:52 +0000 rubidium (svn r13066) -Fix [FS#2005]: loading of TTDP savegames with rivers in them.
Tue, 13 May 2008 10:17:04 +0000 rubidium (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
Tue, 13 May 2008 01:05:39 +0000 glx (svn r13064) -Codechange: make a class of the SelectPlayerFaceWindow.
Tue, 13 May 2008 00:46:04 +0000 belugas (svn r13063) -Fix(13062): Removal of old handler was not followed by removal in descriptor
Tue, 13 May 2008 00:37:29 +0000 belugas (svn r13062) -Codechange: make a class of the TransparencyToolbar.
Mon, 12 May 2008 21:46:08 +0000 glx (svn r13061) -Codechange: make a class of the BuildTreesWindow.
Mon, 12 May 2008 14:54:33 +0000 glx (svn r13060) -Codechange: update build industry window when raw_industry_construction setting is modified
Mon, 12 May 2008 00:26:44 +0000 glx (svn r13058) -Codechange: make a class of the ExtraViewportWindow.
Sun, 11 May 2008 19:47:10 +0000 glx (svn r13055) -Codechange: make a class of SmallMapWindow.
Sun, 11 May 2008 18:50:12 +0000 rubidium (svn r13054) -Codechange: make a class of the PlayerStationsWindow.
Sun, 11 May 2008 18:32:33 +0000 rubidium (svn r13053) -Codechange: station sorting used it's own implementation of GUIList and the associated enums, now it doesn't anymore.
Sun, 11 May 2008 18:18:18 +0000 rubidium (svn r13052) -Codechange: make a class of the DropdownWindow.
Sun, 11 May 2008 18:17:56 +0000 rubidium (svn r13051) -Codechange: depot_d belongs in depot_gui.cpp.
Sun, 11 May 2008 17:44:56 +0000 glx (svn r13050) -Codechange: make a class of IndustryViewWindow.
Sun, 11 May 2008 17:44:38 +0000 rubidium (svn r13049) -Codechange: make a class of the TooltipsWindow.
Sun, 11 May 2008 17:24:52 +0000 rubidium (svn r13048) -Codechange: make a class of the StationViewWindow.
Sun, 11 May 2008 15:08:44 +0000 glx (svn r13047) -Codechange: remove vp_d
Sun, 11 May 2008 15:00:11 +0000 rubidium (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
Sun, 11 May 2008 14:23:45 +0000 rubidium (svn r13045) -Codechange: make list_d (now GUIList) more generic and uniform.
Sun, 11 May 2008 14:09:38 +0000 rubidium (svn r13044) -Fix: deleting an already deleted window.
Sun, 11 May 2008 13:02:58 +0000 rubidium (svn r13043) -Codechange: remove some duplicate variables from news_d.
Sun, 11 May 2008 12:26:20 +0000 rubidium (svn r13042) -Codechange: make a class of CreateScenarioWindow, GenerateLandscapeWindow, NetworkChatWindow, NetworkCompanyPasswordWindow, NetworkGameWindow, NetworkStartServerWindow, QueryStringWindow, SaveLoadWindow. All these classes depended on the 'querystr_d' object which is now put into QueryStringBaseWindow. As a side effect this removes quite a lot of WP macro usages and a few global variables.
Sun, 11 May 2008 11:41:18 +0000 rubidium (svn r13041) -Fix: calling a virtual function on a not fully constructed object is bound to cause errors.
Sun, 11 May 2008 07:22:13 +0000 rubidium (svn r13040) -Codechange: make a class of the NetworkLobbyWindow.
Sun, 11 May 2008 06:59:51 +0000 rubidium (svn r13039) -Codechange: make a class of the Query window.
Sun, 11 May 2008 02:15:02 +0000 belugas (svn r13038) -Fix: When switching the signal gui patch to off, delete the signal window accordingly
Sat, 10 May 2008 23:44:15 +0000 rubidium (svn r13037) -Codechange: make a class of the ReplaceVehicle window.
Sat, 10 May 2008 23:43:08 +0000 glx (svn r13036) -Codechange: make a class of the BuildIndustry Window.
Sat, 10 May 2008 22:43:33 +0000 rubidium (svn r13035) -Codechange: remove two needless global-ish variables.
Sat, 10 May 2008 21:35:20 +0000 rubidium (svn r13034) -Fix: segmentation fault due do double delete when closing the OSK window in some cases.
Sat, 10 May 2008 19:59:41 +0000 smatz (svn r13033) -Fix [FS#2003](r13029): land info tool wasn't working
Sat, 10 May 2008 15:58:22 +0000 glx (svn r13032) -Codechange: make industry view window resizable and truncate strings
Sat, 10 May 2008 13:54:20 +0000 rubidium (svn r13031) -Codechange: make AssignWidgetToWindow a static function instead of a global one as it should only be used from window.cpp.
Sat, 10 May 2008 13:53:11 +0000 rubidium (svn r13030) -Codechange: do use MallocT instead of ReallocT when 100% sure that the pointer you are allocating to is NULL. Patch by Alberth.
Sat, 10 May 2008 13:46:36 +0000 rubidium (svn r13029) -Codechange: more work in the road to getting the WP macros and byte[WINDOW_CUSTOM_SIZE] removed. This step changes the event handling to work directly on the Window class instead of via a function pointer and big switches while keeping backward compatability while we're rewriting the Windows to the new scheme.
Sat, 10 May 2008 12:30:27 +0000 rubidium (svn r13028) -Codechange: WE_MESSAGE and WE_INVALIDATE_DATA were doing the same thing.
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.
Sat, 10 May 2008 02:59:52 +0000 belugas (svn r13026) -Codechange[FS#1999]: Further Dynamite Tool Unification.(Roujin)
Fri, 09 May 2008 15:27:00 +0000 rubidium (svn r13025) -Codechange: remove the need for two WindowEvents.
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.
Fri, 09 May 2008 07:47:30 +0000 peter1138 (svn r13023) -Revert (r1444): Revert changes to multihead engine weight -- the original values were correct.
Thu, 08 May 2008 23:26:17 +0000 smatz (svn r13022) -Fix: driver list wasn't freed, replace by statically allocated one
Thu, 08 May 2008 22:53:49 +0000 rubidium (svn r13021) -Codechange: free data_b for other uses when it is not used to store a second tile to skip to (in news messages). Patch by cirdan.
Thu, 08 May 2008 21:09:21 +0000 glx (svn r13020) -Codechange: make industry directory window horizontally resizable and truncate strings
Thu, 08 May 2008 20:05:32 +0000 glx (svn r13019) -Fix [FS#1997]: silence some more MSVC x64 warnings (michi_cc)
Thu, 08 May 2008 19:26:55 +0000 rubidium (svn r13018) -Codechange: make a class of the LandInfo Window.
Thu, 08 May 2008 16:48:29 +0000 smatz (svn r13016) -Codechange: unify the detection if rail catenary should be drawn
Thu, 08 May 2008 14:14:16 +0000 rubidium (svn r13015) -Codechange: move some 'WP' structs out of window_gui.h to the .cpp files where they are actually used.
Thu, 08 May 2008 14:04:52 +0000 glx (svn r13014) -Fix (r13008): mingw revealed some signed/unsigned warnings
Thu, 08 May 2008 13:51:15 +0000 rubidium (svn r13013) -Fix: GCC 4.3 warning about a clobbering mask due to longjmp. This can't be solved by using exceptions because the longjmp is needed for PNG (C-code) handling.
Thu, 08 May 2008 13:48:34 +0000 rubidium (svn r13012) -Fix (r13011): the PlaceProc that was moved depended on another function...
Thu, 08 May 2008 13:30:50 +0000 rubidium (svn r13011) -Codechange: move PlaceProc_BuyLand out of rail_gui.cpp to the place where it is used and remove some unneeded globalisations of some other PlaceProc functions.
Thu, 08 May 2008 13:29:35 +0000 rubidium (svn r13010) -Codechange: move the tree building GUI out of misc_gui.cpp.
Thu, 08 May 2008 13:21:55 +0000 rubidium (svn r13009) -Codechange: move more tile highlighting related functions/types to tilehighlight_*.h.
Thu, 08 May 2008 13:20:54 +0000 glx (svn r13008) -Fix [FS#1997]: silence some MSVC x64 warnings
Thu, 08 May 2008 13:06:12 +0000 rubidium (svn r13007) -Fix: some files in source.list where in the wrong category.
Thu, 08 May 2008 12:59:47 +0000 rubidium (svn r13006) -Codechange: GetMenuItemIndex is only used for the toolbar, so move it to there.
Thu, 08 May 2008 11:50:34 +0000 rubidium (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
Thu, 08 May 2008 11:31:41 +0000 rubidium (svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.