src/widgets/dropdown.cpp
Mon, 25 Aug 2008 16:07:10 +0000 peter1138 (svn r14168) -Codechange: Make dropdown 'auto_width' a separate parameter, so that a minimum width can be specified.
Thu, 07 Aug 2008 18:26:13 +0000 peter1138 (svn r14015) -Codechange: Add facility for a drop down list to always close (if requested) when the mouse button is released.
Thu, 07 Aug 2008 18:11:09 +0000 peter1138 (svn r14014) -Codechange: Add support for automatically sizing drop down lists to the widest list item.
Wed, 06 Aug 2008 07:10:40 +0000 peter1138 (svn r14004) -Codechange: Clean of drop down lists.
Sun, 03 Aug 2008 02:18:45 +0000 belugas (svn r13970) -Codechange: Replace numbers with Colours enum on network, toolbar and dropdown guis.
Sat, 28 Jun 2008 15:44:24 +0000 frosch (svn r13649) -Codechange: Split the GfxFillRect() special flags from 'color' into their own parameter.
Tue, 27 May 2008 21:41:00 +0000 rubidium (svn r13301) -Fix [FS#1997]: resolve more MSVC 9 x64 warnings.
Mon, 26 May 2008 21:40:52 +0000 peter1138 (svn r13278) -Fix: Missing call to FindWindowPlacementAndResize() for drop down lists
Sun, 18 May 2008 20:40:30 +0000 rubidium (svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
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.
Tue, 13 May 2008 21:11:38 +0000 peter1138 (svn r13075) -Codechange: Allow any value for a dropdown item instead of just positive.
Sun, 11 May 2008 18:18:18 +0000 rubidium (svn r13052) -Codechange: make a class of the DropdownWindow.
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 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.
Sun, 04 May 2008 10:05:50 +0000 rubidium (svn r12941) -Codechange: don't access wndproc directly. Patch by Alberth.
Sat, 12 Apr 2008 22:12:27 +0000 peter1138 (svn r12675) -Codechange: Add support for custom drawing of drop down list items.
Sat, 12 Apr 2008 20:32:18 +0000 peter1138 (svn r12672) -Codechange: Add support for variably-sized drop down list items.
Thu, 10 Apr 2008 11:59:18 +0000 peter1138 (svn r12651) -Fix (r12644) [FS#1915]: Dropdown widget width should be one pixel less than window width, not one more.
Wed, 09 Apr 2008 23:00:12 +0000 rubidium (svn r12644) -Codechange: rework the order gui a little to prepare it for some future changes.
Mon, 07 Apr 2008 20:28:58 +0000 rubidium (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
Tue, 12 Feb 2008 12:54:51 +0000 peter1138 (svn r12121) -Fix [FS#1764]: Drop down item indexes are now an int instead of a byte (Yexo)
Sat, 19 Jan 2008 11:08:06 +0000 peter1138 (svn r11924) -Codechange: All dropdowns now use the dropdown widget, so compatibility code can be removed
Thu, 17 Jan 2008 18:09:15 +0000 peter1138 (svn r11901) -Add: add two widgets for dropdowns, one raised and one inset, to eventually replace use of two widgets for each dropdown control.
Tue, 15 Jan 2008 16:30:08 +0000 peter1138 (svn r11865) -Feature(tte): Support scrolling of drop down lists when in drag mode by moving the pointer above or below the list.
Tue, 15 Jan 2008 13:20:58 +0000 peter1138 (svn r11863) -Fix (r11848): One day I'll learn C++... Delete all items in a drop down list before deleting the list.
Tue, 15 Jan 2008 08:14:22 +0000 peter1138 (svn r11858) -Fix (r1679): Mask and rule colour in drop down lists using wrong source value. (r1679 partially reverted r1368)
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.