Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-01-05 | utils/dimension: added template for types of the metrics | Alexander Sulfrian | 4 | -72/+44 | |
2013-01-05 | menu/clipping_helper: helper class for stacked clipping setup and teardown | Alexander Sulfrian | 2 | -0/+121 | |
2013-01-05 | frames/loading_frame: added application as parent to be able to get size | Alexander Sulfrian | 2 | -3/+4 | |
2013-01-05 | utils/rectangle: added function to intersect two rectangles | Alexander Sulfrian | 1 | -0/+23 | |
2013-01-05 | utils/rectangle: added shortcut for accessing the position of a rectangle | Alexander Sulfrian | 1 | -0/+10 | |
2013-01-05 | utils/rectangle: added constructor for array of values | Alexander Sulfrian | 1 | -0/+6 | |
the new constructor is used to make a rectangle object from the array of values returned from glGet(GL_SCISSOR_BOX) | |||||
2013-01-05 | utils/point: added possibility to change coords | Alexander Sulfrian | 2 | -0/+15 | |
2013-01-05 | utils: templatized point, point_3d and rectangle | Alexander Sulfrian | 6 | -202/+128 | |
added template parameter for the geometry helper classes, moved function definitions to hpp file to support templates | |||||
2013-01-05 | utils: reformated contructor calls | Alexander Sulfrian | 1 | -2/+4 | |
2013-01-05 | utils: added assginment operator for point | Alexander Sulfrian | 2 | -0/+8 | |
2013-01-05 | menu: clean quit after pressing q | Alexander Sulfrian | 1 | -0/+10 | |
2013-01-05 | menu/software_mouse_pointer: memory cleanup | Alexander Sulfrian | 1 | -0/+5 | |
2013-01-05 | menu: use 2d coordinates for opengl | Alexander Sulfrian | 4 | -18/+10 | |
2013-01-05 | menu/frame: Frame should draw its contents | Alexander Sulfrian | 1 | -0/+2 | |
2013-01-05 | menu/application: Application now is also a container for the overlays | Alexander Sulfrian | 2 | -25/+5 | |
2013-01-05 | menu/control: ensure safe destruction of the slaves | Alexander Sulfrian | 1 | -2/+5 | |
2013-01-05 | menu: Container subclasses need a Container as parent/owner | Alexander Sulfrian | 6 | -9/+10 | |
2013-01-05 | menu: Container could contains and draw DrawableControls | Alexander Sulfrian | 4 | -25/+35 | |
DrawableControls register/unregister itself during construction/destruction at the Container (supplied as owner) and get automatically drawn | |||||
2013-01-05 | menu/control: fix segfaults if manually deletes a control | Alexander Sulfrian | 1 | -3/+14 | |
2013-01-05 | fixed include paths | Alexander Sulfrian | 5 | -7/+6 | |
2013-01-05 | base: moved Image and Texture to more appropriate locations | Alexander Sulfrian | 8 | -2/+2 | |
2013-01-05 | menu/control: controls are now owned by other controls | Alexander Sulfrian | 2 | -13/+38 | |
controls could now be owned by other controls, that are responsible for destruction of their slaves | |||||
2013-01-05 | Makefile.inc: modularized flags, removed include dirs | Alexander Sulfrian | 10 | -11/+11 | |
2013-01-05 | moved all log messages a level up | Alexander Sulfrian | 1 | -8/+8 | |
log4cpp does not provide the TRACE log level. so it is needed that all log messages shift a level up, so that DEBUG is used in replacement of TRACE and INFO is now used for all messages that were DEBUG | |||||
2013-01-05 | code formatting | Alexander Sulfrian | 2 | -3/+4 | |
2013-01-05 | ported from log4cxx to log4cpp | Alexander Sulfrian | 17 | -75/+91 | |
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 | |||||
2013-01-05 | moved doxygen to doc subdirectory | Alexander Sulfrian | 1 | -1510/+0 | |
2013-01-05 | changed all wstring/wchar_t to string/char | Alexander Sulfrian | 23 | -211/+217 | |
2013-01-05 | removed orphaned files | Alexander Sulfrian | 2 | -310/+0 | |
2013-01-05 | removed deprecated files | Alexander Sulfrian | 5 | -904/+0 | |
2013-01-05 | removed deprecated stuff | Alexander Sulfrian | 64 | -12267/+0 | |
2013-01-05 | removed pascal code | Alexander Sulfrian | 172 | -131216/+0 | |
2013-01-05 | added first frame and sub directory for frames | Alexander Sulfrian | 3 | -0/+92 | |
loading screen: currently only with background | |||||
2013-01-05 | added FrameBackgroundImage | Alexander Sulfrian | 2 | -0/+159 | |
2013-01-05 | correctly locking and freeing the event buffers on destruction | Alexander Sulfrian | 1 | -0/+6 | |
2013-01-05 | before set the background of a frame, free old one | Alexander Sulfrian | 1 | -0/+4 | |
2013-01-05 | changed from SDL rendering to OpenGL | Alexander Sulfrian | 23 | -79/+310 | |
draw, repaint methods do not have the SDL_Surface* parameter anymore | |||||
2013-01-05 | added software cursor | Alexander Sulfrian | 3 | -0/+133 | |
2013-01-05 | removed unnecessary pure virtual method declaration | Alexander Sulfrian | 1 | -7/+0 | |
removed that pure virtual declaration - it is already there from the base class | |||||
2013-01-05 | added mouse_move signal to event manager | Alexander Sulfrian | 2 | -1/+5 | |
2013-01-05 | changed screen to display (only local naming) | Alexander Sulfrian | 2 | -3/+3 | |
changed that naming to be consistent to all other draw methods | |||||
2013-01-05 | added overlays | Alexander Sulfrian | 2 | -0/+23 | |
added list of drawable controls that are drawn over all frames | |||||
2013-01-05 | added event_manager | Alexander Sulfrian | 3 | -4/+250 | |
event_manager for passing the events from the SDL thread to the event thread | |||||
2013-01-05 | applied the changes from drawable | Alexander Sulfrian | 2 | -4/+2 | |
2013-01-05 | refactor some things with FPSmanager | Alexander Sulfrian | 2 | -7/+35 | |
2013-01-05 | reset singleton instance on destruction | Alexander Sulfrian | 1 | -0/+3 | |
2013-01-05 | added main application | Alexander Sulfrian | 3 | -0/+254 | |
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 | |||||
2013-01-05 | removed old (converted) opengl display class | Alexander Sulfrian | 2 | -652/+0 | |
2013-01-05 | removed unused opengl | Alexander Sulfrian | 1 | -3/+0 | |
2013-01-05 | added SDL_Surface* display to all repaint/draw methods | Alexander Sulfrian | 10 | -17/+26 | |