aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-04-05compat/chrono_literals: Add C++14 backport.cppAlexander Sulfrian2-4/+6
Add user-defined literals for duration types (like the ones from C++14), Because these are user-defined they start with an underscore.
2015-04-03base/time: Replaces by std::chrono.Alexander Sulfrian4-9/+10
2015-04-03Replace boost::noncopyable with c++11 delete syntax.Alexander Sulfrian2-4/+10
2015-04-03menu/application: Remove singleton.Alexander Sulfrian4-37/+25
The singleton pattern should not be used in most cases, because it behaves like global variables.
2015-03-31menu/text: Fix include path.Alexander Sulfrian1-1/+1
2014-05-04remove semicolon after namespaceAlexander Sulfrian48-57/+49
Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
2014-04-30fix problems with gcc >= 4.7Alexander Sulfrian2-3/+5
2014-04-08utils/colors: move colors into subdir, add hsvAlexander Sulfrian5-6/+6
All color classes are now in an own subdirectory with a short name. The new class HsvColor represents the Hue/Saturation/Value color model and comes with conversion functions to and from rgb colors (currently integer arithmetic without optimization for higher presicion).
2013-01-21menu/timer: use base/timestampAlexander Sulfrian3-15/+9
2013-01-21utils/activator: removed unnecessary templateAlexander Sulfrian2-2/+2
2013-01-21menu/application: add is_runningAlexander Sulfrian2-0/+7
2013-01-21menu/application: add quit() to quit the app from everywhereAlexander Sulfrian2-5/+11
2013-01-21menu/application: add free to allow multiple runsAlexander Sulfrian2-0/+8
free() is used to reset the instance of this singleton, so that it gets recreated on the next access. This allows multiple creation/deletion cycles (for example in the tests).
2013-01-21menu/text: check error state firstAlexander Sulfrian1-2/+1
2013-01-20menu/drawable_control: add signals for mouse eventsAlexander Sulfrian2-0/+18
2013-01-20fix includesAlexander Sulfrian11-6/+31
2013-01-20menu/drawable_control: add static member for debug boxesAlexander Sulfrian2-6/+21
2013-01-20menu/drawable_control: fix focus with clippingAlexander Sulfrian1-0/+1
2013-01-18menu/control: add include to fix build for gcc 4.6Robin Nehls1-0/+1
2013-01-18menu: add mouse manager for handling mouse focus and clicksAlexander Sulfrian5-0/+246
2013-01-18menu/mouse_event: add wrapper for mouse events to detect dbl-clicksAlexander Sulfrian2-0/+143
2013-01-18menu: add get_component_at to get componentAlexander Sulfrian4-0/+49
This is the basis for mouse focus handling.
2013-01-18menu/application: toggle debug boxes with dAlexander Sulfrian1-0/+5
2013-01-18drawable_control: add focusable propertyAlexander Sulfrian3-2/+21
drawable controls could now disable the ability to receive focus
2013-01-18text: resize text, if auto_size is enabledAlexander Sulfrian1-2/+4
Change the default for auto_size to false, so that it is not automatically resized during construction.
2013-01-18menu/container: add window_coords_changeAlexander Sulfrian2-2/+30
The children container of a container have to be notified if the window coordinates of the parent changed. The children have to recalculate their own window coordinates.
2013-01-18menu/static: remove empty lineAlexander Sulfrian1-1/+0
2013-01-18menu/static: add getter for vertices_countAlexander Sulfrian2-0/+6
2013-01-18menu: mouse events now take points, not the single coordsAlexander Sulfrian4-16/+18
2013-01-18menu: fix calculate window coordinatesAlexander Sulfrian4-4/+15
2013-01-13menu/software_mouse_pointer: implement pressed stateAlexander Sulfrian2-4/+65
2013-01-13menu/event_manager: add more mouse eventsAlexander Sulfrian4-3/+13
2013-01-13menu/background_*: vertices are only recalculated if the size changedAlexander Sulfrian4-20/+66
The size of the parent component is cached by the backgrounds and the vertices to draw the backgrounds are only calculated again, if the size of the parent component changed.
2013-01-13menu/background_image: remove the unused texture colorAlexander Sulfrian2-6/+1
2013-01-13menu/texture: implement GlDelayedAllocation interfaceAlexander Sulfrian6-45/+58
Textures are now initialized during their first use, destroyed after their last used and could be use with the Activator.
2013-01-13add const where applicableAlexander Sulfrian2-9/+17
2013-01-13menu/background: use boost::noncopyableAlexander Sulfrian1-10/+7
2013-01-13menu/gl_delayed_allocation: add helper for opengl allocationAlexander Sulfrian2-0/+159
opengl allocation could not be done in the constructor of the opengl objects. The opengl calls only have effect when called form the opengl thread, but the objects could be constructed from other threads. The analogous applies to the destruction. This helper handles the allocation on first use from the opengl thread and frees the resources while calling dispose before real destruction (see Disposable). If dispose is called from the opengl thread, it frees the resources immediately, but if dispose is called from another thread it waits (blocks) until the next use from the opengl thread is complete.
2013-01-13menu: add some commentsAlexander Sulfrian6-6/+61
2013-01-13menu/application: add possibility to query if ogl threadAlexander Sulfrian2-0/+11
opengl calls should only executed in the thread, that created the opengl context. To query whether the current thread is the opengl thread, the application class stores the current thread id of the opengl thread after initializing opengl.
2013-01-13menu: use RgbColor.get_array(?) magic everywhereAlexander Sulfrian6-65/+13
2013-01-13menu/text: basic handling of auto sizeAlexander Sulfrian2-0/+18
If auto_size is false the control is setup clipping, so that the outside parts of the control gets discarded. If auto_size enable, the drawn parts outside the component rectangle are drawn. TODO: currently the component dost not really change its size. This could be necessary for sensible regions.
2013-01-13menu: code style: change naming of bool-getter to is prefixAlexander Sulfrian7-9/+9
2013-01-13menu/static: code style: remove this/getter if not neededAlexander Sulfrian1-4/+3
2013-01-13base/config: add debug.boxes config optionAlexander Sulfrian1-0/+10
if debug.boxes is true in configuration file, a red border is drawn around all controls
2013-01-13menu/static_rectangle: add implementation of static for rectanglesAlexander Sulfrian2-0/+100
2013-01-13menu/static: add infrastructure for simple geometric typesAlexander Sulfrian2-0/+263
2013-01-13menu/container: remove assertAlexander Sulfrian1-1/+0
2013-01-13base/config: add graphics.fullscreen optionAlexander Sulfrian1-5/+7
2013-01-13menu: add some commentsAlexander Sulfrian2-3/+25