aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* utils/point: addition/subtraction should only be possible with same typeAlexander Sulfrian2013-01-131-4/+4
|
* tests: changed CPPUNIT_ASSERT to CPPUNIT_ASSERT_EQUAL for better error msgsAlexander Sulfrian2013-01-135-89/+89
|
* test/utils/math: test the math helper functionsAlexander Sulfrian2013-01-131-0/+157
|
* test: initialize log for test outputAlexander Sulfrian2013-01-131-0/+3
|
* menu/text: realign on size change of controlAlexander Sulfrian2013-01-132-0/+15
|
* menu/drawable_control: set_size should be virtual so it could be overwrittenAlexander Sulfrian2013-01-131-2/+2
|
* menu/text: added variable vertical alignment in the box of the controlAlexander Sulfrian2013-01-134-5/+185
|
* utils/rectangle: could get top/bottom/left/right coordinates from RectangleAlexander Sulfrian2013-01-133-13/+24
|
* utils/rectangle: added ctor to create a Rectange from a FTBoxAlexander Sulfrian2013-01-131-0/+8
|
* utils/math: added abs/min/max as static template functionsAlexander Sulfrian2013-01-131-0/+69
|
* utils/rectangle: the points should be modifiableAlexander Sulfrian2013-01-131-2/+2
|
* menu/text: renamed text_mutex to font_mutexAlexander Sulfrian2013-01-132-3/+4
| | | | | | no the font_mutex should not only serialize all accesses to the text, that should be drawn, also all accesses to the under laying font object should not be at the same time
* menu/text: reordered includes in header fileAlexander Sulfrian2013-01-131-3/+4
|
* menu/software_mouse_pointer: hide after 2s without movementAlexander Sulfrian2013-01-132-0/+9
|
* menu/timer: added simple timer to wait until duration is completedAlexander Sulfrian2013-01-132-0/+125
|
* doc: renamed doxygen config to standard nameAlexander Sulfrian2013-01-131-0/+0
|
* gitignore: ignore rotated logfilesAlexander Sulfrian2013-01-131-1/+1
|
* menu/text: added simple text class and a demo in the loading frameAlexander Sulfrian2013-01-134-0/+176
|
* menu/container: clipping requires window coordinatesAlexander Sulfrian2013-01-133-3/+15
| | | | | | glScissor only work with window coordinates. to calculate that a control has to know it position on the window and therefor the parent container have to track the position in the window
* menu/container: cleanup while destruction of containerAlexander Sulfrian2013-01-133-4/+16
| | | | | | | | while a container is destructed, the parent of all containing controls will be removed, so that the controls it self do not try to unregister itself from the destroyed container later (while destruction the control class of the container and destroying all slave controls)
* menu/drawable_control: added size to controls and clip drawing if requestedAlexander Sulfrian2013-01-134-3/+77
| | | | | | if requested (set_clipping_required) DrawableControl will use ClippingHelper to setup glScissor befor drawing the content. container will request clipping by default
* menu/drawable_control: added position, glTransform to position before drawingAlexander Sulfrian2013-01-054-32/+64
| | | | | software_mouse_pointer does not need an own position anymore and simply draw it without position change
* menu/drawable_control: added repaint, that reinitialize the gl environmentAlexander Sulfrian2013-01-052-0/+11
|
* menu/container: initialize frameAlexander Sulfrian2013-01-051-1/+1
|
* menu: frame should not be added to container item listAlexander Sulfrian2013-01-056-5/+70
| | | | | | | | | | | if a frame is constructed, it needs a container as parent to get the size of it, but it should not be in the container item list and should be painted first, to be under every component the inner classes are used as helper classes, to be able to call a virtual method in the constructor of drawable_control to decide whether to add the control to the controls list of the container or not
* menu/application: renamed test variableAlexander Sulfrian2013-01-051-2/+2
|
* menu/application: simplified codeAlexander Sulfrian2013-01-051-2/+1
|
* menu/reflection: removed unused classAlexander Sulfrian2013-01-052-103/+0
|
* menu: keep frame in containerAlexander Sulfrian2013-01-054-27/+23
| | | | | before the current frame was stored in application, now every container could keep a frame and paint it before all other content
* menu/frame: added logAlexander Sulfrian2013-01-052-0/+5
|
* menu/container: added logAlexander Sulfrian2013-01-052-0/+7
|
* menu/application: removed display width/height, use DrawableControl::sizeAlexander Sulfrian2013-01-052-29/+13
|
* menu/drawable_control: added logAlexander Sulfrian2013-01-052-0/+5
|
* menu: removed parameter names from header filesAlexander Sulfrian2013-01-054-11/+10
|
* menu/control: renamed methods to avoid name collisionsAlexander Sulfrian2013-01-052-7/+7
|
* utils/dimension: added template for types of the metricsAlexander Sulfrian2013-01-054-72/+44
|
* menu/clipping_helper: helper class for stacked clipping setup and teardownAlexander Sulfrian2013-01-052-0/+121
|
* frames/loading_frame: added application as parent to be able to get sizeAlexander Sulfrian2013-01-052-3/+4
|
* BuildBot.trigger: removed lagecy fileAlexander Sulfrian2013-01-051-1/+0
|
* utils/image: fixed namespace for logging outputAlexander Sulfrian2013-01-051-1/+1
|
* utils/rectangle: added function to intersect two rectanglesAlexander Sulfrian2013-01-052-0/+49
|
* utils/rectangle: added shortcut for accessing the position of a rectangleAlexander Sulfrian2013-01-051-0/+10
|
* utils/rectangle: added constructor for array of valuesAlexander Sulfrian2013-01-052-0/+72
| | | | | the new constructor is used to make a rectangle object from the array of values returned from glGet(GL_SCISSOR_BOX)
* tests: added test of operator overloading for pointAlexander Sulfrian2013-01-051-0/+106
|
* utils/point: added possibility to change coordsAlexander Sulfrian2013-01-052-0/+15
|
* utils: templatized point, point_3d and rectangleAlexander Sulfrian2013-01-056-202/+128
| | | | | added template parameter for the geometry helper classes, moved function definitions to hpp file to support templates
* utils: reformated contructor callsAlexander Sulfrian2013-01-051-2/+4
|
* utils: added assginment operator for pointAlexander Sulfrian2013-01-052-0/+8
|
* menu: clean quit after pressing qAlexander Sulfrian2013-01-051-0/+10
|
* menu/software_mouse_pointer: memory cleanupAlexander Sulfrian2013-01-051-0/+5
|