Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-01-13 | menu/container: remove assert | Alexander Sulfrian | 1 | -1/+0 | |
2013-01-13 | base/config: add graphics.fullscreen option | Alexander Sulfrian | 1 | -5/+7 | |
2013-01-13 | menu: add some comments | Alexander Sulfrian | 2 | -3/+25 | |
2013-01-13 | base/config: add graphics.resolution config option | Alexander Sulfrian | 1 | -1/+2 | |
The resolution could controlled by the appropriate config option. The value from the config file is parsed/serialized with the DimensionTranslator. | |||||
2013-01-13 | base/config: add basic config infrastructure | Alexander Sulfrian | 2 | -1/+16 | |
2013-01-13 | menu/drawable_control: always cache modelview matrix | Alexander Sulfrian | 1 | -12/+17 | |
Some controls modify the modelview matrix during drawing their contents. Restore it afterwards, so that other parts could be drawn easily on top. | |||||
2013-01-13 | menu/modelview_matrix_cache: add helper class | Alexander Sulfrian | 3 | -6/+91 | |
Use the new ModelviewMatrixCache to cache the current state of the opengl MODELVIEW_MATRIX. | |||||
2013-01-13 | menu: use boost::shared_mutex | Alexander Sulfrian | 7 | -30/+46 | |
Use everywhere a mutable boost::shared_mutex to enable locking during const getter and the multiple reader and single writer pattern. | |||||
2013-01-13 | remove legacy keywords from file header | Alexander Sulfrian | 36 | -72/+0 | |
2013-01-13 | menu: enable (and disable) glTexture only if needed | Alexander Sulfrian | 3 | -1/+6 | |
2013-01-13 | menu/background: backgrounds get to know the parent component | Alexander Sulfrian | 7 | -36/+131 | |
Backgrounds now know the parent control, they are painted in, to query the size. Backgrounds are not allowed to use glClear anymore, should only draw something during the extend of the parent control and should take care to do not modify the opengl cursor position. | |||||
2013-01-13 | menu: generalized frame_background to background | Alexander Sulfrian | 12 | -111/+80 | |
background could now be a background for all DrawableControl instances each subclass should call the parents draw() during executing the draw() method for background painting TODO: background should know the size of the control to only draw the background there | |||||
2013-01-13 | menu/clipping_helper: made clipping working | Alexander Sulfrian | 3 | -15/+13 | |
2013-01-13 | menu/contianer: element position should be relative to the container position | Alexander Sulfrian | 2 | -2/+6 | |
container should provide each of the containing elements' draw functions with its own position as base (store before drawing the first element and restore it after each drawing) | |||||
2013-01-13 | menu/container: calculate window coordinates | Alexander Sulfrian | 3 | -3/+74 | |
the container have to keep the current window coordinates of its left, bottom corner, therefor they have to be recalculated on every size/position change (need virtual functions in DrawableControl) | |||||
2013-01-13 | menu/text: removed unnecessary block | Alexander Sulfrian | 1 | -9/+7 | |
2013-01-13 | menu/application: group the opengl init steps | Alexander Sulfrian | 1 | -4/+3 | |
2013-01-13 | menu/application: whitespace fix | Alexander Sulfrian | 1 | -2/+2 | |
2013-01-13 | menu/application: disable opengl depth buffer (only 2d needed) | Alexander Sulfrian | 2 | -1/+2 | |
2013-01-13 | menu/application: alpha blending should not be enabled by default | Alexander Sulfrian | 2 | -4/+5 | |
2013-01-13 | utils/rectangle: removed external constructors and added helper | Alexander Sulfrian | 4 | -2/+28 | |
constructors that generate a rectangle from GLint[4] or FTBBox are now helper functions to remove the external dependencies from the helper class | |||||
2013-01-13 | menu/software_mouse_pointer: set hidden if timer is ready | Alexander Sulfrian | 1 | -1/+7 | |
this saves the draw call if the pointer should not be drawn | |||||
2013-01-13 | menu/text: realign on size change of control | Alexander Sulfrian | 2 | -0/+15 | |
2013-01-13 | menu/drawable_control: set_size should be virtual so it could be overwritten | Alexander Sulfrian | 1 | -2/+2 | |
2013-01-13 | menu/text: added variable vertical alignment in the box of the control | Alexander Sulfrian | 4 | -5/+185 | |
2013-01-13 | utils/rectangle: could get top/bottom/left/right coordinates from Rectangle | Alexander Sulfrian | 1 | -3/+3 | |
2013-01-13 | menu/text: renamed text_mutex to font_mutex | Alexander Sulfrian | 2 | -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 | |||||
2013-01-13 | menu/text: reordered includes in header file | Alexander Sulfrian | 1 | -3/+4 | |
2013-01-13 | menu/software_mouse_pointer: hide after 2s without movement | Alexander Sulfrian | 2 | -0/+9 | |
2013-01-13 | menu/timer: added simple timer to wait until duration is completed | Alexander Sulfrian | 2 | -0/+125 | |
2013-01-13 | menu/text: added simple text class and a demo in the loading frame | Alexander Sulfrian | 2 | -0/+172 | |
2013-01-13 | menu/container: clipping requires window coordinates | Alexander Sulfrian | 3 | -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 | |||||
2013-01-13 | menu/container: cleanup while destruction of container | Alexander Sulfrian | 3 | -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) | |||||
2013-01-13 | menu/drawable_control: added size to controls and clip drawing if requested | Alexander Sulfrian | 4 | -3/+77 | |
if requested (set_clipping_required) DrawableControl will use ClippingHelper to setup glScissor befor drawing the content. container will request clipping by default | |||||
2013-01-05 | menu/drawable_control: added position, glTransform to position before drawing | Alexander Sulfrian | 4 | -32/+64 | |
software_mouse_pointer does not need an own position anymore and simply draw it without position change | |||||
2013-01-05 | menu/drawable_control: added repaint, that reinitialize the gl environment | Alexander Sulfrian | 2 | -0/+11 | |
2013-01-05 | menu/container: initialize frame | Alexander Sulfrian | 1 | -1/+1 | |
2013-01-05 | menu: frame should not be added to container item list | Alexander Sulfrian | 6 | -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 | |||||
2013-01-05 | menu/application: renamed test variable | Alexander Sulfrian | 1 | -2/+2 | |
2013-01-05 | menu/application: simplified code | Alexander Sulfrian | 1 | -2/+1 | |
2013-01-05 | menu/reflection: removed unused class | Alexander Sulfrian | 2 | -103/+0 | |
2013-01-05 | menu: keep frame in container | Alexander Sulfrian | 4 | -27/+23 | |
before the current frame was stored in application, now every container could keep a frame and paint it before all other content | |||||
2013-01-05 | menu/frame: added log | Alexander Sulfrian | 2 | -0/+5 | |
2013-01-05 | menu/container: added log | Alexander Sulfrian | 2 | -0/+7 | |
2013-01-05 | menu/application: removed display width/height, use DrawableControl::size | Alexander Sulfrian | 2 | -29/+13 | |
2013-01-05 | menu/drawable_control: added log | Alexander Sulfrian | 2 | -0/+5 | |
2013-01-05 | menu: removed parameter names from header files | Alexander Sulfrian | 4 | -11/+10 | |
2013-01-05 | menu/control: renamed methods to avoid name collisions | Alexander Sulfrian | 2 | -7/+7 | |
2013-01-05 | utils/dimension: added template for types of the metrics | Alexander Sulfrian | 1 | -3/+3 | |
2013-01-05 | menu/clipping_helper: helper class for stacked clipping setup and teardown | Alexander Sulfrian | 2 | -0/+121 | |