Age | Commit message (Collapse) | Author |
|
The Xserver itself is capable of terminating itself once all X11 clients
are gone, yet in a typical full session, there are a number of X11
clients running continuously (e.g. the Xsettings daemon, IBus, etc.).
Those always-running clients will prevent the Xserver from terminating,
because the actual number of X11 clients will never drop to 0.
To solve this issue directly at the Xserver level, this add new entries
to the XFixes extension to let the X11 clients themselves specify the
disconnect mode they expect.
Typically, those X11 daemon clients would specify the disconnect mode
XFixesClientDisconnectFlagTerminate to let the Xserver know that they
should not be accounted for when checking the remaining clients prior
to terminate.
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
|
|
Found by using:
codespell --builtin clear,rare,usage,informal,code,names
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
|
|
Signed-off-by: Peter Harris <pharris@opentext.com>
|
|
In the implementation of HideCursor/ShowCursor in the xserver code,
the window passed in only identifies a screen, not a portion of the
window tree, and it's been that way since the beginning. Changing
the implementation at this point would likely break existing code,
and the main usage of this protocol (magnifiers) only needs the
global behavior, so change the protocol to document the actual
behavior.
Reviewed-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
|
|
Technically this is a change in the protocol, but we've never supported
anything but a Window.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
|
v3: Review fixes:
- INT16 not CARD16 for coordinates
- BadDevice not BadMatch
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
|
|
CursorNotifies are only sent for the ClientPointer to avoid confusion in the
client.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
|
Servers supporting XI2 will hide all cursors when a client requests
HideCursor. This is arguably closest to the original intent of the request -
to not display a cursor above the given window.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
|
The semantics in the spec were conflicting, and the implementation did the
'don't remap' version which was not useful. The server implementation has
been fixed, this change clarifies the specification to match that design.
|
|
|
|
Add ExpandRegion, HideCursor & ShowCursor requests
Correct description of version numbering to match XFixes conventions
|
|
|