Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | menu/container: cleanup while destruction of container | Alexander Sulfrian | 2013-01-13 | 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) | ||||
* | menu/drawable_control: added size to controls and clip drawing if requested | Alexander Sulfrian | 2013-01-13 | 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 | ||||
* | menu/drawable_control: added position, glTransform to position before drawing | Alexander Sulfrian | 2013-01-05 | 4 | -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 environment | Alexander Sulfrian | 2013-01-05 | 2 | -0/+11 |
| | |||||
* | menu/container: initialize frame | Alexander Sulfrian | 2013-01-05 | 1 | -1/+1 |
| | |||||
* | menu: frame should not be added to container item list | Alexander Sulfrian | 2013-01-05 | 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 | ||||
* | menu/application: renamed test variable | Alexander Sulfrian | 2013-01-05 | 1 | -2/+2 |
| | |||||
* | menu/application: simplified code | Alexander Sulfrian | 2013-01-05 | 1 | -2/+1 |
| | |||||
* | menu/reflection: removed unused class | Alexander Sulfrian | 2013-01-05 | 2 | -103/+0 |
| | |||||
* | menu: keep frame in container | Alexander Sulfrian | 2013-01-05 | 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 | ||||
* | menu/frame: added log | Alexander Sulfrian | 2013-01-05 | 2 | -0/+5 |
| | |||||
* | menu/container: added log | Alexander Sulfrian | 2013-01-05 | 2 | -0/+7 |
| | |||||
* | menu/application: removed display width/height, use DrawableControl::size | Alexander Sulfrian | 2013-01-05 | 2 | -29/+13 |
| | |||||
* | menu/drawable_control: added log | Alexander Sulfrian | 2013-01-05 | 2 | -0/+5 |
| | |||||
* | menu: removed parameter names from header files | Alexander Sulfrian | 2013-01-05 | 4 | -11/+10 |
| | |||||
* | menu/control: renamed methods to avoid name collisions | Alexander Sulfrian | 2013-01-05 | 2 | -7/+7 |
| | |||||
* | utils/dimension: added template for types of the metrics | Alexander Sulfrian | 2013-01-05 | 1 | -3/+3 |
| | |||||
* | menu/clipping_helper: helper class for stacked clipping setup and teardown | Alexander Sulfrian | 2013-01-05 | 2 | -0/+121 |
| | |||||
* | menu: clean quit after pressing q | Alexander Sulfrian | 2013-01-05 | 1 | -0/+10 |
| | |||||
* | menu/software_mouse_pointer: memory cleanup | Alexander Sulfrian | 2013-01-05 | 1 | -0/+5 |
| | |||||
* | menu: use 2d coordinates for opengl | Alexander Sulfrian | 2013-01-05 | 4 | -18/+10 |
| | |||||
* | menu/frame: Frame should draw its contents | Alexander Sulfrian | 2013-01-05 | 1 | -0/+2 |
| | |||||
* | menu/application: Application now is also a container for the overlays | Alexander Sulfrian | 2013-01-05 | 2 | -25/+5 |
| | |||||
* | menu/control: ensure safe destruction of the slaves | Alexander Sulfrian | 2013-01-05 | 1 | -2/+5 |
| | |||||
* | menu: Container subclasses need a Container as parent/owner | Alexander Sulfrian | 2013-01-05 | 6 | -9/+10 |
| | |||||
* | menu: Container could contains and draw DrawableControls | Alexander Sulfrian | 2013-01-05 | 4 | -25/+35 |
| | | | | | | DrawableControls register/unregister itself during construction/destruction at the Container (supplied as owner) and get automatically drawn | ||||
* | menu/control: fix segfaults if manually deletes a control | Alexander Sulfrian | 2013-01-05 | 1 | -3/+14 |
| | |||||
* | fixed include paths | Alexander Sulfrian | 2013-01-05 | 3 | -3/+2 |
| | |||||
* | base: moved Image and Texture to more appropriate locations | Alexander Sulfrian | 2013-01-05 | 6 | -0/+374 |
| | |||||
* | menu/control: controls are now owned by other controls | Alexander Sulfrian | 2013-01-05 | 2 | -13/+38 |
| | | | | | controls could now be owned by other controls, that are responsible for destruction of their slaves | ||||
* | Makefile.inc: modularized flags, removed include dirs | Alexander Sulfrian | 2013-01-05 | 3 | -3/+3 |
| | |||||
* | ported from log4cxx to log4cpp | Alexander Sulfrian | 2013-01-05 | 4 | -12/+14 |
| | | | | | | log4cxx depends on Apache Portable Runtime Utility Library, so we switch to log4cpp with nearly the same features but with no dependencies for easier porting to other platforms | ||||
* | changed all wstring/wchar_t to string/char | Alexander Sulfrian | 2013-01-05 | 3 | -5/+5 |
| | |||||
* | removed pascal code | Alexander Sulfrian | 2013-01-05 | 12 | -4463/+0 |
| | |||||
* | added first frame and sub directory for frames | Alexander Sulfrian | 2013-01-05 | 1 | -0/+4 |
| | | | | loading screen: currently only with background | ||||
* | added FrameBackgroundImage | Alexander Sulfrian | 2013-01-05 | 2 | -0/+159 |
| | |||||
* | correctly locking and freeing the event buffers on destruction | Alexander Sulfrian | 2013-01-05 | 1 | -0/+6 |
| | |||||
* | before set the background of a frame, free old one | Alexander Sulfrian | 2013-01-05 | 1 | -0/+4 |
| | |||||
* | changed from SDL rendering to OpenGL | Alexander Sulfrian | 2013-01-05 | 15 | -52/+154 |
| | | | | draw, repaint methods do not have the SDL_Surface* parameter anymore | ||||
* | added software cursor | Alexander Sulfrian | 2013-01-05 | 3 | -0/+133 |
| | |||||
* | removed unnecessary pure virtual method declaration | Alexander Sulfrian | 2013-01-05 | 1 | -7/+0 |
| | | | | | removed that pure virtual declaration - it is already there from the base class | ||||
* | added mouse_move signal to event manager | Alexander Sulfrian | 2013-01-05 | 2 | -1/+5 |
| | |||||
* | changed screen to display (only local naming) | Alexander Sulfrian | 2013-01-05 | 2 | -3/+3 |
| | | | | changed that naming to be consistent to all other draw methods | ||||
* | added overlays | Alexander Sulfrian | 2013-01-05 | 2 | -0/+23 |
| | | | | added list of drawable controls that are drawn over all frames | ||||
* | added event_manager | Alexander Sulfrian | 2013-01-05 | 3 | -4/+250 |
| | | | | | event_manager for passing the events from the SDL thread to the event thread | ||||
* | applied the changes from drawable | Alexander Sulfrian | 2013-01-05 | 2 | -4/+2 |
| | |||||
* | refactor some things with FPSmanager | Alexander Sulfrian | 2013-01-05 | 2 | -7/+35 |
| | |||||
* | reset singleton instance on destruction | Alexander Sulfrian | 2013-01-05 | 1 | -0/+3 |
| | |||||
* | added main application | Alexander Sulfrian | 2013-01-05 | 2 | -0/+218 |
| | | | | | | | | added makefile added main function (src/main.cpp) added Application-class with sdl initialisation and main loop added log4cxx.xml configuration for main application adjusted .gitignore | ||||
* | removed old (converted) opengl display class | Alexander Sulfrian | 2013-01-05 | 2 | -652/+0 |
| |