src/window_gui.h
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.
Tue, 14 Oct 2008 19:27:08 +0000 rubidium (svn r14466) -Doc: remove some obsolete parameters, fix a few parameter names in comments and add a little more doxygen documentation.
Tue, 30 Sep 2008 20:51:04 +0000 rubidium (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
Tue, 30 Sep 2008 20:39:50 +0000 rubidium (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
Wed, 24 Sep 2008 16:40:06 +0000 smatz (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
Tue, 23 Sep 2008 19:25:00 +0000 rubidium (svn r14392) -Fix [FS#1404]: some widgets saw a single click as multiple clicks.
Tue, 23 Sep 2008 15:24:15 +0000 rubidium (svn r14390) -Codechange: replace magic constants with symbolic constants.
Sun, 03 Aug 2008 17:35:08 +0000 peter1138 (svn r13977) -Codechange: Let ResizeWindowForWidget() handle hidden (zero height or zero width) widgets.
Sat, 02 Aug 2008 11:26:25 +0000 frosch (svn r13922) -Codechange: Move measurement-tooltip related stuff out of the general tooltip window.
Fri, 01 Aug 2008 09:34:34 +0000 rubidium (svn r13910) -Document: string drawing related functions and types (Alberth)
Fri, 18 Jul 2008 20:44:35 +0000 rubidium (svn r13732) -Feature: add a few extra columns with information to the server list. Patch by Pegasus.
Thu, 29 May 2008 11:13:11 +0000 rubidium (svn r13322) -Codechange: _no_scroll belongs more with the window code.
Thu, 29 May 2008 06:49:56 +0000 rubidium (svn r13318) -Codechange: move some functions from gui.h/misc_gui.cpp to window_gui.h/window.cpp because they belong there.
Sat, 24 May 2008 11:19:30 +0000 frosch (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
Mon, 19 May 2008 09:48:47 +0000 rubidium (svn r13185) -Codechange: remove everything related to the WindowProc callbacks.
Sun, 18 May 2008 20:40:30 +0000 rubidium (svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
Sun, 18 May 2008 12:40:38 +0000 rubidium (svn r13160) -Codechange: prepare GUIPlaceProcDragXY for the removal of WindowEvent.
Sat, 17 May 2008 23:11:06 +0000 rubidium (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
Sat, 17 May 2008 13:04:30 +0000 rubidium (svn r13141) -Codechange: remove an unused variable from Window.
Sat, 17 May 2008 13:01:30 +0000 rubidium (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
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.
Sat, 17 May 2008 12:26:00 +0000 rubidium (svn r13138) -Codechange: remove the need for IsWindowOfPrototype.
Sat, 17 May 2008 03:29:16 +0000 belugas (svn r13133) -Codechange: Add a base class (descending from Window) for all new windows that are going to require a ResetObjectToPlace to be performed on closing.
Fri, 16 May 2008 23:30:10 +0000 rubidium (svn r13130) -Codechange: remove some of the (old) WindowEvent wrapper functions/enums/variables as they are not used anymore.
Fri, 16 May 2008 23:29:31 +0000 rubidium (svn r13129) -Codechange: remove the WP macro and it's related variables.
Fri, 16 May 2008 07:34:48 +0000 rubidium (svn r13117) -Codechange: make a window class of the PlayerFinancesWindow.
Thu, 15 May 2008 20:04:10 +0000 rubidium (svn r13108) -Codechange: make a Window subclass of the main toolbars sub menus.
Thu, 15 May 2008 14:41:56 +0000 rubidium (svn r13104) -Codechange: make ResetObjectToPlace safe to be called recursively via the OnPlaceObjectAbort callback and use this knowledge to simplify closing some windows.
Thu, 15 May 2008 14:12:22 +0000 rubidium (svn r13103) -Codechange: make a class of the PlayerCompanyWindow.
Tue, 13 May 2008 14:43:33 +0000 rubidium (svn r13069) -Codechange: it is no longer needed to pass a void *data pointer with the WE_CREATE message because nothing uses it anymore.
Sun, 11 May 2008 18:17:56 +0000 rubidium (svn r13051) -Codechange: depot_d belongs in depot_gui.cpp.
Sun, 11 May 2008 15:08:44 +0000 glx (svn r13047) -Codechange: remove vp_d
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 11:41:18 +0000 rubidium (svn r13041) -Fix: calling a virtual function on a not fully constructed object is bound to cause errors.
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: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.
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.
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 13:29:35 +0000 rubidium (svn r13010) -Codechange: move the tree building GUI out of misc_gui.cpp.
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.
Wed, 07 May 2008 13:10:15 +0000 rubidium (svn r12987) -Codechange: split viewport and tile selection.
Tue, 06 May 2008 22:17:12 +0000 rubidium (svn r12977) -Codechange: remove quite some redundant (duplicate) function declarations.
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.
Sat, 19 Apr 2008 13:28:48 +0000 rubidium (svn r12790) -Codechange: code style fixes. Patch by Alberth.
Fri, 18 Apr 2008 04:37:06 +0000 rubidium (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
Thu, 17 Apr 2008 09:42:44 +0000 rubidium (svn r12749) -Codechange: store the viewport information in the windows that have a viewport instead of one global array with a viewport for each window, even when they do not use the viewport.
Sun, 13 Apr 2008 19:25:14 +0000 rubidium (svn r12695) -Codechange: only allocate window structs when needed. Based on a patch by Alberth.
Sun, 13 Apr 2008 19:01:26 +0000 rubidium (svn r12693) -Documentation: add some documentation to some window related stuff. Based on a patch by Albert.
Fri, 11 Apr 2008 21:19:03 +0000 rubidium (svn r12663) -Codechange: move the definition from 'order_d' to a more appropriate place and do not misuse it for the time table GUI.
Mon, 07 Apr 2008 20:28:58 +0000 rubidium (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
Fri, 28 Mar 2008 16:36:32 +0000 rubidium (svn r12470) -Codechange: split order related types from order.h (and openttd.h) to order_type.h.
Fri, 28 Mar 2008 16:34:50 +0000 rubidium (svn r12469) -Codechange: split type related stuff from group.h (and openttd.h) to group_type.h.
Fri, 28 Mar 2008 08:53:36 +0000 rubidium (svn r12459) -Codechange: split news.h into news_type.h and news_func.h.
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.