1XmSetMenuCursor(library call) XmSetMenuCursor(library call)
2
3
4
6 XmSetMenuCursor — A function that modifies the menu cursor for a client
7
9 #include <Xm/Xm.h>
10 void XmSetMenuCursor(
11 Display * display,
12 Cursor cursorId);
13
15 XmSetMenuCursor programmatically modifies the menu cursor for a client;
16 after the cursor has been created by the client, this function regis‐
17 ters the cursor with the menu system. After calling this function, the
18 specified cursor is displayed whenever this client displays a Motif
19 menu on the indicated display. The client can then specify different
20 cursors on different displays.
21
22 This function sets the menu cursor for all screens on the display.
23 XmSetMenuCursor is obsolete and exists for compatibility with previous
24 releases. Instead of using this function, provide initial values or
25 call XtSetValues for the XmScreen resource XmNmenuCursor.
26
27 display Specifies the display to which the cursor is to be associated
28
29 cursorId Specifies the X cursor ID
30
32 XmScreen(3).
33
34
35
36 XmSetMenuCursor(library call)