aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* compat/chrono_literals: Add C++14 backport.cppAlexander Sulfrian2015-04-052-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.
* base/time: Replaces by std::chrono.Alexander Sulfrian2015-04-034-9/+10
|
* Replace boost::noncopyable with c++11 delete syntax.Alexander Sulfrian2015-04-032-4/+10
|
* menu/application: Remove singleton.Alexander Sulfrian2015-04-034-37/+25
| | | | | The singleton pattern should not be used in most cases, because it behaves like global variables.
* menu/text: Fix include path.Alexander Sulfrian2015-03-311-1/+1
|
* remove semicolon after namespaceAlexander Sulfrian2014-05-0448-57/+49
| | | | | Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
* fix problems with gcc >= 4.7Alexander Sulfrian2014-04-302-3/+5
|
* utils/colors: move colors into subdir, add hsvAlexander Sulfrian2014-04-085-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).
* menu/timer: use base/timestampAlexander Sulfrian2013-01-213-15/+9
|
* utils/activator: removed unnecessary templateAlexander Sulfrian2013-01-212-2/+2
|
* menu/application: add is_runningAlexander Sulfrian2013-01-212-0/+7
|
* menu/application: add quit() to quit the app from everywhereAlexander Sulfrian2013-01-212-5/+11
|
* menu/application: add free to allow multiple runsAlexander Sulfrian2013-01-212-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).
* menu/text: check error state firstAlexander Sulfrian2013-01-211-2/+1
|
* menu/drawable_control: add signals for mouse eventsAlexander Sulfrian2013-01-202-0/+18
|
* fix includesAlexander Sulfrian2013-01-2011-6/+31
|
* Merge remote-tracking branch 'origin/cpp' into cppAlexander Sulfrian2013-01-201-0/+1
|\ | | | | | | | | * origin/cpp: menu/control: add include to fix build for gcc 4.6
| * menu/control: add include to fix build for gcc 4.6Robin Nehls2013-01-181-0/+1
| |
* | menu/drawable_control: add static member for debug boxesAlexander Sulfrian2013-01-202-6/+21
| |
* | menu/drawable_control: fix focus with clippingAlexander Sulfrian2013-01-201-0/+1
| |
* | menu: add mouse manager for handling mouse focus and clicksAlexander Sulfrian2013-01-185-0/+246
| |
* | menu/mouse_event: add wrapper for mouse events to detect dbl-clicksAlexander Sulfrian2013-01-182-0/+143
| |
* | menu: add get_component_at to get componentAlexander Sulfrian2013-01-184-0/+49
|/ | | | This is the basis for mouse focus handling.
* menu/application: toggle debug boxes with dAlexander Sulfrian2013-01-181-0/+5
|
* drawable_control: add focusable propertyAlexander Sulfrian2013-01-183-2/+21
| | | | drawable controls could now disable the ability to receive focus
* text: resize text, if auto_size is enabledAlexander Sulfrian2013-01-181-2/+4
| | | | | Change the default for auto_size to false, so that it is not automatically resized during construction.
* menu/container: add window_coords_changeAlexander Sulfrian2013-01-182-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.
* menu/static: remove empty lineAlexander Sulfrian2013-01-181-1/+0
|
* menu/static: add getter for vertices_countAlexander Sulfrian2013-01-182-0/+6
|
* menu: mouse events now take points, not the single coordsAlexander Sulfrian2013-01-184-16/+18
|
* menu: fix calculate window coordinatesAlexander Sulfrian2013-01-184-4/+15
|
* menu/software_mouse_pointer: implement pressed stateAlexander Sulfrian2013-01-132-4/+65
|
* menu/event_manager: add more mouse eventsAlexander Sulfrian2013-01-134-3/+13
|
* menu/background_*: vertices are only recalculated if the size changedAlexander Sulfrian2013-01-134-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.
* menu/background_image: remove the unused texture colorAlexander Sulfrian2013-01-132-6/+1
|
* menu/texture: implement GlDelayedAllocation interfaceAlexander Sulfrian2013-01-136-45/+58
| | | | | Textures are now initialized during their first use, destroyed after their last used and could be use with the Activator.
* add const where applicableAlexander Sulfrian2013-01-132-9/+17
|
* menu/background: use boost::noncopyableAlexander Sulfrian2013-01-131-10/+7
|
* menu/gl_delayed_allocation: add helper for opengl allocationAlexander Sulfrian2013-01-132-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.
* menu: add some commentsAlexander Sulfrian2013-01-136-6/+61
|
* menu/application: add possibility to query if ogl threadAlexander Sulfrian2013-01-132-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.
* menu: use RgbColor.get_array(?) magic everywhereAlexander Sulfrian2013-01-136-65/+13
|
* menu/text: basic handling of auto sizeAlexander Sulfrian2013-01-132-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.
* menu: code style: change naming of bool-getter to is prefixAlexander Sulfrian2013-01-137-9/+9
|
* menu/static: code style: remove this/getter if not neededAlexander Sulfrian2013-01-131-4/+3
|
* base/config: add debug.boxes config optionAlexander Sulfrian2013-01-131-0/+10
| | | | | if debug.boxes is true in configuration file, a red border is drawn around all controls
* menu/static_rectangle: add implementation of static for rectanglesAlexander Sulfrian2013-01-132-0/+100
|
* menu/static: add infrastructure for simple geometric typesAlexander Sulfrian2013-01-132-0/+263
|
* menu/container: remove assertAlexander Sulfrian2013-01-131-1/+0
|
* base/config: add graphics.fullscreen optionAlexander Sulfrian2013-01-131-5/+7
|