1XmTrackingLocate(library call) XmTrackingLocate(library call)
2
3
4
6 XmTrackingLocate — A Toolkit function that provides a modal interaction
7
9 #include <Xm/Xm.h>
10 Widget XmTrackingLocate(
11 Widget widget,
12 Cursor cursor,
13 Boolean confine_to);
14
16 XmTrackingLocate provides a modal interface for selection of a compo‐
17 nent. It is intended to support context help. This function is imple‐
18 mented as XmTrackingEvent.
19
20 NOTE: This function is obsolete and exists for compatibility with pre‐
21 vious releases. It has been replaced by XmTrackingEvent.
22
23 widget Specifies the widget ID of a widget to use as the basis of
24 the modal interaction. That is, the widget within which the
25 interaction must occur, usually a top-level shell.
26
27 cursor Specifies the cursor to be used for the pointer during the
28 interaction. This is a standard X cursor name.
29
30 confine_to
31 Specifies whether or not the cursor should be confined to
32 widget
33
35 Returns the widget or gadget that contains the pointer when BSelect is
36 released or a key is released. If no widget or gadget contains the
37 pointer, the function returns NULL.
38
40 XmTrackingEvent(3).
41
42
43
44 XmTrackingLocate(library call)