diff options
author | Sven Gothel <[email protected]> | 2011-12-23 00:31:14 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-12-23 00:31:14 +0100 |
commit | f3f794fe37a7e33a771a4a702f3f46ead4dc6d03 (patch) | |
tree | b51202da10c96444f7744e4e66864bcf957f2d50 /make/build-newt.xml | |
parent | d225d0a8a16e362ddb14cb93c124eb06cf0ff05e (diff) |
NEWT Multi-Monitor 1/2: Allow negative window position; Validate Screen-Index;
- Allow negative window position, using flag 'autoPosition' to mark a custom user position.
This impacts Windows and X11 window creation code, which supports native auto positioning.
- Screen: Validate Screen-Index.
In 'big-desktop' mode the Screen index is always 0. This is true for X11 with
Xinerama enabled and MS-Windows in general.
Platforms w/o multiple Screen support always use index 0.
- X11: Separate X11 Display/Screen/Window native code in their respective C files
- Windows test scripts: use '%*' to catch all arguments
- Add missing (c)
Diffstat (limited to 'make/build-newt.xml')
-rw-r--r-- | make/build-newt.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/build-newt.xml b/make/build-newt.xml index 56ebfaccc..e849cb3fb 100644 --- a/make/build-newt.xml +++ b/make/build-newt.xml @@ -472,6 +472,8 @@ <include name="${rootrel.src.c}/WindowsWindow.c" if="isWindows"/> <include name="${rootrel.src.c}/*.m" if="isOSX"/> <include name="${rootrel.src.c}/AndroidWindow.c" if="isAndroid"/> + <include name="${rootrel.src.c}/X11Display.c" if="isX11"/> + <include name="${rootrel.src.c}/X11Screen.c" if="isX11"/> <include name="${rootrel.src.c}/X11Window.c" if="isX11"/> <include name="${rootrel.src.c}/KDWindow.c" if="setup.addNativeKD"/> <include name="${rootrel.src.c}/IntelGDL.c" if="setup.addNativeIntelGDL"/> |