Add basic Xinerama support via new lib/DtXinerama
authorJon Trulson <jon@radscan.com>
Wed, 27 Mar 2013 01:49:50 +0000 (19:49 -0600)
committerJon Trulson <jon@radscan.com>
Wed, 27 Mar 2013 01:49:50 +0000 (19:49 -0600)
commitaf7ba55f7827be3dcd06bb44f295e306bfd0d79f
treeabe4301514bf3d8e01a1472aae4ed547c298c077
parent208c1e499902587fe02ad7f52594828a7e5fe26d
Add basic Xinerama support via new lib/DtXinerama

This adds a basic library and support to dtsession and dtlogin to
support Xinerama/Twinview, where multimple monitors are used to make
up an X11 screen.

The main goal here is to draw dialogs and such centered on a monitor,
rather than spread out over multiple monitors.

Might need to add sorting - as on my test system, what I would
consider monitor 0, appears to actually be monitor 1.  So a sort might
need to be added to sort the screens according to increasing x and y
offsets so it make sense to a user.

Also, this library is built statically and not documented.  Maybe it
could be 'filled' out and refactored/redesigned in the futre if need
be and suppoerted.

It is enabled via a define, CDE_USEXINERAMA in site.def.  It's a very
simple lib, so I do not expect any issues with the BSD's - it should
build and work fine, assuming your X server has the XINERAMA
extension, which I think pretty much all of them do at this point.
19 files changed:
cde/config/cf/site.def
cde/lib/DtXinerama/DtXinerama.c [new file with mode: 0644]
cde/lib/DtXinerama/DtXinerama.h [new file with mode: 0644]
cde/lib/DtXinerama/Imakefile [new file with mode: 0644]
cde/lib/Imakefile
cde/programs/dtlogin/Imakefile
cde/programs/dtlogin/config/Xresources.src
cde/programs/dtlogin/dtchooser.c
cde/programs/dtlogin/vg.h
cde/programs/dtlogin/vgcallback.c
cde/programs/dtlogin/vgmain.c
cde/programs/dtsession/Dtsession.src
cde/programs/dtsession/Imakefile
cde/programs/dtsession/Sm.h
cde/programs/dtsession/SmGlobals.c
cde/programs/dtsession/SmMain.c
cde/programs/dtsession/SmResource.h
cde/programs/dtsession/SmStrDefs.c
cde/programs/dtsession/SmUI.c