summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/windowmanager.h
Commit message (Collapse)AuthorAgeFilesLines
* Drop pointless empty lines after or before a brace.Adam Borowski2013-12-211-1/+0
| | | | | I left them only where the contents is not indented, like in a namespace or a template.
* Rename WM_* to WME_*, because Windows.Adam Borowski2013-01-201-12/+12
| | | | | It's a bad idea to reuse the names of one of core win32 concepts for something similar but distinct.
* Delete an unused function and related enums.Adam Borowski2013-01-201-7/+0
|
* Remove unnecessary includes from header files.Jay3.14152012-10-231-4/+0
| | | | | | | | | | For most header files, this only saves on having to recompile a small number of source files, but there are also a few headers where small changes would now take significantly less time. This is most obvious for the Tiles build for which the dependencies have been greatly reduced, so that the only additional includes when compared to console are strictly library or tile related.
* First prototype of webtiles.Florian Diebold2011-06-261-2/+2
| | | | | | Conflicts: crawl-ref/source/startup.cc
* remove tile_align_at_top option (much better taskbar overlap fix)Raphael Langella2010-10-181-0/+1
| | | | | taskbar overlap is now automatically detected, and the window is placed just above it.
* New option tile_align_at_top (windows only)Raphael Langella2010-10-121-0/+1
| | | | | | When set, the window will be aligned at the top of the screen instead of being centered (avoid taskbar overlap, see mantis 2043). In theory, it would be possible to give the player full control of the window position, but it's more complicated and I don't see any use for it. It can easily be added if anyone ever request it.
* Bring sanity to enums by making them diffable/patchable.Adam Borowski2010-06-081-1/+1
|
* Created a static WindowManager::shutdown() fxnIxtli2010-05-011-1/+1
| | | | | | | tilesdl.cc now calls this after GLStateManager::shutdown() so that it is not responsible for managing the wm pointer. Signed-off-by: Enne Walker <enne.walker@gmail.com>
* Move specific create funcs out of generic files.Enne Walker2010-04-241-0/+2
| | | | | | | glwrapper-ogl.cc, windowmanager-sdl.cc, and fontwrapper-ft.cc now contain the static functions for their parent class's factory create. This allows new implementations to be added without requiring modification of the generic file (with #ifdefs).
* General coding standards update.Enne Walker2010-04-241-32/+43
| | | | | | No spaces on parens. Line up function params. Sort includes more rationally. Put curly braces on their own line. Don't C-style typedef enum and structs. Put if-clauses on their own line.
* Declaired certain member functions const.Ixtli2010-04-241-4/+4
|
* Removed out of date forward declairations of FTFontIxtli2010-04-241-2/+0
|
* More refactoring to reflect UIWrapper -> WindowManager change.Ixtli2010-04-241-35/+35
|
* Changed uiwrapper filenames.Ixtli2010-04-241-0/+137