aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* compat/chrono_literals: Add C++14 backport.cppAlexander Sulfrian2015-04-054-8/+92
| | | | | 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-0310-116/+24
|
* CMakeLists.txt: Add install target.Alexander Sulfrian2015-04-031-0/+6
|
* Replace boost::noncopyable with c++11 delete syntax.Alexander Sulfrian2015-04-034-10/+20
|
* utils/math: Remove custom implementation of min/max.Alexander Sulfrian2015-04-033-231/+8
| | | | The stl provieds sutable implementations.
* menu/application: Remove singleton.Alexander Sulfrian2015-04-036-57/+36
| | | | | The singleton pattern should not be used in most cases, because it behaves like global variables.
* gitignore: Simplified gitignore.Alexander Sulfrian2015-04-011-19/+2
| | | | | With the possibility of cmake to build inside a dedicated directory, we can simplify the gitignore file and removing all cmake stuff.
* doc: Change dot font to DejaVu.Alexander Sulfrian2015-04-011-1/+1
| | | | | | | | | With the old config, doxygen issues the following warning: | Warning: doxygen no longer ships with the FreeSans font. | You may want to clear or change DOT_FONTNAME. | Otherwise you run the risk that the wrong font is being used for dot | generated graphs.
* doc: Update Doxyfile to new version.Alexander Sulfrian2015-04-011-773/+1544
|
* CMakeList: Add usdx-coverage.Alexander Sulfrian2015-04-011-24/+36
| | | | | | | The new usdx-coverage target builds the usdx binary with coverage information. The object files are reused when building the tests with coverage infromation. This way we could build the binary and speed up the build on the build server.
* test: Fix include paths.Alexander Sulfrian2015-03-3110-13/+13
|
* menu/text: Fix include path.Alexander Sulfrian2015-03-311-1/+1
|
* CMakeLists: Save coverage into build dir.Alexander Sulfrian2015-03-311-1/+1
|
* CMakeLists: Simplified target names.Alexander Sulfrian2015-03-311-8/+8
| | | | | We do not need the test/ prefix for test binaries. We simple could use the possibility to run the build in a seperate directory.
* CMakeLists: We need cmake >= 2.8.8 for object libraries.Alexander Sulfrian2015-03-311-1/+1
|
* .gitignore cleanupAlexander Sulfrian2015-03-302-30/+26
|
* Remove plain makefiles. Use cmake.Alexander Sulfrian2015-03-309-141/+252
|
* remove semicolon after namespaceAlexander Sulfrian2014-05-04116-137/+121
| | | | | Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
* fix problems with gcc >= 4.7Alexander Sulfrian2014-04-303-4/+6
|
* utils/colors: move colors into subdir, add hsvAlexander Sulfrian2014-04-0814-52/+450
| | | | | | | 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-214-18/+51
|
* test/menu/application: add some application testsAlexander Sulfrian2013-01-211-0/+83
|
* 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-213-1/+9
| | | | | | 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).
* test/base/timestamp: some timestamp testsAlexander Sulfrian2013-01-211-0/+68
|
* menu/text: check error state firstAlexander Sulfrian2013-01-211-2/+1
|
* base/time: use float value to force float resultAlexander Sulfrian2013-01-211-1/+1
|
* menu/drawable_control: add signals for mouse eventsAlexander Sulfrian2013-01-202-0/+18
|
* fix includesAlexander Sulfrian2013-01-2020-11/+56
|
* 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.
* rectangle: add possibility to get dimensionAlexander Sulfrian2013-01-181-0/+5
|
* 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
|
* utils/rectangle: add is_in(Point)Alexander Sulfrian2013-01-181-0/+15
| | | | Add possibility to check whether a Point is inside the rectangle.
* utils/rectangle: add + and =+ operator to move rectangleAlexander Sulfrian2013-01-181-0/+19
| | | | | Points could be added to rectangles and moves the rectangle by this amount.
* utils/rectangle: add set_leftAlexander Sulfrian2013-01-181-0/+7
|
* menu: mouse events now take points, not the single coordsAlexander Sulfrian2013-01-184-16/+18
|
* base/timestamp: add class to store a point of timeAlexander Sulfrian2013-01-182-0/+108
|