Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove semicolon after namespace | Alexander Sulfrian | 2014-05-04 | 1 | -1/+1 |
| | | | | | Class definitions have to end with a semicolon but not namespaces. So remove this everywhere. | ||||
* | menu/application: add is_running | Alexander Sulfrian | 2013-01-21 | 1 | -0/+2 |
| | |||||
* | menu/application: add quit() to quit the app from everywhere | Alexander Sulfrian | 2013-01-21 | 1 | -0/+2 |
| | |||||
* | menu/application: add free to allow multiple runs | Alexander Sulfrian | 2013-01-21 | 1 | -0/+2 |
| | | | | | | free() is used to reset the instance of this singleton, so that it gets recreated on the next access. This allows multiple creation/deletion cycles (for example in the tests). | ||||
* | menu/application: add possibility to query if ogl thread | Alexander Sulfrian | 2013-01-13 | 1 | -0/+3 |
| | | | | | | | opengl calls should only executed in the thread, that created the opengl context. To query whether the current thread is the opengl thread, the application class stores the current thread id of the opengl thread after initializing opengl. | ||||
* | base/config: add basic config infrastructure | Alexander Sulfrian | 2013-01-13 | 1 | -0/+4 |
| | |||||
* | remove legacy keywords from file header | Alexander Sulfrian | 2013-01-13 | 1 | -2/+0 |
| | |||||
* | menu: keep frame in container | Alexander Sulfrian | 2013-01-05 | 1 | -6/+0 |
| | | | | | before the current frame was stored in application, now every container could keep a frame and paint it before all other content | ||||
* | menu/application: removed display width/height, use DrawableControl::size | Alexander Sulfrian | 2013-01-05 | 1 | -6/+0 |
| | |||||
* | menu/application: Application now is also a container for the overlays | Alexander Sulfrian | 2013-01-05 | 1 | -6/+1 |
| | |||||
* | menu: Container subclasses need a Container as parent/owner | Alexander Sulfrian | 2013-01-05 | 1 | -1/+2 |
| | |||||
* | ported from log4cxx to log4cpp | Alexander Sulfrian | 2013-01-05 | 1 | -2/+2 |
| | | | | | | 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 from SDL rendering to OpenGL | Alexander Sulfrian | 2013-01-05 | 1 | -2/+2 |
| | | | | draw, repaint methods do not have the SDL_Surface* parameter anymore | ||||
* | changed screen to display (only local naming) | Alexander Sulfrian | 2013-01-05 | 1 | -1/+1 |
| | | | | changed that naming to be consistent to all other draw methods | ||||
* | added overlays | Alexander Sulfrian | 2013-01-05 | 1 | -0/+5 |
| | | | | added list of drawable controls that are drawn over all frames | ||||
* | refactor some things with FPSmanager | Alexander Sulfrian | 2013-01-05 | 1 | -0/+7 |
| | |||||
* | added main application | Alexander Sulfrian | 2013-01-05 | 1 | -0/+79 |
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 |