Windows PowerShell command on Get-command XkbGetIndicatorChanges
MyWebUniversity

Manual Pages for UNIX Operating System command usage for man XkbGetIndicatorChanges

XKB FUNCTIONS XkbGetIndicatorChanges(3x11)

NAME

XkbGetIndicatorChanges - Updates a local copy of the key-

board description with the actual values of one or more calls to XkbNoteIndicatorChanges

SYNOPSIS

cc [ flag... ] file... -lX11 [ library... ]

Status XkbGetIndicatorChanges (Display *dpy, XkbDescPtr xkb,

XkbIndicatorChangesPtr changes, unsigned int state); ARGUMENTS

- dpy

connection to the X server

- xkb

keyboard description to hold the new values

- changes

indicator maps/state to be obtained from the server

- state

backfilled with the state of the indicators

DESCRIPTION

Whenever an indicator changes state, the server sends XkbIn-

dicatorStateNotify events to all interested clients. Simi-

larly, whenever an indicator's map changes, the server sends XkbIndicatorMapNotify events to all interested clients.

To receive XkbIndicatorStateNotify events, use XkbSelec-

tEvents with both the bits_to_change and values_for_bits

parameters containing XkbIndicatorStateNotifyMask. To receive XkbIndicatorMapNotify events, use XkbSelectEvents with XkbIndicatorMapNotifyMask. To receive events for only specific indicators, use

XkbSelectEventDetails. Set the event_type parameter to

XkbIndicatorStateNotify or XkbIndicatorMapNotify, and set

both the bits_to_change and values_for_bits detail parame-

ters to a mask where each bit specifies one indicator, turn-

ing on those bits that specify the indicators for which you want to receive events. Both types of indicator events use the same structure:

typedef struct _XkbIndicatorNotify {

int type; /* Xkb extension base event code */ unsigned long serial; /* X server serial number for event */

Bool send_event; /* True => synthetically generated */

Display * display; /* server connection where event generated */ Time time; /* server time when event generated */ X Version 11 Last change: libX11 1.3.5 1

XKB FUNCTIONS XkbGetIndicatorChanges(3x11)

int xkb_type; /* specifies state or map notify */

int device; /* Xkb device ID, will not be XkbUseCoreKbd */ unsigned int changed; /* mask of indicators with new state or map */ unsigned int state; /* current state of all indicators */ } XkbIndicatorNotifyEvent;

xkb_type is either XkbIndicatorStateNotify or XkbIndicator-

MapNotify, depending on whether the event is a kbIndica-

torStateNotify event or kbIndicatorMapNotify event. The changed parameter is a mask that is the bitwise inclusive OR of the indicators that have changed. If the event is of type XkbIndicatorMapNotify, changed reports the

maps that changed. If the event is of type XkbIndicatorSta-

teNotify, changed reports the indicators that have changed state. state is a mask that specifies the current state of all indicators, whether they have changed or not, for both XkbIndicatorStateNotify and IndicatorMapNotify events.

When your client application receives either a XkbIndica-

torStateNotify event or XkbIndicatorMapNotify event, you can note the changes in a changes structure by calling XkbNoteIndicatorChanges.

XkbGetIndicatorChanges examines the changes parameter, pulls

over the necessary information from the server, and copies the results into the xkb keyboard description. If any bits

are set in the state_changes field of changes, XkbGetIndica-

torChanges also places the state of those indicators in

state. If the indicators field of xkb is NULL, XkbGetIndica-

torChanges allocates and initializes it. To free the indica-

tors field, use XkbFreeIndicators. DIAGNOSTICS BadAlloc Unable to allocate storage BadImplementation Invalid reply from server BadMatch A compatible version of Xkb was not available in the server or an argument has correct type and range, but is otherwise invalid

SEE ALSO

XkbFreeIndicators(3x11), XkbGetIndicatorChanges(3x11),

XkbNoteIndicatorChanges(3x11), XkbSelectEvents(3x11), XkbSelectEventDetail(3x11) X Version 11 Last change: libX11 1.3.5 2

XKB FUNCTIONS XkbGetIndicatorChanges(3x11)

ATTRIBUTES

See attributes(5) for descriptions of the following attri-

butes:

____________________________________________________________

| ATTRIBUTE TYPE | ATTRIBUTE VALUE |

|_____________________________|_____________________________|

| Availability | x11/library/libx11 |

|_____________________________|_____________________________|

| Interface Stability | Committed |

|_____________________________|_____________________________|

| MT-Level | See XInitThreads(3X11) |

|_____________________________|_____________________________|

X Version 11 Last change: libX11 1.3.5 3




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™