1XmGetDestination(library call) XmGetDestination(library call)
2
3
4
6 XmGetDestination — A function that returns the widget ID of the widget
7 to be used as the current destination for quick paste and certain clip‐
8 board operations
9
11 #include <Xm/Xm.h>
12 Widget XmGetDestination(
13 Display *display);
14
16 XmGetDestination returns the widget that is the current destination on
17 the specified display. The destination is generally the last editable
18 widget on which a select, edit, insert, or paste operation was per‐
19 formed and is the destination for quick paste and certain clipboard
20 functions. The destination is NULL until a keyboard or mouse operation
21 has been done on an editable widget. Refer to the Motif Programmer's
22 Guide for a description of keyboard focus.
23
24 display Specifies the display whose destination widget is to be
25 queried
26
28 Returns the widget ID for the current destination or NULL if there is
29 no current destination.
30
31
32
33 XmGetDestination(library call)