src/osk_gui.cpp
Tue, 16 Dec 2008 17:58:27 +0000 rubidium (svn r14679) -Fix [FS#2431]: opening the OSK on the chatbox did disable map scrolling (with keyboard) until another window with editbox was opened and closed. Just "refcount" the open edit boxes instead of setting/clearing a bit when opening/closing a window.
Mon, 29 Sep 2008 16:27:02 +0000 rubidium (svn r14414) -Fix: replace instances of strncpy with strecpy as strncpy doesn't guarantee the resulting string is '\0'-terminated.
Mon, 11 Aug 2008 22:08:56 +0000 rubidium (svn r14046) -Codechange: make the size of querystring "widgets" more configurable.
Sat, 02 Aug 2008 02:28:17 +0000 belugas (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
Thu, 31 Jul 2008 16:42:11 +0000 belugas (svn r13896) -Codechange: Replace numbers with Colours enum on newgrf, order and osk guis
Wed, 28 May 2008 15:28:27 +0000 smatz (svn r13310) -Fix: invalidate OSK when parent editbox changes (from keyboard)
Mon, 19 May 2008 09:48:47 +0000 rubidium (svn r13185) -Codechange: remove everything related to the WindowProc callbacks.
Mon, 19 May 2008 09:24:03 +0000 rubidium (svn r13182) -Doc: add documentation to mostly rail_gui related functions. Patch by Alberth.
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 18:26:45 +0000 rubidium (svn r13105) -Fix [FS#2015]: the title of a query window would (sometimes) change when the on screen keyboard was opened.
Wed, 14 May 2008 02:32:35 +0000 glx (svn r13083) -Fix (r13042): another segmentation fault when OskWindow's parent closes it
Wed, 14 May 2008 01:57:12 +0000 glx (svn r13082) -Fix (r13042): segmentation fault due to too early deletion of OskWindow.
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.
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 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.
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.
Sun, 04 May 2008 10:05:50 +0000 rubidium (svn r12941) -Codechange: don't access wndproc directly. Patch by Alberth.
Wed, 26 Mar 2008 11:50:53 +0000 rubidium (svn r12428) -Fix [FS#1878]: loading from the config file could fail even when the data is correct. Patch by Dominik.
Wed, 26 Mar 2008 10:08:17 +0000 rubidium (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.