Tue, 13 Feb 2007 10:17:24 +0000(svn r8697) [cpp_gui] -Codechange: changed IsWindowOfPrototype() is a Window method cpp_gui
bjarni [Tue, 13 Feb 2007 10:17:24 +0000] rev 6239
(svn r8697) [cpp_gui] -Codechange: changed IsWindowOfPrototype() is a Window method

Tue, 13 Feb 2007 09:54:37 +0000(svn r8696) [cpp_gui] -Codechange: changed GetMenuItemIndex() and ResizeWindow() into Window methods cpp_gui
bjarni [Tue, 13 Feb 2007 09:54:37 +0000] rev 6238
(svn r8696) [cpp_gui] -Codechange: changed GetMenuItemIndex() and ResizeWindow() into Window methods

Tue, 13 Feb 2007 01:04:32 +0000(svn r8695) [cpp_gui] -Codechange: changed AssignWidgetToWindow() and InvalidateWidget() into Window methods cpp_gui
bjarni [Tue, 13 Feb 2007 01:04:32 +0000] rev 6237
(svn r8695) [cpp_gui] -Codechange: changed AssignWidgetToWindow() and InvalidateWidget() into Window methods

Mon, 12 Feb 2007 23:12:02 +0000(svn r8693) [cpp_gui] -Fix: g++ compilation errors 'non-local function A uses local type B' (template arguments must have external linkage while local type has no linkage) cpp_gui
KUDr [Mon, 12 Feb 2007 23:12:02 +0000] rev 6236
(svn r8693) [cpp_gui] -Fix: g++ compilation errors 'non-local function A uses local type B' (template arguments must have external linkage while local type has no linkage)

Sun, 11 Feb 2007 22:57:24 +0000(svn r8683) [cpp_gui] -Codechange: first steps towards OO GUI (together with Bjarni) without changes in the logic cpp_gui
KUDr [Sun, 11 Feb 2007 22:57:24 +0000] rev 6235
(svn r8683) [cpp_gui] -Codechange: first steps towards OO GUI (together with Bjarni) without changes in the logic
-Windows are now constructed/destroyed when needed instead of reusing them from _windows[25]. This array is now replaced by std::list<> of smart pointers (eliminates the need of _z_windows)
-some Window related functions turned into Window (or WindowList) methods
-note that although the number of windows is now unlimited, the maximum number of viewports is still hardcoded. This causes game crash when too many industry windows are opened.
-tested only on VC8/WinXP

Sun, 11 Feb 2007 21:20:30 +0000(svn r8682) [cpp_gui] -Branch: branch for making the windows code object oriented cpp_gui
bjarni [Sun, 11 Feb 2007 21:20:30 +0000] rev 6234
(svn r8682) [cpp_gui] -Branch: branch for making the windows code object oriented
This will clean up a lot of hacks and remove some limitations.
It will also make it easier to understand how to create and handle the window interface.

Sun, 11 Feb 2007 19:31:29 +0000(svn r8681) -Fix (FS#608): wrong comment (rfalke)
rubidium [Sun, 11 Feb 2007 19:31:29 +0000] rev 6233
(svn r8681) -Fix (FS#608): wrong comment (rfalke)

Sun, 11 Feb 2007 17:39:28 +0000(svn r8680) [Configure] -Codechange: allow a bit more flexible code in check_compiler
truelight [Sun, 11 Feb 2007 17:39:28 +0000] rev 6232
(svn r8680) [Configure] -Codechange: allow a bit more flexible code in check_compiler

Sun, 11 Feb 2007 17:36:46 +0000(svn r8679) [Configure] -Fix: 'checking for' and 'checking' was used mixed, now only 'checking' is used
truelight [Sun, 11 Feb 2007 17:36:46 +0000] rev 6231
(svn r8679) [Configure] -Fix: 'checking for' and 'checking' was used mixed, now only 'checking' is used
-Fix: 'checking host g++/gcc' is silly, changed it to 'checking host c++/cc'

Sun, 11 Feb 2007 16:28:00 +0000(svn r8678) [PSP] -Add: added LIBS and CFLAGS needed to compile PSP
truelight [Sun, 11 Feb 2007 16:28:00 +0000] rev 6230
(svn r8678) [PSP] -Add: added LIBS and CFLAGS needed to compile PSP
-Fix: PSP needs to link with gcc, not with g++ (don't ask)
-Fix: PSP doens't support threads