aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* menu/drawable_control: added repaint, that reinitialize the gl environmentAlexander Sulfrian2013-01-052-0/+11
|
* menu/container: initialize frameAlexander Sulfrian2013-01-051-1/+1
|
* menu: frame should not be added to container item listAlexander Sulfrian2013-01-056-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 variableAlexander Sulfrian2013-01-051-2/+2
|
* menu/application: simplified codeAlexander Sulfrian2013-01-051-2/+1
|
* menu/reflection: removed unused classAlexander Sulfrian2013-01-052-103/+0
|
* menu: keep frame in containerAlexander Sulfrian2013-01-054-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 logAlexander Sulfrian2013-01-052-0/+5
|
* menu/container: added logAlexander Sulfrian2013-01-052-0/+7
|
* menu/application: removed display width/height, use DrawableControl::sizeAlexander Sulfrian2013-01-052-29/+13
|
* menu/drawable_control: added logAlexander Sulfrian2013-01-052-0/+5
|
* menu: removed parameter names from header filesAlexander Sulfrian2013-01-054-11/+10
|
* menu/control: renamed methods to avoid name collisionsAlexander Sulfrian2013-01-052-7/+7
|
* utils/dimension: added template for types of the metricsAlexander Sulfrian2013-01-051-3/+3
|
* menu/clipping_helper: helper class for stacked clipping setup and teardownAlexander Sulfrian2013-01-052-0/+121
|
* menu: clean quit after pressing qAlexander Sulfrian2013-01-051-0/+10
|
* menu/software_mouse_pointer: memory cleanupAlexander Sulfrian2013-01-051-0/+5
|
* menu: use 2d coordinates for openglAlexander Sulfrian2013-01-054-18/+10
|
* menu/frame: Frame should draw its contentsAlexander Sulfrian2013-01-051-0/+2
|
* menu/application: Application now is also a container for the overlaysAlexander Sulfrian2013-01-052-25/+5
|
* menu/control: ensure safe destruction of the slavesAlexander Sulfrian2013-01-051-2/+5
|
* menu: Container subclasses need a Container as parent/ownerAlexander Sulfrian2013-01-056-9/+10
|
* menu: Container could contains and draw DrawableControlsAlexander Sulfrian2013-01-054-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 controlAlexander Sulfrian2013-01-051-3/+14
|
* fixed include pathsAlexander Sulfrian2013-01-053-3/+2
|
* base: moved Image and Texture to more appropriate locationsAlexander Sulfrian2013-01-056-0/+374
|
* menu/control: controls are now owned by other controlsAlexander Sulfrian2013-01-052-13/+38
| | | | | controls could now be owned by other controls, that are responsible for destruction of their slaves
* Makefile.inc: modularized flags, removed include dirsAlexander Sulfrian2013-01-053-3/+3
|
* ported from log4cxx to log4cppAlexander Sulfrian2013-01-054-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/charAlexander Sulfrian2013-01-053-5/+5
|
* removed pascal codeAlexander Sulfrian2013-01-0512-4463/+0
|
* added first frame and sub directory for framesAlexander Sulfrian2013-01-051-0/+4
| | | | loading screen: currently only with background
* added FrameBackgroundImageAlexander Sulfrian2013-01-052-0/+159
|
* correctly locking and freeing the event buffers on destructionAlexander Sulfrian2013-01-051-0/+6
|
* before set the background of a frame, free old oneAlexander Sulfrian2013-01-051-0/+4
|
* changed from SDL rendering to OpenGLAlexander Sulfrian2013-01-0515-52/+154
| | | | draw, repaint methods do not have the SDL_Surface* parameter anymore
* added software cursorAlexander Sulfrian2013-01-053-0/+133
|
* removed unnecessary pure virtual method declarationAlexander Sulfrian2013-01-051-7/+0
| | | | | removed that pure virtual declaration - it is already there from the base class
* added mouse_move signal to event managerAlexander Sulfrian2013-01-052-1/+5
|
* changed screen to display (only local naming)Alexander Sulfrian2013-01-052-3/+3
| | | | changed that naming to be consistent to all other draw methods
* added overlaysAlexander Sulfrian2013-01-052-0/+23
| | | | added list of drawable controls that are drawn over all frames
* added event_managerAlexander Sulfrian2013-01-053-4/+250
| | | | | event_manager for passing the events from the SDL thread to the event thread
* applied the changes from drawableAlexander Sulfrian2013-01-052-4/+2
|
* refactor some things with FPSmanagerAlexander Sulfrian2013-01-052-7/+35
|
* reset singleton instance on destructionAlexander Sulfrian2013-01-051-0/+3
|
* added main applicationAlexander Sulfrian2013-01-052-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 classAlexander Sulfrian2013-01-052-652/+0
|
* removed unused openglAlexander Sulfrian2013-01-051-3/+0
|
* added SDL_Surface* display to all repaint/draw methodsAlexander Sulfrian2013-01-0510-17/+26
|
* added parent to controlAlexander Sulfrian2013-01-058-10/+37
| | | | parent is used to delete the objects if the parent is deleted