aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
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 Sulfrian3-1/+29
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-13utils/rgba_color: add RgbaColor (RGB with additional alpha channel)Alexander Sulfrian2-0/+160
2013-01-13utils/rgb_color: add possibility to generate color array for openglAlexander Sulfrian2-2/+75
2013-01-13menu/container: remove assertAlexander Sulfrian1-1/+0
2013-01-13base/config: add graphics.fullscreen optionAlexander Sulfrian4-6/+96
2013-01-13menu: add some commentsAlexander Sulfrian2-3/+25
2013-01-13base/config: add graphics.resolution config optionAlexander Sulfrian4-1/+110
The resolution could controlled by the appropriate config option. The value from the config file is parsed/serialized with the DimensionTranslator.
2013-01-13base/config: add basic config infrastructureAlexander Sulfrian4-1/+128
2013-01-13menu/drawable_control: always cache modelview matrixAlexander Sulfrian1-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-13menu/modelview_matrix_cache: add helper classAlexander Sulfrian3-6/+91
Use the new ModelviewMatrixCache to cache the current state of the opengl MODELVIEW_MATRIX.
2013-01-13menu: use boost::shared_mutexAlexander Sulfrian7-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-13remove legacy keywords from file headerAlexander Sulfrian80-160/+0
2013-01-13menu: enable (and disable) glTexture only if neededAlexander Sulfrian3-1/+6
2013-01-13menu/background: backgrounds get to know the parent componentAlexander Sulfrian8-38/+133
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-13menu: generalized frame_background to backgroundAlexander Sulfrian13-115/+84
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-13menu/clipping_helper: made clipping workingAlexander Sulfrian4-15/+20
2013-01-13menu/contianer: element position should be relative to the container positionAlexander Sulfrian2-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-13menu/container: calculate window coordinatesAlexander Sulfrian3-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-13menu/text: removed unnecessary blockAlexander Sulfrian1-9/+7
2013-01-13menu/application: group the opengl init stepsAlexander Sulfrian1-4/+3
2013-01-13menu/application: whitespace fixAlexander Sulfrian1-2/+2
2013-01-13menu/application: disable opengl depth buffer (only 2d needed)Alexander Sulfrian2-1/+2
2013-01-13menu/application: alpha blending should not be enabled by defaultAlexander Sulfrian2-4/+5
2013-01-13utils/rectangle: removed external constructors and added helperAlexander Sulfrian5-16/+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-13menu/software_mouse_pointer: set hidden if timer is readyAlexander Sulfrian1-1/+7
this saves the draw call if the pointer should not be drawn
2013-01-13utils/point: addition/subtraction should only be possible with same typeAlexander Sulfrian1-4/+4
2013-01-13menu/text: realign on size change of controlAlexander Sulfrian2-0/+15
2013-01-13menu/drawable_control: set_size should be virtual so it could be overwrittenAlexander Sulfrian1-2/+2
2013-01-13menu/text: added variable vertical alignment in the box of the controlAlexander Sulfrian4-5/+185
2013-01-13utils/rectangle: could get top/bottom/left/right coordinates from RectangleAlexander Sulfrian2-11/+22
2013-01-13utils/rectangle: added ctor to create a Rectange from a FTBoxAlexander Sulfrian1-0/+8
2013-01-13utils/math: added abs/min/max as static template functionsAlexander Sulfrian1-0/+69
2013-01-13utils/rectangle: the points should be modifiableAlexander Sulfrian1-2/+2
2013-01-13menu/text: renamed text_mutex to font_mutexAlexander Sulfrian2-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-13menu/text: reordered includes in header fileAlexander Sulfrian1-3/+4
2013-01-13menu/software_mouse_pointer: hide after 2s without movementAlexander Sulfrian2-0/+9
2013-01-13menu/timer: added simple timer to wait until duration is completedAlexander Sulfrian2-0/+125
2013-01-13menu/text: added simple text class and a demo in the loading frameAlexander Sulfrian3-0/+176
2013-01-13menu/container: clipping requires window coordinatesAlexander Sulfrian3-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-13menu/container: cleanup while destruction of containerAlexander Sulfrian3-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-13menu/drawable_control: added size to controls and clip drawing if requestedAlexander Sulfrian4-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-05menu/drawable_control: added position, glTransform to position before drawingAlexander Sulfrian4-32/+64
software_mouse_pointer does not need an own position anymore and simply draw it without position change
2013-01-05menu/drawable_control: added repaint, that reinitialize the gl environmentAlexander Sulfrian2-0/+11
2013-01-05menu/container: initialize frameAlexander Sulfrian1-1/+1
2013-01-05menu: frame should not be added to container item listAlexander Sulfrian6-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-05menu/application: renamed test variableAlexander Sulfrian1-2/+2