1Object(library call) Object(library call)
2
3
4
6 Object — The Object widget class
7
9 #include <Xm/Xm.h>
10
12 Object is never instantiated. Its sole purpose is as a supporting
13 superclass for other widget classes.
14
15 Classes
16 The class pointer is objectClass.
17
18 The class name is Object.
19
20 New Resources
21 The following table defines a set of widget resources used by the pro‐
22 grammer to specify data. The programmer can also set the resource val‐
23 ues for the inherited classes to set attributes for this widget. To
24 reference a resource by name or by class in a .Xdefaults file, remove
25 the XmN or XmC prefix and use the remaining letters. To specify one of
26 the defined values for a resource in a .Xdefaults file, remove the Xm
27 prefix and use the remaining letters (in either lowercase or uppercase,
28 but include any underscores between words). The codes in the access
29 column indicate if the given resource can be set at creation time (C),
30 set by using XtSetValues (S), retrieved by using XtGetValues (G), or is
31 not applicable (N/A).
32
33 ┌─────────────────────────────────────────────────────────────────────┐
34 │ │ Object Re│source Set │ │ │
35 │Name │ Class │ Type │ Default │ Access │
36 ├───────────────────┼─────────────┼────────────────┼─────────┼────────┤
37 │XmNdestroyCallback │ XmCCallback │ XtCallbackList │ NULL │ C │
38 ├───────────────────┼─────────────┼────────────────┼─────────┼────────┤
39 └───────────────────┴─────────────┴────────────────┴─────────┴────────┘
40 XmNdestroyCallback
41 Specifies a list of callbacks that is called when the gadget
42 is destroyed.
43
44 Translations
45 There are no translation for Object.
46
47
48
49 Object(library call)