0ad/source/gui
wraitii 595c964d77 Make water specular more visible and fixes a few cases where it would actually hardly appear when it should.
Adds the ability to access an element in a dropdown box by typing the
first letters (Refs #1532).

This was SVN commit r13556.
2013-07-14 12:17:07 +00:00
..
scripting Implement location hotkeys. Fix #1882. 2013-06-09 20:21:19 +00:00
CButton.cpp Adds UI sounds for buttons, dropdowns, lists, and checkboxes, fixes #948 2013-07-01 04:15:09 +00:00
CButton.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CCheckBox.cpp Adds UI sounds for buttons, dropdowns, lists, and checkboxes, fixes #948 2013-07-01 04:15:09 +00:00
CCheckBox.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CDropDown.cpp Make water specular more visible and fixes a few cases where it would actually hardly appear when it should. 2013-07-14 12:17:07 +00:00
CDropDown.h Make water specular more visible and fixes a few cases where it would actually hardly appear when it should. 2013-07-14 12:17:07 +00:00
CGUI.cpp Change some size() > 0 to Based on patches by kuranes and Markus. Refs #1852, #1923. 2013-05-21 22:11:47 +00:00
CGUI.h Makes some classes NONCOPYABLE, based on patch by Markus, refs #1852 2013-05-22 21:40:56 +00:00
CGUIList.h Add GPL header 2009-04-18 17:00:33 +00:00
CGUIScrollBarVertical.cpp Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CGUIScrollBarVertical.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CGUISprite.cpp Clean up some text rendering to avoid relying on deprecated GL matrix state. 2012-01-29 20:04:21 +00:00
CGUISprite.h Move GUI renderer towards using shader infrastructure. 2012-02-08 20:43:38 +00:00
CImage.cpp Fix tooltip crash/corruption, caused by inconsistently changing types. 2011-02-18 22:36:39 +00:00
CImage.h Add GPL header 2009-04-18 17:00:33 +00:00
CInput.cpp Fix crash in VC++11 debug builds. Fixes #2028. Patch by RedFox. 2013-07-07 20:02:20 +00:00
CInput.h Adds blinking cursors with configurable rate, based on patch by kingadami. Fixes #876 2013-01-12 01:20:01 +00:00
CList.cpp Adds UI sounds for buttons, dropdowns, lists, and checkboxes, fixes #948 2013-07-01 04:15:09 +00:00
CList.h Properly re-initialize drop-down lists when the list items changes. Fixes #1558. 2012-07-31 03:34:09 +00:00
CProgressBar.cpp Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CProgressBar.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CRadioButton.cpp Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CRadioButton.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CText.cpp Fix "hides overloaded virtual function" warnings in Clang 2011-07-17 17:30:07 +00:00
CText.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
CTooltip.cpp Fixes multiline text alignment, fixes #723. Patch by kingadami. 2013-01-06 01:46:44 +00:00
CTooltip.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
GUI.h # Restructured GUI implementation 2009-12-03 20:17:22 +00:00
GUIbase.cpp Fix some static analysis warnings 2013-01-21 20:33:25 +00:00
GUIbase.h Added right click selection removal. Fixes #1028. Thanks to kingadami and GerbilOfDoom for the patch. 2013-01-03 22:53:46 +00:00
GUIManager.cpp Implements global tech modification function. Fixes #1358, refs #1520. 2012-07-03 02:16:45 +00:00
GUIManager.h # Allow saving and loading single-player games. 2011-10-30 00:07:28 +00:00
GUIRenderer.cpp Fixes some unconventional assignment operators, patch by Markus, refs #1852. 2013-05-22 22:04:58 +00:00
GUIRenderer.h Fixes some unconventional assignment operators, patch by Markus, refs #1852. 2013-05-22 22:04:58 +00:00
GUItext.cpp Avoid unnecessary use of printf in text renderer. 2012-02-25 17:14:47 +00:00
GUItext.h Remove a load of implicit CStr type conversions, since they're error-prone and can cause silent data loss. 2011-02-17 20:08:20 +00:00
GUITooltip.cpp split debug_assert into ENSURE and ASSERT as discussed in a previous meeting. 2011-04-30 13:01:45 +00:00
GUITooltip.h Game setup changes, including showing name, civ, team, and some options loaded from the scenarios. Civ data added. Civ info window to preview civs. Icon tooltips. Support for random map implementation. Fixes #590. 2010-10-30 04:02:42 +00:00
GUItypes.h Fix #402 (Clean up GUItypes.h), based on patch from Caius 2009-11-19 21:44:19 +00:00
GUIutil.cpp Move GUI renderer towards using shader infrastructure. 2012-02-08 20:43:38 +00:00
GUIutil.h Move GUI renderer towards using shader infrastructure. 2012-02-08 20:43:38 +00:00
IGUIButtonBehavior.cpp Adds UI sounds for buttons, dropdowns, lists, and checkboxes, fixes #948 2013-07-01 04:15:09 +00:00
IGUIButtonBehavior.h Added right click selection removal. Fixes #1028. Thanks to kingadami and GerbilOfDoom for the patch. 2013-01-03 22:53:46 +00:00
IGUIObject.cpp Fix tech overlay issue. 2012-05-02 22:57:35 +00:00
IGUIObject.h Fix tech overlay issue. 2012-05-02 22:57:35 +00:00
IGUIScrollBar.cpp Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
IGUIScrollBar.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
IGUIScrollBarOwner.cpp Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
IGUIScrollBarOwner.h Adds Skip method to SGUIMessage which works more or less like wxEvent.Skip: GUI objects can allow other event handlers to process an input event after they finish. 2011-04-28 20:42:11 +00:00
IGUITextOwner.cpp Fixes multiline text alignment, fixes #723. Patch by kingadami. 2013-01-06 01:46:44 +00:00
IGUITextOwner.h Fix "hides overloaded virtual function" warnings in Clang 2011-07-17 17:30:07 +00:00
MiniMap.cpp Adds VBO support to minimap entity rendering to improve performance, patch by kuranes. Refs #1923 2013-06-06 00:10:58 +00:00
MiniMap.h Adds VBO support to minimap entity rendering to improve performance, patch by kuranes. Refs #1923 2013-06-06 00:10:58 +00:00