Copyright (c) Hyperion Entertainment and contributors.

Difference between revisions of "BOOPSI Class Reference"

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
 
(44 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{WIP}}
 
 
== BOOPSI Class Reference ==
 
== BOOPSI Class Reference ==
   
The ''BOOPSI Class Reference'' documents all of the classes built into Intuition. Each class entry in the reference starts off with:
+
The ''BOOPSI Class Reference'' documents all of the public classes provided by AmigaOS. Each class entry in the reference starts off with:
   
 
; Class
 
; Class
Line 26: Line 25:
 
: Describes the attributes that this class defines as well as inherited ones that this class alters.
 
: Describes the attributes that this class defines as well as inherited ones that this class alters.
   
  +
== BOOPSI Classes ==
There are 14 public classes built into the Release 2.04 ROM:
 
   
  +
There are many public classes built into AmigaOS:
Figure 12-32 Public Class Diagram
 
  +
  +
[[File:BOOPSIClassDiagram.png|frame|center|BOOPSI Class Diagram]]
  +
  +
=== imageclass subclasses ===
  +
  +
{| class="wikitable"
  +
! Class name || File name || Description
  +
|-
  +
| bevel.image || bevel.image
  +
|-
  +
| bitmap.image || bitmap.image
  +
|-
  +
| drawlist.image || drawlist.image
  +
|-
  +
| itexticlass || intuition.library || A specialized image class used for rendering text.
  +
|-
  +
| filler.image || filler.image
  +
|-
  +
| fillrectclass || intuition.library || A class of rectangle images that have frame and patternfill support.
  +
|-
  +
| frameiclass || intuition.library || An embossed or recessed rectangular frame image, that renders itself using the proper DrawInfo pens. This class is intelligent enough to bound or center its contents.
  +
|-
  +
| gaugeiclass || intuition.library
  +
|-
  +
| glyph.image || glyph.image
  +
|-
  +
| label.image || label.image
  +
|-
  +
| penmap.image || penmap.image
  +
|-
  +
| sysiclass || intuition.library || The class of system images. The class includes the images for the system and GadTools gadgets.
  +
|}
  +
  +
=== gadgetclass subclasses ===
  +
  +
[[File:ButtonClassDiagram.png|frame|center|Button Class Diagram]]
  +
  +
{| class="wikitable"
  +
! Class name || File name || Description
  +
|-
  +
| button.gadget || button.gadget
  +
|-
  +
| buttongclass || intuition.library || A button gadget that keeps sending button presses while the user holds it down.
  +
|-
  +
| checkbox.gadget || checkbox.gadget
  +
|-
  +
| chooser.gadget || chooser.gadget
  +
|-
  +
| clicktab.gadget || clicktab.gadget
  +
|-
  +
| colorwheel.gadget || colorwheel.gadget
  +
|-
  +
| datatypesclass || datatypes.library
  +
|-
  +
| datebrowser.gadget || datebrowser.gadget
  +
|-
  +
| diffviewgclass || diffview.gadget || Text file difference view gadget.
  +
|-
  +
| fuelgauge.gadget || fuelgauge.gadget
  +
|-
  +
| frbuttonclass || intuition.library
  +
|-
  +
| getcolor.gadget || getcolor.gadget
  +
|-
  +
| getfile.gadget || getfile.gadget
  +
|-
  +
| getfont.gadget || getfont.gadget
  +
|-
  +
| getscreenmode.gadget || getscreenmode.gadget
  +
|-
  +
| gradientslider.gadget || gradientslider.gadget
  +
|-
  +
| groupgclass || intuition.library || A special gadget class that creates one composite gadget out of several others.
  +
|-
  +
| integer.gadget || integer.gadget
  +
|-
  +
| partitiongclass || intuition.library
  +
|-
  +
| propgclass || intuition.library || An easy to implement, horizontal or vertical proportional gadget.
  +
|-
  +
| strgclass || intuition.library || A string gadget.
  +
|-
  +
| layout.gadget || layout.gadget
  +
|-
  +
| linecmpgclass || diffview.gadget || Line comparison gadget for use with diffviewgclass.
  +
|-
  +
| listbrowser.gadget || listbrowser.gadget
  +
|-
  +
| page.gadget || layout.gadget
  +
|-
  +
| palette.gadget || palette.gadget
  +
|-
  +
| radiobutton.gadget || radiobutton.gadget
  +
|-
  +
| scroller.gadget || scroller.gadget
  +
|-
  +
| scrollergclass || intuition.library
  +
|-
  +
| sketchboard.gadget || sketchboard.gadget
  +
|-
  +
| slider.gadget || slider.gadget
  +
|-
  +
| space.gadget || space.gadget
  +
|-
  +
| speedbar.gadget || speedbar.gadget
  +
|-
  +
| string.gadget || string.gadget
  +
|-
  +
| tapedeck.gadget || tapedeck.gadget
  +
|-
  +
| texteditor.gadget || texteditor.gadget
  +
|-
  +
| virtual.gadget || virtual.gadget
  +
|}
  +
  +
=== buttongclass subclasses ===
  +
  +
{| class="wikitable"
  +
! Class name || File name || Description
  +
|-
  +
| frbuttonclass || intuition.library || A buttongclass gadget that outlines its imagery with a frame.
  +
|}
  +
  +
<center>'''Figure 12-32 Public Class Diagram'''</center>
   
 
This section documents all the standard BOOPSI classes, including their methods and attributes.
 
This section documents all the standard BOOPSI classes, including their methods and attributes.
Line 39: Line 162:
 
typedef struct
 
typedef struct
 
{
 
{
ULONG MethodID;
+
uint32 MethodID;
 
} *Msg;
 
} *Msg;
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 61: Line 184:
 
For example, the ''itexticlass'' attribute IA_Left has the code '''(ISG)''' after it. This means an application can set IA_Left when it creates an instance of ''itexticlass'' (OM_NEW) and when it uses the OM_SET method. The application can also ask an ''itexticlass'' object what the IA_Left value is, using the OM_GET method.
 
For example, the ''itexticlass'' attribute IA_Left has the code '''(ISG)''' after it. This means an application can set IA_Left when it creates an instance of ''itexticlass'' (OM_NEW) and when it uses the OM_SET method. The application can also ask an ''itexticlass'' object what the IA_Left value is, using the OM_GET method.
   
The OM_NEW, OM_SET, OM_NOTIFY, and OM_UPDATE messages all contain a pointer to a tag list. This tag list contains the attributes and corresponding values that the method affects. Each TagItem in this list makes up an attribute/value pair. The ti_Tag portion of the TagItem contains the attribute's ID while the ti_Data field contains the attribute's value. Note that these tag lists can also contain utility.library Global System control tags (like TAG_SKIP and TAG_DONE), so dispatchers should use the tag functions from utility.library to process these lists. See documentation on the Utility library for more information.
+
The OM_NEW, OM_SET, OM_NOTIFY, and OM_UPDATE messages all contain a pointer to a tag list. This tag list contains the attributes and corresponding values that the method affects. Each TagItem in this list makes up an attribute/value pair. The ti_Tag portion of the TagItem contains the attribute's ID while the ti_Data field contains the attribute's value. Note that these tag lists can also contain utility.library Global System control tags (like TAG_SKIP and TAG_END), so dispatchers should use the tag functions from utility.library to process these lists. See documentation on the Utility library for more information.
   
 
All methods are called via a class dispatcher:
 
All methods are called via a class dispatcher:
Line 73: Line 196:
 
== rootclass ==
 
== rootclass ==
   
  +
{| class="wikitable"
''rootclass''
 
  +
! Class
 
  +
| rootclass
None
 
  +
|-
 
  +
! Superclass
&lt;intuition/classusr.h&gt;
 
  +
| None
  +
|-
  +
! Include File
  +
| <intuition/classusr.h>
  +
|}
   
 
This is the universal base class for all other classes.
 
This is the universal base class for all other classes.
   
  +
=== New Methods ===
This method tells a class to create a new instance of itself. If OM_NEW is successful, it returns a pointer to the new object, otherwise it returns NULL.
 
   
  +
; OM_NEW
For programmers who are only creating BOOPSI objects rather than creating custom classes, use the intuition.library function NewObject():
 
  +
: This method tells a class to create a new instance of itself. If OM_NEW is successful, it returns a pointer to the new object, otherwise it returns NULL.
   
  +
: For programmers who are only creating BOOPSI objects rather than creating custom classes, use the intuition.library function NewObject():
<pre>
 
  +
<syntaxhighlight>
 
APTR NewObject(struct IClass *privateclass,
 
APTR NewObject(struct IClass *privateclass,
 
UBYTE *publicclassname,
 
UBYTE *publicclassname,
 
ULONG firsttag,
 
ULONG firsttag,
 
...);
 
...);
  +
</syntaxhighlight>
</pre>
 
   
The OM_NEW method receives the following arguments (defined in &lt;intuition/classusr.h&gt;):
+
: The OM_NEW method receives the following arguments (defined in &lt;intuition/classusr.h&gt;):
  +
<syntaxhighlight>
 
<pre>
 
 
struct opSet /* The OM_NEW method uses the same structure as OM_GET */
 
struct opSet /* The OM_NEW method uses the same structure as OM_GET */
 
{
 
{
Line 101: Line 230:
 
struct GadgetInfo *ops_GInfo; /* Always NULL for OM_NEW */
 
struct GadgetInfo *ops_GInfo; /* Always NULL for OM_NEW */
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. Each pair contains an attribute ID and the initial value of the corresponding attribute.
+
: The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. Each pair contains an attribute ID and the initial value of the corresponding attribute.
   
The ops_GInfo field is always NULL for the OM_NEW method.
+
: The ops_GInfo field is always NULL for the OM_NEW method.
   
Unlike other methods, when the dispatcher gets an OM_NEW message, the object pointer (newobject from the dispatchRKMModel() prototype above) does not point to an object, since the idea is to create a new object. The pointer normally used to pass a BOOPSI object is instead used to pass the address of the object's "true class" (the class of which the object is an instance).
+
: Unlike other methods, when the dispatcher gets an OM_NEW message, the object pointer (newobject from the dispatchRKMModel() prototype above) does not point to an object, since the idea is to create a new object. The pointer normally used to pass a BOOPSI object is instead used to pass the address of the object's "true class" (the class of which the object is an instance).
   
The first thing the dispatcher does when it processes an OM_NEW message is pass the OM_NEW message on to its superclass's dispatcher. It does this using the function IDoSuperMethodA():
+
: The first thing the dispatcher does when it processes an OM_NEW message is pass the OM_NEW message on to its superclass's dispatcher. It does this using the function IDoSuperMethodA():
  +
<syntaxhighlight>
 
<pre>
 
 
ULONG IDoSuperMethodA(Class *cl, Object *trueclass, Msg msg);
 
ULONG IDoSuperMethodA(Class *cl, Object *trueclass, Msg msg);
  +
</syntaxhighlight>
</pre>
 
   
Each superclass's dispatcher does this until the message gets to the ''rootclass'' dispatcher.
+
: Each superclass's dispatcher does this until the message gets to the ''rootclass'' dispatcher.
   
Each class keeps a record of how much memory its local instance data requires. The ''rootclass'' dispatcher's OM_NEW method looks at the object's true class (newobject from the prototype) to find out how much memory to allocate for the object's instance data. The ''rootclas''s dispatcher allocates enough memory for the true class's local instance data, plus enough memory for the local instance data of each of the true class's superclasses. If all goes well, the ''rootclass'' dispatcher increments the true class's internal count of instances of true class, and returns a pointer to the newly created object. It passes control back to the subclass dispatcher that called it. If there was a problem, the ''rootclass'' dispatcher passes back a NULL. When the ''rootclass'' dispatcher returns, the subclass dispatcher regains control from DoSuperMethodA(). DoSuperMethodA() will return either a pointer to the new object or NULL if there was an error. Although the ''rootclass'' dispatcher allocated all the memory the object needs, it did not set up any of that memory. Now its the the subclass dispatcher's turn to do some work. It has to initialize the instance data that is local to its class. A dispatcher finds its local instance data by using the INST_DATA() macro (defined in &lt;intuition/classes.h&gt;).
+
: Each class keeps a record of how much memory its local instance data requires. The ''rootclass'' dispatcher's OM_NEW method looks at the object's true class (newobject from the prototype) to find out how much memory to allocate for the object's instance data. The ''rootclas''s dispatcher allocates enough memory for the true class's local instance data, plus enough memory for the local instance data of each of the true class's superclasses. If all goes well, the ''rootclass'' dispatcher increments the true class's internal count of instances of true class, and returns a pointer to the newly created object. It passes control back to the subclass dispatcher that called it. If there was a problem, the ''rootclass'' dispatcher passes back a NULL. When the ''rootclass'' dispatcher returns, the subclass dispatcher regains control from DoSuperMethodA(). DoSuperMethodA() will return either a pointer to the new object or NULL if there was an error. Although the ''rootclass'' dispatcher allocated all the memory the object needs, it did not set up any of that memory. Now its the the subclass dispatcher's turn to do some work. It has to initialize the instance data that is local to its class. A dispatcher finds its local instance data by using the INST_DATA() macro (defined in &lt;intuition/classes.h&gt;).
   
After initializing its local instance data, the subclass dispatcher passes control down to its subclass dispatcher, which in turn, initializes its local instance data. Control passes down from class to subclass until the true class dispatcher regains control.
+
: After initializing its local instance data, the subclass dispatcher passes control down to its subclass dispatcher, which in turn, initializes its local instance data. Control passes down from class to subclass until the true class dispatcher regains control.
   
Now the true class dispatcher has to initialize its local instance data. It has to scan through the tag list of attribute/value pairs passed in the OM_NEW message (opSet.ops_AttrList). If the dispatcher finds any attributes that the true class recognizes, it has to initialize them to the value passed in the attribute/value pair.
+
: Now the true class dispatcher has to initialize its local instance data. It has to scan through the tag list of attribute/value pairs passed in the OM_NEW message (opSet.ops_AttrList). If the dispatcher finds any attributes that the true class recognizes, it has to initialize them to the value passed in the attribute/value pair.
   
At this point, the new object can allocate other resources it needs that it did not allocate as part of its instance data. For example, the new BOOPSI object might need a frame image around itself, so it can create a new one using a BOOPSI frame image. If the object allocates any resources in this step, it must deallocate these resources later when it is disposed in the OM_DISPOSE method.
+
: At this point, the new object can allocate other resources it needs that it did not allocate as part of its instance data. For example, the new BOOPSI object might need a frame image around itself, so it can create a new one using a BOOPSI frame image. If the object allocates any resources in this step, it must deallocate these resources later when it is disposed in the OM_DISPOSE method.
   
Finally, the dispatcher can return. When the dispatcher returns from an OM_NEW method, it returns a pointer to the new object.
+
: Finally, the dispatcher can return. When the dispatcher returns from an OM_NEW method, it returns a pointer to the new object.
   
  +
; OM_DISPOSE
This method instructs an object to delete itself. The ''rootclass'' dispatcher's OM_DISPOSE method decrements the true class's internal count of instances of true class. The return value for this method is not explicitly defined.
 
  +
: This method instructs an object to delete itself. The ''rootclass'' dispatcher's OM_DISPOSE method decrements the true class's internal count of instances of true class. The return value for this method is not explicitly defined.
   
This method uses the default BOOPSI message.
+
: This method uses the default BOOPSI message.
   
Applications should not call this method directly. Instead they should use the intuition.library function DisposeObject().
+
: Applications should not call this method directly. Instead they should use the intuition.library function DisposeObject().
   
For the OM_DISPOSE method, an object should do the following:
+
: For the OM_DISPOSE method, an object should do the following:
   
# Free any additional resources the object explicitly allocated itself in the OM_NEW method (this does not include the instance data).
+
:# Free any additional resources the object explicitly allocated itself in the OM_NEW method (this does not include the instance data).
# Pass the message up to the superclass, which will eventually reach ''rootclass'', which will free the instance data allocated for the object.
+
:# Pass the message up to the superclass, which will eventually reach ''rootclass'', which will free the instance data allocated for the object.
# If a class does not allocate any extra resources when it creates an object, it can defer all OM_DISPOSE processing to its superclass.
+
:# If a class does not allocate any extra resources when it creates an object, it can defer all OM_DISPOSE processing to its superclass.
   
  +
; OM_ADDTAIL
This method tells an object to add itself to the end of a specified Exec list. BOOPSI objects contain a MinNode structure used for this purpose. The return value for this method is not explicitly defined. The method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
 
  +
: This method tells an object to add itself to the end of a specified Exec list. BOOPSI objects contain a MinNode structure used for this purpose. The return value for this method is not explicitly defined. The method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
 
  +
<syntaxhighlight>
<pre>
 
 
struct opAddTail {
 
struct opAddTail {
 
ULONG MethodID; /* OM_ADDTAIL */
 
ULONG MethodID; /* OM_ADDTAIL */
 
struct List *opat_List; /* The exec list to add the object to */
 
struct List *opat_List; /* The exec list to add the object to */
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
The opat_List can be any Exec list. Use the Intuition function NextObject() to step through this list.
+
: The opat_List can be any Exec list. Use the Intuition function NextObject() to step through this list.
   
  +
; OM_REMOVE
Remove an object from an Exec list. The return value for this method is not explicitly defined. This method uses the default BOOPSI message.
 
  +
: Remove an object from an Exec list. The return value for this method is not explicitly defined. This method uses the default BOOPSI message.
   
 
The following methods are described at the ''rootclass'' level although its up to the subclasses to actually implement them. If a class does not implement these methods, it should either return zero, indicating that this class does not support the method, or defer processing on to its superclass.
 
The following methods are described at the ''rootclass'' level although its up to the subclasses to actually implement them. If a class does not implement these methods, it should either return zero, indicating that this class does not support the method, or defer processing on to its superclass.
   
  +
; OM_ADDMEMBER
Tells an object to add another object to its personal Exec list. What the list is for depends on the class. The return value for this method is not explicitly defined.
 
  +
: Tells an object to add another object to its personal Exec list. What the list is for depends on the class. The return value for this method is not explicitly defined.
   
One class that uses this method is ''modelclass''. A ''modelclass'' object maintains a broadcast list. When a ''modelclass'' object gets an OM_NOTIFY message, it broadcasts an OM_UPDATE message about the OM_NOTIFY to every object in its broadcast list.
+
: One class that uses this method is ''modelclass''. A ''modelclass'' object maintains a broadcast list. When a ''modelclass'' object gets an OM_NOTIFY message, it broadcasts an OM_UPDATE message about the OM_NOTIFY to every object in its broadcast list.
   
This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
+
: This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
  +
<syntaxhighlight>
 
<pre>
 
 
#define opAddMember opMember
 
#define opAddMember opMember
 
struct opMember {
 
struct opMember {
Line 166: Line 296:
 
Object *opam_Object; /* add (or remove) this object */
 
Object *opam_Object; /* add (or remove) this object */
 
}; /* to (from) personal list. */
 
}; /* to (from) personal list. */
  +
</syntaxhighlight>
</pre>
 
   
opam_Object is the object to add to the list. A dispatcher typically implements OM_ADDMEMBER by sending the OM_ADDTAIL message to the opam_Object object.
+
: opam_Object is the object to add to the list. A dispatcher typically implements OM_ADDMEMBER by sending the OM_ADDTAIL message to the opam_Object object.
   
  +
; OM_REMMEMBER
Tells an object to remove a member object from its personal list. The member object should have already been added with OM_ADDMEMBER. This method uses the same custom message as OM_ADDMEMBER. Normally a dispatcher implements OM_REMMEMBER by sending the OM_REMOVE message to the opam_Object object. The return value for this method is not explicitly defined.
 
  +
: Tells an object to remove a member object from its personal list. The member object should have already been added with OM_ADDMEMBER. This method uses the same custom message as OM_ADDMEMBER. Normally a dispatcher implements OM_REMMEMBER by sending the OM_REMOVE message to the opam_Object object. The return value for this method is not explicitly defined.
   
  +
; OM_GET
Tells an object to report an attribute’s value. Applications should not call this method directly. Instead, use the intuition.library function GetAttr(). The return value for this method is not explicitly defined.
 
  +
: Tells an object to report an attribute's value. Applications should not call this method directly. Instead, use the intuition.library function GetAttr(). The return value for this method is not explicitly defined.
   
This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
+
: This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
  +
<syntaxhighlight>
 
<pre>
 
 
struct opGet {
 
struct opGet {
 
ULONG MethodID; /* OM_GET */
 
ULONG MethodID; /* OM_GET */
Line 182: Line 313:
 
ULONG *opg_Storage; /* place to put attribute value */
 
ULONG *opg_Storage; /* place to put attribute value */
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
If the object's dispatcher recognizes opg_AttrID as one of the attributes defined by this class, the dispatcher should copy the value of that attribute to where opg_Storage points:
+
: If the object's dispatcher recognizes opg_AttrID as one of the attributes defined by this class, the dispatcher should copy the value of that attribute to where opg_Storage points:
  +
<syntaxhighlight>
 
<pre>
 
 
struct opGet *myopget;
 
struct opGet *myopget;
 
...
 
...
*(myopget-&gt;opg_Storage) = my_attribute_value;
+
*(myopget->opg_Storage) = my_attribute_value;
 
...
 
...
  +
</syntaxhighlight>
</pre>
 
 
If the dispatcher does not recognize opg_AttrID, it should pass the message on to the superclass.
 
   
  +
: If the dispatcher does not recognize opg_AttrID, it should pass the message on to the superclass.
This method tells an object to set one or more of its attributes. Applications should not call this method directly. Instead, use the intuition.library functions SetAttrs() and SetGadgetAttrs() to call this method. The return value for this method is not explicitly defined.
 
   
  +
; OM_SET
The return value for this method is not explicitly defined. However, in general, when implementing the OM_SET method, if setting an object attribute causes some sort of visual state change, the OM_SET method should return a value greater than zero. If changing an attribute does not affect the visual state, OM_SET should return zero.
 
  +
: This method tells an object to set one or more of its attributes. Applications should not call this method directly. Instead, use the intuition.library functions SetAttrs() and SetGadgetAttrs() to call this method. The return value for this method is not explicitly defined.
   
  +
: The return value for this method is not explicitly defined. However, in general, when implementing the OM_SET method, if setting an object attribute causes some sort of visual state change, the OM_SET method should return a value greater than zero. If changing an attribute does not affect the visual state, OM_SET should return zero.
This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
 
   
  +
: This method uses a custom message (defined in &lt;intuition/classusr.h&gt;):
<pre>
 
  +
<syntaxhighlight>
 
struct opSet {
 
struct opSet {
 
ULONG MethodID; /* OM_SET */
 
ULONG MethodID; /* OM_SET */
Line 207: Line 337:
 
struct GadgetInfo *ops_GInfo;
 
struct GadgetInfo *ops_GInfo;
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. These pairs contain the IDs and the new values of the attributes to set. The dispatcher has to look through this list (see docs for the utility.library NextTagItem() function) for attributes its class recognizes and set the attribute’s value accordingly. The dispatcher should let its superclass handle any attributes it does not recognize.
+
: The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. These pairs contain the IDs and the new values of the attributes to set. The dispatcher has to look through this list (see docs for the utility.library NextTagItem() function) for attributes its class recognizes and set the attribute’s value accordingly. The dispatcher should let its superclass handle any attributes it does not recognize.
   
If the object is a gadget, the ops_GInfo field contains a pointer to a GadgetInfo structure. Otherwise, the value in ops_GInfo is undefined. Intuition use the GadgetInfo structure to pass display information to gadgets. See the ''gadgetclass'' methods for more details.
+
: If the object is a gadget, the ops_GInfo field contains a pointer to a GadgetInfo structure. Otherwise, the value in ops_GInfo is undefined. Intuition use the GadgetInfo structure to pass display information to gadgets. See the ''gadgetclass'' methods for more details.
   
  +
; OM_UPDATE
This method tells an object to update one or more of its attributes. No application should call this method. Only BOOPSI objects send OM_UPDATE messages. The return value for this method is not explicitly defined.
 
  +
: This method tells an object to update one or more of its attributes. No application should call this method. Only BOOPSI objects send OM_UPDATE messages. The return value for this method is not explicitly defined.
   
A BOOPSI object uses an OM_UPDATE message to notify another BOOPSI object about transitory changes to one or more attributes.
+
: A BOOPSI object uses an OM_UPDATE message to notify another BOOPSI object about transitory changes to one or more attributes.
   
From the point of view of most objects, an OM_UPDATE message is almost identical to OM_SET. Because the methods are so similar, When a typical dispatcher receives an OM_UPDATE message, it processes the OM_UPDATE the same way it would process an OM_SET message, usually using the same code.
+
: From the point of view of most objects, an OM_UPDATE message is almost identical to OM_SET. Because the methods are so similar, When a typical dispatcher receives an OM_UPDATE message, it processes the OM_UPDATE the same way it would process an OM_SET message, usually using the same code.
   
There are actually two kinds of OM_UPDATE, an interim and final one. While a BOOPSI object's attribute is in a transient state, it can send out interim OM_UPDATE messages to its target(s). For example, while the user is sliding a BOOPSI prop gadget, the prop gadget sends interim OM_UPDATE message about changes to its PGA_Top value (the integer value of the prop gadget is the PGA_Top attribute) to some target object. When the user lets go of the prop gadget, the gadget is no longer in a transient state, so the gadget sends out a final OM_UPDATE about its PGA_Top attribute. The target object can choose to change one of its attributes based on the OM_UPDATE messages it receives.
+
: There are actually two kinds of OM_UPDATE, an interim and final one. While a BOOPSI object's attribute is in a transient state, it can send out interim OM_UPDATE messages to its target(s). For example, while the user is sliding a BOOPSI prop gadget, the prop gadget sends interim OM_UPDATE message about changes to its PGA_Top value (the integer value of the prop gadget is the PGA_Top attribute) to some target object. When the user lets go of the prop gadget, the gadget is no longer in a transient state, so the gadget sends out a final OM_UPDATE about its PGA_Top attribute. The target object can choose to change one of its attributes based on the OM_UPDATE messages it receives.
   
The layout of the OM_UPDATE message is almost identical to the OM_SET message:
+
: The layout of the OM_UPDATE message is almost identical to the OM_SET message:
  +
<syntaxhighlight>
 
<pre>
 
 
struct opUpdate { /* the OM_NOTIFY method also uses this structure */
 
struct opUpdate { /* the OM_NOTIFY method also uses this structure */
 
ULONG MethodID; /* OM_UPDATE */
 
ULONG MethodID; /* OM_UPDATE */
Line 232: Line 362:
   
 
#define OPUF_INTERIM (1&lt;&lt;0)
 
#define OPUF_INTERIM (1&lt;&lt;0)
  +
</syntaxhighlight>
</pre>
 
   
Some dispatchers need to know the difference between an interim and final OM_UPDATE. A dispatcher can tell the difference between an interim and final OM_UPDATE message because the OM_UPDATE message has an extra field for flags. If the low order bit (the OPUF_INTERIM bit) is set, this is an interim OM_UPDATE message. The interim flag is useful to a class that wants to ignore any interim messages, processing only final attribute values.
+
: Some dispatchers need to know the difference between an interim and final OM_UPDATE. A dispatcher can tell the difference between an interim and final OM_UPDATE message because the OM_UPDATE message has an extra field for flags. If the low order bit (the OPUF_INTERIM bit) is set, this is an interim OM_UPDATE message. The interim flag is useful to a class that wants to ignore any interim messages, processing only final attribute values.
   
  +
; OM_NOTIFY
This method tells an object to broadcast an attribute change to a set of target objects using OM_UPDATE messages. The return value for this method is not explicitly defined.
 
  +
: This method tells an object to broadcast an attribute change to a set of target objects using OM_UPDATE messages. The return value for this method is not explicitly defined.
   
The OM_NOTIFY method uses the same message structure as OM_UPDATE.
+
: The OM_NOTIFY method uses the same message structure as OM_UPDATE.
   
Most dispatchers do not handle the OM_NOTIFY message directly. Normally they inherit this method from a superclass, so they pass the OM_NOTIFY message on to the superclass dispatcher.
+
: Most dispatchers do not handle the OM_NOTIFY message directly. Normally they inherit this method from a superclass, so they pass the OM_NOTIFY message on to the superclass dispatcher.
   
Although most dispatchers don't have to process OM_NOTIFY messages, most do have to send them. Whenever an object receives an OM_SET or OM_UPDATE about one of its attributes, it may need to notify other objects of the change. For example, when a prop gadget's PGA_Top value changes, its target object(s) need to hear about it.
+
: Although most dispatchers don't have to process OM_NOTIFY messages, most do have to send them. Whenever an object receives an OM_SET or OM_UPDATE about one of its attributes, it may need to notify other objects of the change. For example, when a prop gadget's PGA_Top value changes, its target object(s) need to hear about it.
   
If an object needs to notify other objects about a change to one or more of its attributes, it sends itself an OM_NOTIFY message. The OM_NOTIFY message will eventually end up in the hands of a superclass that understands OM_NOTIFY and it will send OM_UPDATE messages to the target objects.
+
: If an object needs to notify other objects about a change to one or more of its attributes, it sends itself an OM_NOTIFY message. The OM_NOTIFY message will eventually end up in the hands of a superclass that understands OM_NOTIFY and it will send OM_UPDATE messages to the target objects.
  +
  +
=== Changed Methods ===
   
 
Not applicable.
 
Not applicable.
  +
  +
=== Attributes ===
   
 
None.
 
None.
Line 252: Line 387:
 
== icclass ==
 
== icclass ==
   
  +
{| class="wikitable"
''icclass''
 
  +
! Class
 
(interconnection class)
+
| icclass (interconnection class)
  +
|-
 
  +
! Superclass
''rootclass''
 
  +
| rootclass
 
  +
|-
&lt;intuition/icclass.h&gt;
 
  +
! Include File
  +
| <intuition/icclass.h>
  +
|}
   
 
Base class of simple OM_UPDATE forwarding objects. When an ''icclass'' object gets an OM_UPDATE message, it maps the attributes in the OM_UPDATE message according to its mapping list (its ICA_MAP attribute) and forwards the OM_UPDATE to it target (its ICA_TARGET attribute).
 
Base class of simple OM_UPDATE forwarding objects. When an ''icclass'' object gets an OM_UPDATE message, it maps the attributes in the OM_UPDATE message according to its mapping list (its ICA_MAP attribute) and forwards the OM_UPDATE to it target (its ICA_TARGET attribute).
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
  +
=== Changed Methods ===
This method sets its attributes and returns 0. Note that this is not the same behavior as OM_NOTIFY.
 
   
  +
; OM_SET
These methods tell the object to notify its ICA_TARGET of attribute changes by sending the target an OM_UPDATE message. If the object has an ICA_MAP, it maps the attribute IDs it finds to new attribute IDs. See the ''rootclass'' descriptions of OM_NOTIFY and OM_UPDATE for more information. The return value for this method is not explicitly defined.
 
  +
: This method sets its attributes and returns 0. Note that this is not the same behavior as OM_NOTIFY.
   
  +
; OM_UPDATE/OM_NOTIFY
This attribute stores the address of the ''icclass'' object’s target object. Whenever the ''icclass'' object receives an OM_NOTIFY or OM_UPDATE message, it forwards that message to its target in the form of an OM_UPDATE message. If the ''icclass'' object has an attribute mapping list (see the ICA_MAP attribute below), it also maps the OM_NOTIFY/OM_UPDATE message's attribute IDs to new ones before forwarding the message.
 
  +
: These methods tell the object to notify its ICA_TARGET of attribute changes by sending the target an OM_UPDATE message. If the object has an ICA_MAP, it maps the attribute IDs it finds to new attribute IDs. See the ''rootclass'' descriptions of OM_NOTIFY and OM_UPDATE for more information. The return value for this method is not explicitly defined.
   
  +
=== Attributes ===
If the value of ICA_TARGET is ICTARGET_IDCMP, the ''icclass'' object sends an IDCMP_IDCMPUPDATE IntuiMessage to its window instead of forwarding an OM_UPDATE message. See the ''rootclass'' description of OM_UPDATE for more information.
 
   
  +
; ICA_TARGET (IS)
This attribute points to a tag list of attribute mappings which the ''icclass'' object uses to change the attribute IDs of an OM_UPDATE’s attribute/value pairs. For example, if an ''icclass'' object had the following ICA_MAP:
 
  +
: This attribute stores the address of the ''icclass'' object's target object. Whenever the ''icclass'' object receives an OM_NOTIFY or OM_UPDATE message, it forwards that message to its target in the form of an OM_UPDATE message. If the ''icclass'' object has an attribute mapping list (see the ICA_MAP attribute below), it also maps the OM_NOTIFY/OM_UPDATE message's attribute IDs to new ones before forwarding the message.
   
  +
: If the value of ICA_TARGET is ICTARGET_IDCMP, the ''icclass'' object sends an IDCMP_IDCMPUPDATE IntuiMessage to its window instead of forwarding an OM_UPDATE message. See the ''rootclass'' description of OM_UPDATE for more information.
<pre>
 
  +
  +
; ICA_MAP (IS)
  +
: This attribute points to a tag list of attribute mappings which the ''icclass'' object uses to change the attribute IDs of an OM_UPDATE's attribute/value pairs. For example, if an ''icclass'' object had the following ICA_MAP:
  +
<syntaxhighlight>
 
struct TagItem map[] =
 
struct TagItem map[] =
 
{
 
{
Line 281: Line 428:
 
{TAG_END, }
 
{TAG_END, }
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
before sending an OM_UPDATE to its ICA_TARGET, the ''icclass'' object scans through the OM_UPDATE message's attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the ''icclass'' object finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The ''icclass'' object does not disturb the attribute's value.
+
: before sending an OM_UPDATE to its ICA_TARGET, the ''icclass'' object scans through the OM_UPDATE message's attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the ''icclass'' object finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The ''icclass'' object does not disturb the attribute's value.
   
  +
; ICSPECIAL_CODE
This is a dummy attribute for the ICA_MAP. If any attribute maps to ICSPECIAL_CODE and ICA_TARGET is ICTARGET_IDCMP, then the value of the mapped attribute will be copied into the IntuiMessage.Code field of the IDCMP_IDCMPUPDATE message (just the lower sixteen bits of the attribute value will fit).
 
  +
: This is a dummy attribute for the ICA_MAP. If any attribute maps to ICSPECIAL_CODE and ICA_TARGET is ICTARGET_IDCMP, then the value of the mapped attribute will be copied into the IntuiMessage.Code field of the IDCMP_IDCMPUPDATE message (just the lower sixteen bits of the attribute value will fit).
   
 
== modelclass ==
 
== modelclass ==
   
  +
{| class="wikitable"
''modelclass''
 
  +
! Class
 
  +
| modelclass
''icclass''
 
  +
|-
 
  +
! Superclass
&lt;intuition/icclass.h&gt;
 
  +
| icclass
  +
|-
  +
! Include File
  +
| &lt;intuition/icclass.h&gt;
  +
|}
   
 
A class of OM_UPDATE forwarding objects that have multiple targets. In addition to the features the ''modelclass'' object inherits from ''icclass'', when a ''modelclass'' object gets an OM_UPDATE message, it forwards that OM_UPDATE message to all of the objects in its broadcast list.
 
A class of OM_UPDATE forwarding objects that have multiple targets. In addition to the features the ''modelclass'' object inherits from ''icclass'', when a ''modelclass'' object gets an OM_UPDATE message, it forwards that OM_UPDATE message to all of the objects in its broadcast list.
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
  +
=== Changed Methods ===
This method tells a model to add an object to its broadcast list. When the object disposes of itself, it will also dispose of any objects remaining on its broadcast list. The return value for this method is not explicitly defined. See the ''rootclas''s description of OM_ADDMEMBER for more information.
 
   
  +
; OM_ADDMEMBER
This method tells a model to remove an object from its broadcast list. The return value for this method is not explicitly defined. See the ''rootclass'' description of OM_REMMEMBER for more information.
 
  +
: This method tells a model to add an object to its broadcast list. When the object disposes of itself, it will also dispose of any objects remaining on its broadcast list. The return value for this method is not explicitly defined. See the ''rootclass' description of OM_ADDMEMBER for more information.
   
  +
; OM_REMMEMBER
This method tells a model to dispose of itself plus the objects remaining on its broadcast list. The return value for this method is not explicitly defined.
 
  +
: This method tells a model to remove an object from its broadcast list. The return value for this method is not explicitly defined. See the ''rootclass'' description of OM_REMMEMBER for more information.
   
  +
; OM_DISPOSE
This method tells an object to forward the message in the form of an OM_UPDATE message to all the objects in its broadcast list. The ''modelclass'' does not map the attributes in these OM_UPDATE messages. Because ''modelclass'' inherits behavior from ''icclass'', if the model has an ICA_TARGET and ICA_MAP, it will also send a mapped OM_UPDATE message to its ICA_TARGET. The return values for these methods are not explicitly defined. See the ''rootclass'' and ''icclass'' descriptions of these methods for more information.
 
  +
: This method tells a model to dispose of itself plus the objects remaining on its broadcast list. The return value for this method is not explicitly defined.
  +
  +
; OM_NOTIFY/OM_UPDATE
  +
: This method tells an object to forward the message in the form of an OM_UPDATE message to all the objects in its broadcast list. The ''modelclass'' does not map the attributes in these OM_UPDATE messages. Because ''modelclass'' inherits behavior from ''icclass'', if the model has an ICA_TARGET and ICA_MAP, it will also send a mapped OM_UPDATE message to its ICA_TARGET. The return values for these methods are not explicitly defined. See the ''rootclass'' and ''icclass'' descriptions of these methods for more information.
  +
  +
=== Attributes ===
   
 
None.
 
None.
Line 311: Line 474:
 
== imageclass ==
 
== imageclass ==
   
  +
{| class="wikitable"
''imageclass''
 
  +
! Class
 
  +
| imageclass
''rootclass''
 
  +
|-
 
  +
! Superclass
&lt;intuition/imageclass.h&gt;
 
  +
| rootclass
  +
|-
  +
! Include File
  +
| &lt;intuition/imageclass.h&gt;
  +
|}
   
 
This class is the base class for BOOPSI Images. These images are backwards compatible with the conventional Intuition Images. Every BOOPSI image has an Intuition Image structure embedded in it so Intuition can access the BOOPSI image as a conventional Image structure when necessary. Normally there are no direct instances of this class, only instances of subclasses of ''imageclass''.
 
This class is the base class for BOOPSI Images. These images are backwards compatible with the conventional Intuition Images. Every BOOPSI image has an Intuition Image structure embedded in it so Intuition can access the BOOPSI image as a conventional Image structure when necessary. Normally there are no direct instances of this class, only instances of subclasses of ''imageclass''.
   
  +
=== New Methods ===
This method tells an image object to draw itself. Applications should not call this method directly, instead use the intuition.library function DrawImageState(). The return value for this method is not explicitly defined.
 
   
  +
; IM_DRAW
The IM_DRAW method uses a custom message structure:
 
  +
: This method tells an image object to draw itself. Applications should not call this method directly, instead use the intuition.library function DrawImageState(). The return value for this method is not explicitly defined.
   
  +
: The IM_DRAW method uses a custom message structure:
<pre>
 
  +
<syntaxhighlight>
 
struct impDraw
 
struct impDraw
 
{
 
{
Line 336: Line 506:
 
struct DrawInfo *imp_DrInfo; /* DrawInfo describing rendering area */
 
struct DrawInfo *imp_DrInfo; /* DrawInfo describing rendering area */
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
The imp_State field contains the visual state to render the image. The visual states (defined in &lt;intuition/imageclass.h&gt;) are:
+
: The imp_State field contains the visual state to render the image. The visual states (defined in &lt;intuition/imageclass.h&gt;) are:
   
  +
:; IDS_NORMAL
Render using normal imagery. This is the only kind of imagery available to non-BOOPSI images.
 
  +
:: Render using normal imagery. This is the only kind of imagery available to non-BOOPSI images.
   
  +
:; IDS_SELECTED
Render using "selected" imagery. "Selected" refers to the state of a gadget's imagery when it is the selected gadget.
 
  +
:: Render using "selected" imagery. "Selected" refers to the state of a gadget's imagery when it is the selected gadget.
   
  +
:; IDS_DISABLED
Render using "disabled" imagery. "Disabled" refers to the state of a gadget's imagery when it is disabled. Typically, a disabled image has a ghosting pattern on top of it.
 
  +
:: Render using "disabled" imagery. "Disabled" refers to the state of a gadget's imagery when it is disabled. Typically, a disabled image has a ghosting pattern on top of it.
   
  +
:; IDS_INACTIVENORMAL
This is a special version of IDS_NORMAL for a "normal" image that is in the border of an inactive window.
 
  +
:: This is a special version of IDS_NORMAL for a "normal" image that is in the border of an inactive window.
   
  +
:; IDS_INACTIVESELECTED
This is a special version of IDS_SELECTED for a "selected" image that is in the border of an inactive window.
 
  +
:: This is a special version of IDS_SELECTED for a "selected" image that is in the border of an inactive window.
   
  +
:; IDS_INACTIVEDISABLED
This is a special version of IDS_DISABLED for a "disabled" image that is in the border of an inactive window.
 
  +
:: This is a special version of IDS_DISABLED for a "disabled" image that is in the border of an inactive window.
   
  +
:; IDS_BUSY
Render using "busy" imagery as if the object was the image of a gadget in a busy state. The busy gadget state is not yet supported by Intuition.
 
  +
:: Render using "busy" imagery as if the object was the image of a gadget in a busy state. The busy gadget state is not yet supported by Intuition.
   
  +
:; IDS_INDETERMINATE
Render using "indeterminate" imagery as if the object was the image of a gadget in an indeterminate state. The indeterminate gadget state is not yet supported by Intuition. Most image objects do not have different visual states for each possible imp_State. See the ''imageclass'' entries in this index for more details.
 
  +
:: Render using "indeterminate" imagery as if the object was the image of a gadget in an indeterminate state. The indeterminate gadget state is not yet supported by Intuition.
   
  +
: Most image objects do not have different visual states for each possible imp_State. See the ''imageclass'' entries in this index for more details.
When setting the pens to render an image, use the values from the imp_DrInfo-&gt;dri_Pens pen array (Note that it is possible for imp_DrInfo to be NULL). The possible pen values are defined in &lt;intuition/screens.h&gt;. See [[Intuition_Screens|Intuition Screens]] for more information on the pen array.
 
   
  +
: When setting the pens to render an image, use the values from the imp_DrInfo-&gt;dri_Pens pen array (Note that it is possible for imp_DrInfo to be NULL). The possible pen values are defined in &lt;intuition/screens.h&gt;. See [[Intuition_Screens|Intuition Screens]] for more information on the pen array.
This method returns TRUE if a point is within the old Image structure box defined by the Image structure's LeftEdge, TopEdge, Width, and Height fields. Subclasses of ''imageclass'' can redefine this method if they need to change the criteria for deciding if a point is within an image. Application programs should not call this method directly, instead use the Intuition function PointInImage(). The IM_HITTEST method uses a custom message structure:
 
   
  +
; IM_HITTEST
  +
: This method returns TRUE if a point is within the old Image structure box defined by the Image structure's LeftEdge, TopEdge, Width, and Height fields. Subclasses of ''imageclass'' can redefine this method if they need to change the criteria for deciding if a point is within an image. Application programs should not call this method directly, instead use the Intuition function PointInImage(). The IM_HITTEST method uses a custom message structure:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
struct impHitTest
 
struct impHitTest
Line 372: Line 552:
 
</syntaxhighlight>
 
</syntaxhighlight>
   
If an image object doesn't need to make any changes to how its superclass handles IM_HITTEST, it can blindly pass this method on to its superclass.
+
: If an image object doesn't need to make any changes to how its superclass handles IM_HITTEST, it can blindly pass this method on to its superclass.
   
  +
; IM_ERASE
The IM_ERASE method tells an image to erase itself. Applications should not call this method directly, instead they should call the Intuition function EraseImage(). The return value for this method is not explicitly defined.
 
  +
: The IM_ERASE method tells an image to erase itself. Applications should not call this method directly, instead they should call the Intuition function EraseImage(). The return value for this method is not explicitly defined.
 
The IM_ERASE method uses a custom message structure:
 
   
  +
: The IM_ERASE method uses a custom message structure:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
struct impErase
 
struct impErase
Line 391: Line 571:
 
</syntaxhighlight>
 
</syntaxhighlight>
   
The ''imageclass'' dispatcher calls the graphics.library function EraseRect() to erase the image. The ''imageclass'' dispatcher gets the position of the image using the offsets from the IM_ERASE message and the dimensions it finds in the object's Image structure. The ''imageclass'' dispatcher does not do any bounds checking before calling EraseRect().
+
: The ''imageclass'' dispatcher calls the graphics.library function EraseRect() to erase the image. The ''imageclass'' dispatcher gets the position of the image using the offsets from the IM_ERASE message and the dimensions it finds in the object's Image structure. The ''imageclass'' dispatcher does not do any bounds checking before calling EraseRect().
   
IM_DRAWFRAME
+
; IM_DRAWFRAME
  +
: The IM_DRAWFRAME method instructs an image object to render itself within the confines of a given rectangle. The return value for this method is not explicitly defined.
   
  +
: This method uses a custom message structure that is basically an extension of the IM_DRAW message:
The IM_DRAWFRAME method instructs an image object to render itself within the confines of a given rectangle. The return value for this method is not explicitly defined.
 
  +
<syntaxhighlight>
 
This method uses a custom message structure that is basically an extension of the IM_DRAW message:
 
 
<pre>
 
 
struct impDraw {
 
struct impDraw {
 
ULONG MethodID; /* IM_DRAWFRAME */
 
ULONG MethodID; /* IM_DRAWFRAME */
Line 421: Line 599:
 
} imp_Dimensions;
 
} imp_Dimensions;
 
};
 
};
  +
</syntaxhighlight>
</pre>
 
   
The Width and Height fields provide the object's rectangular bounds. How the image object deals with the frame is implementation specific. If the ''imageclass'' dispatcher sees this message, it will convert it to an IM_DRAW message and send it back to the image's true class. An image subclass which assigns proper meaning to this method (i.e., ''frameiclass'') should handle this method itself.
+
: The Width and Height fields provide the object's rectangular bounds. How the image object deals with the frame is implementation specific. If the ''imageclass'' dispatcher sees this message, it will convert it to an IM_DRAW message and send it back to the image's true class. An image subclass which assigns proper meaning to this method (i.e., ''frameiclass'') should handle this method itself.
   
This method is useful to classes of images that can scale or clip themselves to arbitrary dimensions. Typically, an instance of a class that truly supports this method will massage its imagery as best it can to fit into the rectangle.
+
: This method is useful to classes of images that can scale or clip themselves to arbitrary dimensions. Typically, an instance of a class that truly supports this method will massage its imagery as best it can to fit into the rectangle.
   
In general, applications that use this method to draw an object should use the IM_ERASEFRAME method to erase it (see below). This will ensure that the image erases itself at the proper scale.
+
: In general, applications that use this method to draw an object should use the IM_ERASEFRAME method to erase it (see below). This will ensure that the image erases itself at the proper scale.
   
  +
; IM_HITFRAME
This method is a special version of IM_HITTEST for images that support IM_DRAWFRAME. It asks an image if a point would be inside it if the image was confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
 
  +
: This method is a special version of IM_HITTEST for images that support IM_DRAWFRAME. It asks an image if a point would be inside it if the image was confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
 
This method uses a custom message structure:
 
   
  +
: This method uses a custom message structure:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
struct impHitTest
 
struct impHitTest
Line 451: Line 629:
 
</syntaxhighlight>
 
</syntaxhighlight>
   
The ''imageclass'' dispatcher treats IM_HITFRAME just like IM_HITTEST, ignoring the restricting dimensions.
+
: The ''imageclass'' dispatcher treats IM_HITFRAME just like IM_HITTEST, ignoring the restricting dimensions.
 
This method is a special version of IM_ERASE for images that support IM_DRAWFRAME. It asks an image to erase itself as if it were confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
 
   
  +
; IM_ERASEFRAME
This method uses a custom message structure:
 
  +
: This method is a special version of IM_ERASE for images that support IM_DRAWFRAME. It asks an image to erase itself as if it were confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
   
  +
: This method uses a custom message structure:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
struct impErase /* NOTE: This is a subset of impDraw */
 
struct impErase /* NOTE: This is a subset of impDraw */
Line 478: Line 656:
 
</syntaxhighlight>
 
</syntaxhighlight>
   
The ''imageclass'' dispatcher handles an IM_ERASEFRAME message as if it was an IM_ERASE message, ignoring the bounds. See the ''imageclass'' description for IM_ERASE for more details.
+
: The ''imageclass'' dispatcher handles an IM_ERASEFRAME message as if it was an IM_ERASE message, ignoring the bounds. See the ''imageclass'' description for IM_ERASE for more details.
   
  +
; IM_FRAMEBOX
This method applies to image classes that are used to put a frame centered around some other objects. This method asks a framing image what its dimensions should be if it had to frame some object or set of objects that fit into a rectangular bounds. For example, to draw an ''frameiclass'' image around a group of gadgets that fit into a specific rectangle, you first send the ''frameiclass'' object an IM_FRAMEBOX message describing the dimensions and position of that rectangle. The frame reports what its position and dimensions would have to be to surround those gadgets. Use these results to draw the ''frameiclass'' image. The return value for this method is not explicitly defined.
 
  +
: This method applies to image classes that are used to put a frame centered around some other objects. This method asks a framing image what its dimensions should be if it had to frame some object or set of objects that fit into a rectangular bounds. For example, to draw an ''frameiclass'' image around a group of gadgets that fit into a specific rectangle, you first send the ''frameiclass'' object an IM_FRAMEBOX message describing the dimensions and position of that rectangle. The frame reports what its position and dimensions would have to be to surround those gadgets. Use these results to draw the ''frameiclass'' image. The return value for this method is not explicitly defined.
 
IM_FRAMEBOX
 
 
uses a custom message structure:
 
   
  +
: IM_FRAMEBOX uses a custom message structure:
 
<syntaxhighlight>
 
<syntaxhighlight>
 
struct impFrameBox
 
struct impFrameBox
Line 501: Line 677:
 
</syntaxhighlight>
 
</syntaxhighlight>
   
The imp_FrameBox field points to an IBox structure (defined in &lt;intuition/intuition.h&gt;) describing the dimensions and position of the rectangle to frame. After the framing image determines the position and size it should be in order to properly frame imp_FrameBox, it stores the result in the imp_ContentsBox IBox. This method allows an application to use a framing image without having to worry about image specific details such as the thickness of the frame or centering the frame around the object.
+
: The imp_FrameBox field points to an IBox structure (defined in &lt;intuition/intuition.h&gt;) describing the dimensions and position of the rectangle to frame. After the framing image determines the position and size it should be in order to properly frame imp_FrameBox, it stores the result in the imp_ContentsBox IBox. This method allows an application to use a framing image without having to worry about image specific details such as the thickness of the frame or centering the frame around the object.
   
The imp_FrameFlags field is a bit field used to specify certain options for the IM_FRAMEBOX method. Currently, there is only one defined for it, FRAMEF_SPECIFY. If this bit is set, the imp_FrameBox contains a width and height that the frame image has to use as its width and height, even if the imp_FrameBox is smaller than imp_ContentsBox. The frame is free to adjust its position, but it is stuck with the imp_FrameBox dimensions. This allows an application to set the size of the frame image and still allow the frame image to position itself so it is centered on a rectangle.
+
: The imp_FrameFlags field is a bit field used to specify certain options for the IM_FRAMEBOX method. Currently, there is only one defined for it, FRAMEF_SPECIFY. If this bit is set, the imp_FrameBox contains a width and height that the frame image has to use as its width and height, even if the imp_FrameBox is smaller than imp_ContentsBox. The frame is free to adjust its position, but it is stuck with the imp_FrameBox dimensions. This allows an application to set the size of the frame image and still allow the frame image to position itself so it is centered on a rectangle.
   
The ''imageclass'' dispatcher does not support this method. It returns zero.
+
: The ''imageclass'' dispatcher does not support this method. It returns zero.
   
  +
=== Changed Methods ===
The instance data for ''imageclass'' contains an Image structure, and its Depth field is initialized to CUSTOMIMAGEDEPTH, which identifies such images to Intuition. The Image’s Width and Height fields default to arbitrary positive numbers for safety, but an ''imageclass'' subclass or an application should set these attributes to something meaningful.
 
   
  +
; OM_NEW
This method applies to all ''imageclass'' attributes. OM_SET returns 1.
 
  +
: The instance data for ''imageclass'' contains an Image structure, and its Depth field is initialized to CUSTOMIMAGEDEPTH, which identifies such images to Intuition. The Image's Width and Height fields default to arbitrary positive numbers for safety, but an ''imageclass'' subclass or an application should set these attributes to something meaningful.
   
  +
; OM_SET
These attributes correspond to similarly named fields in the Intuition Image structure. The ''imageclass'' dispatcher stores these attributes in their corresponding fields in the image object’s embedded Image structure.
 
  +
: This method applies to all ''imageclass'' attributes. OM_SET returns 1.
   
  +
=== Attributes ===
These attributes are copied into the Image structure’s PlanePick and PlaneOnOff fields, respectively.
 
   
  +
; IA_Left, IA_Top, IA_Width, IA_Height (ISG)
A pointer to general image data. This value is stored in the ImageData field of the Image structure.
 
  +
: These attributes correspond to similarly named fields in the Intuition Image structure. The ''imageclass'' dispatcher stores these attributes in their corresponding fields in the image object's embedded Image structure.
   
  +
; IA_FGPen, IA_BGPen (ISG)
This attribute points to an alternative pen array for the image. Imageclass does not support this attribute, it is described here for subclasses to use. See [[Intuition_Screens|Intuition Screens]] for more information on the pen array.
 
  +
: These attributes are copied into the Image structure's PlanePick and PlaneOnOff fields, respectively.
   
  +
; IA_Data (ISG)
== frameiclass ==
 
  +
: A pointer to general image data. This value is stored in the ImageData field of the Image structure.
   
  +
; IA_Pens ()
''frameiclass''
 
  +
: This attribute points to an alternative pen array for the image. Imageclass does not support this attribute, it is described here for subclasses to use. See [[Intuition_Screens|Intuition Screens]] for more information on the pen array.
   
  +
== frameiclass ==
''imageclass''
 
   
  +
{| class="wikitable"
&lt;intuition/imageclass.h&gt;
 
  +
! Class
  +
| frameiclass
  +
|-
  +
! Superclass
  +
| imageclass
  +
|-
  +
! Include File
  +
| &lt;intuition/imageclass.h&gt;
  +
|}
   
 
This is a class of framing image, which can optionally fill itself. Its purpose is to frame other display elements using an embossed or recessed rectangular frame. The frame renders itself using the appropriate DrawInfo pens (SHINEPEN, SHADOWPEN, etc.). This class is intelligent enough to bound or center its contents.
 
This is a class of framing image, which can optionally fill itself. Its purpose is to frame other display elements using an embossed or recessed rectangular frame. The frame renders itself using the appropriate DrawInfo pens (SHINEPEN, SHADOWPEN, etc.). This class is intelligent enough to bound or center its contents.
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
'''Changed Methods:'''
+
=== Changed Methods ===
   
  +
; IM_DRAW
This method tells a ''frameiclass'' object to render itself using the position and dimensions of its Image structure. It supports two sets of drawing states (passes in the impDraw.imp_State field):
 
  +
: This method tells a ''frameiclass'' object to render itself using the position and dimensions of its Image structure. It supports two sets of drawing states (passes in the impDraw.imp_State field):
   
  +
; IDS_NORMAL, IDS_INACTIVENORMAL, IDS_DISABLED
In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the BACKGROUNDPEN for its interior. Note that the frame renders the same imagery for all three of these states.
 
  +
: In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the BACKGROUNDPEN for its interior. Note that the frame renders the same imagery for all three of these states.
   
  +
; IDS_SELECTED, IDS_INACTIVESELECTED
In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the FILLPEN for its interior.
 
  +
: In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the FILLPEN for its interior.
   
See the ''imageclass'' description for IM_DRAW for more details.
+
: See the ''imageclass'' description for IM_DRAW for more details.
   
  +
; IM_DRAWFRAME
This method is almost the same as the ''frameiclass'' IM_DRAW method, except this method accepts a width and height that overrides the width and height stored in the object’s Image structure. It uses the same drawing states as the ''frameiclass''’s IM_DRAW method. See the ''imageclass'' description for IM_DRAWFRAME for more information.
 
  +
: This method is almost the same as the ''frameiclass'' IM_DRAW method, except this method accepts a width and height that overrides the width and height stored in the object's Image structure. It uses the same drawing states as the ''frameiclass'''s IM_DRAW method. See the ''imageclass'' description for IM_DRAWFRAME for more information.
   
  +
; IM_FRAMEBOX
This method asks a ''frameiclass'' image what its dimensions would be if it has to frame a specific rectangular area. See the ''imageclass'' description for IM_FRAMEBOX for more information.
 
  +
: This method asks a ''frameiclass'' image what its dimensions would be if it has to frame a specific rectangular area. See the ''imageclass'' description for IM_FRAMEBOX for more information.
   
  +
=== Attributes ===
If this attribute is TRUE, a ''frameiclass'' object will appear recessed into the drawing surface. It does this by swapping its use of the SHADOWPEN and SHINEPEN. By default, the frame appears to be raised from the surface.
 
   
  +
; IA_Recessed (IS)
If this attribute is TRUE, the frame does not fill itself, it just draws its edges.
 
  +
: If this attribute is TRUE, a ''frameiclass'' object will appear recessed into the drawing surface. It does this by swapping its use of the SHADOWPEN and SHINEPEN. By default, the frame appears to be raised from the surface.
  +
  +
; IA_EdgesOnly (IS)
  +
: If this attribute is TRUE, the frame does not fill itself, it just draws its edges.
   
 
== sysiclass ==
 
== sysiclass ==
   
  +
{| class="wikitable"
''sysiclass''
 
  +
! Class
 
  +
| sysiclass
''imageclass''
 
  +
|-
 
  +
! Superclass
&lt;intuition/imageclass.h&gt;
 
  +
| imageclass
  +
|-
  +
! Include File
  +
| &lt;intuition/imageclass.h&gt;
  +
|}
   
 
This is a class of system images and standard application images. As of Intuition version 37, there are 11 possible ''sysiclass'' image glyphs to choose from:
 
This is a class of system images and standard application images. As of Intuition version 37, there are 11 possible ''sysiclass'' image glyphs to choose from:
   
  +
{| class="wikitable"
<table>
 
  +
| DEPTHIMAGE
<tbody>
 
  +
| Window depth arrangement image.
<tr class="odd">
 
  +
|-
<td align="left">DEPTHIMAGE</td>
 
  +
| ZOOMIMAGE
<td align="left">Window depth arrangement image.</td>
 
  +
| Window Zoom image.
</tr>
 
  +
|-
<tr class="even">
 
  +
| SIZEIMAGE
<td align="left">ZOOMIMAGE</td>
 
<td align="left">Window Zoom image.</td>
+
| Window Sizing image.
  +
|-
</tr>
 
  +
| CLOSEIMAGE
<tr class="odd">
 
  +
| Window close image.
<td align="left">SIZEIMAGE</td>
 
  +
|-
<td align="left">Window Sizing image.</td>
 
  +
| SDEPTHIMAGE
</tr>
 
  +
| Screen depth arrangement image.
<tr class="even">
 
  +
|-
<td align="left">CLOSEIMAGE</td>
 
  +
| LEFTIMAGE
<td align="left">Window close image.</td>
 
  +
| Left arrow image.
</tr>
 
  +
|-
<tr class="odd">
 
  +
| RIGHTIMAGE
<td align="left">SDEPTHIMAGE</td>
 
  +
| Right arrow image.
<td align="left">Screen depth arrangement image.</td>
 
  +
|-
</tr>
 
  +
| UPIMAGE
<tr class="even">
 
  +
| Up arrow image.
<td align="left">LEFTIMAGE</td>
 
  +
|-
<td align="left">Left arrow image.</td>
 
  +
| DOWNIMAGE
</tr>
 
  +
| Down arrow image.
<tr class="odd">
 
  +
|-
<td align="left">RIGHTIMAGE</td>
 
  +
| CHECKIMAGE
<td align="left">Right arrow image.</td>
 
  +
| Checkmark image.
</tr>
 
  +
|-
<tr class="even">
 
  +
| MXIMAGE
<td align="left">UPIMAGE</td>
 
<td align="left">Up arrow image.</td>
+
| Radio button image.
  +
|}
</tr>
 
<tr class="odd">
 
<td align="left">DOWNIMAGE</td>
 
<td align="left">Down arrow image.</td>
 
</tr>
 
<tr class="even">
 
<td align="left">CHECKIMAGE</td>
 
<td align="left">Checkmark image.</td>
 
</tr>
 
<tr class="odd">
 
<td align="left">MXIMAGE</td>
 
<td align="left">Radio button image.</td>
 
</tr>
 
</tbody>
 
</table>
 
   
 
The class caches the image's bitmap to improve rendering speed.
 
The class caches the image's bitmap to improve rendering speed.
  +
  +
=== New Methods ===
   
 
None.
 
None.
  +
  +
=== Changed Methods ===
   
 
None.
 
None.
   
  +
=== Attributes ===
This attribute contains a pointer to a DrawInfo structure (defined in &lt;intuition/screens.h&gt;) describing the target screen. The class requires this attribute in order to generate the image into a bitmap cache.
 
   
  +
; SYSIA_DrawInfo (I)
This attribute identifies which of the system image glyphs the ''sysiclass'' object uses. It can be one of the 11 glyphs described above.
 
  +
: This attribute contains a pointer to a DrawInfo structure (defined in &lt;intuition/screens.h&gt;) describing the target screen. The class requires this attribute in order to generate the image into a bitmap cache.
   
  +
; SYSIA_Which (I)
This attribute identifies which image size to use for the object. This generalizes Intuition's older concept of two different system image dimensions. There are three possible values for this attribute:
 
  +
: This attribute identifies which of the system image glyphs the ''sysiclass'' object uses. It can be one of the 11 glyphs described above.
   
  +
; SYSIA_Size (I)
Meant for Hires, non-interlaced 640*200/256 display.
 
  +
: This attribute identifies which image size to use for the object. This generalizes Intuition's older concept of two different system image dimensions. There are three possible values for this attribute:
   
  +
:; SYSISIZE_MEDRES
Meant for Hires, interlaced 640*400/512 display.
 
  +
:: Meant for Hires, non-interlaced 640*200/256 display.
   
  +
:; SYSISIZE_HIRES
Meant for Lores 320*200/256 display.
 
  +
:: Meant for Hires, interlaced 640*400/512 display.
   
  +
:; SYSISIZE_LOWRES
These sizes do not apply to all of the glyphs consistently. See the chart below for image dimensions (width * height) according to the SYSIA_Size and the glyph type. An "H" for the height means the glyph allows its height to be specified with IA_Height.
 
  +
:: Meant for Lores 320*200/256 display.
   
  +
: These sizes do not apply to all of the glyphs consistently. See the chart below for image dimensions (width * height) according to the SYSIA_Size and the glyph type. An "H" for the height means the glyph allows its height to be specified with IA_Height.
== fillrectclass ==
 
   
  +
:{| class="wikitable"
''fillrectclass''
 
  +
! SYSISIZE
  +
! LOWRES
  +
! MEDRES
  +
! HIRES
  +
|-
  +
| DEPTHIMAGE || 18 x H || 24 x H || 24 x H
  +
|-
  +
| ZOOMIMAGE || 18 x H || 24 x H || 24 x H
  +
|-
  +
| SIZEIMAGE || 13 x 11 || 18 x 10 || 18 x 10
  +
|-
  +
| CLOSEIMAGE || 15 x H || 20 x H || 20 x H
  +
|-
  +
| SDEPTHIMAGE || 17 x H || 23 x H || 23 x H
  +
|-
  +
| LEFTIMAGE || 16 x 11 || 16 x 10 || 23 x 22
  +
|-
  +
| RIGHTIMAGE || 16 x 11 || 16 x 10 || 23 x 22
  +
|-
  +
| UPIMAGE || 13 x 11 || 18 x 11 || 23 x 22
  +
|-
  +
| DOWNIMAGE || 13 x 11 || 18 x 11 || 23 x 22
  +
|-
  +
| CHECKIMAGE || 26 x 11 || 26 x 11 || 26 x 11
  +
|-
  +
| MXIMAGE || 17 x 9 || 17 x 9 || 17 x 9
  +
|}
   
  +
== fillrectclass ==
''imageclass''
 
   
  +
{| class="wikitable"
&lt;intuition/imageclass.h&gt;
 
  +
! Class
  +
| fillrectclass
  +
|-
  +
! Superclass
  +
| imageclass
  +
|-
  +
! Include File
  +
| &lt;intuition/imageclass.h&gt;
  +
|}
   
 
This is a class of filled rectangles. The ''fillrectclass'' object can use a pattern to fill in its interior.
 
This is a class of filled rectangles. The ''fillrectclass'' object can use a pattern to fill in its interior.
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
  +
=== Changed Methods ===
This method asks a ''fillrectclass'' object to render itself relative to the position (LeftEdge and TopEdge) and dimensions (Width and Height) in its embedded Image structure. See the ''imageclass'' description of IM_DRAW for more details.
 
   
  +
; IM_DRAW
This method asks a ''fillrectclass'' object to render itself relative to the position in its embedded Image structure, but using the width and height passed in the message’s Dimensions.Width and Dimensions.Height fields. See the ''imageclass'' description of IM_DRAWFRAME for more details.
 
  +
: This method asks a ''fillrectclass'' object to render itself relative to the position (LeftEdge and TopEdge) and dimensions (Width and Height) in its embedded Image structure. See the ''imageclass'' description of IM_DRAW for more details.
   
  +
; IM_DRAWFRAME
These attributes supply the ''fillrectclass'' object with an area fill pattern. The IA_APattern attribute points to the area fill pattern for the object. The IA_APatSize attribute is the depth of the area fill pattern. These attribute values are similar to the parameters passed to the SetAfPt() macro (defined in &lt;graphics/gfxmacros.h&gt;) and indirectly correspond to fields in a RastPort structure. For more information on these patterns, see the section on patterns in [[Graphics_Primitives|Graphics Primitives]].
 
  +
: This method asks a ''fillrectclass'' object to render itself relative to the position in its embedded Image structure, but using the width and height passed in the message’s Dimensions.Width and Dimensions.Height fields. See the ''imageclass'' description of IM_DRAWFRAME for more details.
   
  +
=== Attributes ===
This attribute contains the drawing mode for the pattern (JAM1, JAM2, etc.)
 
   
  +
; IA_APattern, IA_APatSize (IS)
== itexticlass ==
 
  +
: These attributes supply the ''fillrectclass'' object with an area fill pattern. The IA_APattern attribute points to the area fill pattern for the object. The IA_APatSize attribute is the depth of the area fill pattern. These attribute values are similar to the parameters passed to the SetAfPt() macro (defined in &lt;graphics/gfxmacros.h&gt;) and indirectly correspond to fields in a RastPort structure. For more information on these patterns, see the section on patterns in [[Graphics_Primitives|Graphics Primitives]].
   
  +
; IA_Mode (IS)
''itexticlass''
 
  +
: This attribute contains the drawing mode for the pattern (JAM1, JAM2, etc.)
   
  +
== itexticlass ==
''imageclass''
 
   
  +
{| class="wikitable"
&lt;intuition/imageclass.h&gt;
 
  +
! Class
  +
| itexticlass
  +
|-
  +
! Superclass
  +
| imageclass
  +
|-
  +
! Include File
  +
| &lt;intuition/imageclass.h&gt;
  +
|}
   
 
This is a class of image objects that render an IntuiText structure. Using some of the ''imageclass'' attributes, the object can override some of the parameters in the IntuiText structure. This class makes it easy to share an IntuiText structure between objects.
 
This is a class of image objects that render an IntuiText structure. Using some of the ''imageclass'' attributes, the object can override some of the parameters in the IntuiText structure. This class makes it easy to share an IntuiText structure between objects.
   
  +
=== New Methods ===
These methods ask an ''itexticlass'' object to render its IntuiText structure, which it gets from the ''imageclass'' IA_Data attribute. An ''itexticlass'' object renders its IntuiText relative to the IA_Left and IA_Top attributes it inherits from ''imageclass''. This method uses the JAM1 drawing mode and the IA_FGPen to render the text. See the ''imageclass'' description of IM_DRAW/IM_DRAWFRAME for more details.
 
   
 
None.
 
None.
   
== gadgetclass ==
+
=== Changed Methods ===
   
  +
; IM_DRAW/IM_DRAWFRAME
''gadgetclass''
 
  +
: These methods ask an ''itexticlass'' object to render its IntuiText structure, which it gets from the ''imageclass'' IA_Data attribute. An ''itexticlass'' object renders its IntuiText relative to the IA_Left and IA_Top attributes it inherits from ''imageclass''. This method uses the JAM1 drawing mode and the IA_FGPen to render the text. See the ''imageclass'' description of IM_DRAW/IM_DRAWFRAME for more details.
   
  +
=== Attributes ===
''rootclass''
 
   
  +
None.
&lt;intuition/gadgetclass.h&gt;
 
  +
  +
== gadgetclass ==
  +
  +
{| class="wikitable"
  +
! Class
  +
| gadgetclass''
  +
|-
  +
! Superclass
  +
| rootclass
  +
|-
  +
! Include File
  +
| &lt;intuition/gadgetclass.h&gt;
  +
|}
   
 
This is a base class for Intuition compatible gadget objects. The dispatcher for this class takes care of creating an Intuition Gadget structure as part of its local instance data. All of the standard BOOPSI gadget classes build on this class. Normally there are no direct instances of this class, only instances of subclasses of ''gadgetclass''.
 
This is a base class for Intuition compatible gadget objects. The dispatcher for this class takes care of creating an Intuition Gadget structure as part of its local instance data. All of the standard BOOPSI gadget classes build on this class. Normally there are no direct instances of this class, only instances of subclasses of ''gadgetclass''.
Line 678: Line 946:
 
Like all BOOPSI methods, these methods run on the context of the task that called the method. Normally, Intuition is the only entity that calls these methods, so these normally operate in the input.device’s task. Because a gadget may have to process a large number of input events, poor implementations of gadget methods (especially the GM_HANDLEINPUT method) can degrade system performance.
 
Like all BOOPSI methods, these methods run on the context of the task that called the method. Normally, Intuition is the only entity that calls these methods, so these normally operate in the input.device’s task. Because a gadget may have to process a large number of input events, poor implementations of gadget methods (especially the GM_HANDLEINPUT method) can degrade system performance.
   
  +
=== New Methods ===
This method asks a gadget if a point is within its bounds. Usually the point corresponds to a mouse click. Intuition sends a gadget this message when the user clicks inside the rectangular bounds found in the object’s Gadget structure (using its TopEdge, LeftEdge, Width, and Height fields). This method returns GMR_GADGETHIT if a point is within the gadget, otherwise it returns zero. Because the gadget decides if it was hit, the gadget can be almost any shape or pattern. BOOPSI gadgets that default to using the bounds of their Gadget structure should always return GMR_GADGETHIT.
 
   
GM_HITTEST
+
; GM_HITTEST
  +
: This method asks a gadget if a point is within its bounds. Usually the point corresponds to a mouse click. Intuition sends a gadget this message when the user clicks inside the rectangular bounds found in the object's Gadget structure (using its TopEdge, LeftEdge, Width, and Height fields). This method returns GMR_GADGETHIT if a point is within the gadget, otherwise it returns zero. Because the gadget decides if it was hit, the gadget can be almost any shape or pattern. BOOPSI gadgets that default to using the bounds of their Gadget structure should always return GMR_GADGETHIT.
   
uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
+
: GM_HITTEST uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
  +
<syntaxhighlight>
 
<pre>struct gpHitTest
+
struct gpHitTest
 
{
 
{
 
ULONG MethodID; /* GM_HITTEST */
 
ULONG MethodID; /* GM_HITTEST */
Line 693: Line 962:
 
WORD Y; /* of the gadget? */
 
WORD Y; /* of the gadget? */
 
} gpht_Mouse;
 
} gpht_Mouse;
};</pre>
+
};
  +
</syntaxhighlight>
The gpht_Mouse.X and gpht_Mouse.Y fields make up the ''X'' and ''Y'' coordinates of the hit point. These coordinates are relative to the upper-left corner of the gadget (Gadget.LeftEdge, Gadget.TopEdge).
 
   
  +
: The gpht_Mouse.X and gpht_Mouse.Y fields make up the ''X'' and ''Y'' coordinates of the hit point. These coordinates are relative to the upper-left corner of the gadget (Gadget.LeftEdge, Gadget.TopEdge).
This method tells a gadget to render itself. The return value for this method is not explicitly defined.
 
   
GM_RENDER
+
; GM_RENDER
  +
: This method tells a gadget to render itself. The return value for this method is not explicitly defined.
   
uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
+
: GM_RENDER uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
  +
<syntaxhighlight>
 
<pre>struct gpRender
+
struct gpRender
 
{
 
{
 
ULONG MethodID; /* GM_RENDER */
 
ULONG MethodID; /* GM_RENDER */
Line 708: Line 978:
 
struct RastPort *gpr_RPort; /* all ready for use */
 
struct RastPort *gpr_RPort; /* all ready for use */
 
LONG gpr_Redraw; /* might be a &quot;highlight pass&quot; */
 
LONG gpr_Redraw; /* might be a &quot;highlight pass&quot; */
};</pre>
+
};
  +
</syntaxhighlight>
The GM_RENDER message contains a pointer to the Gadget’s RastPort which it can use for rendering. The Gadget renders itself according to how much imagery it needs to replace. The gpr_Redraw field contains one of three values:
 
   
  +
: The GM_RENDER message contains a pointer to the Gadget’s RastPort which it can use for rendering. The Gadget renders itself according to how much imagery it needs to replace. The gpr_Redraw field contains one of three values:
Redraw the entire gadget.
 
   
  +
:; GREDRAW_REDRAW
The user has manipulated the gadget changing the imagery. Update only that part of the gadget’s imagery that is effected by the user manipulating the gadget (for example, the knob and scrolling field of the prop gadget).
 
  +
:: Redraw the entire gadget.
   
  +
:; GREDRAW_UPDATE
If this gadget supports it, toggle to or from the highlighting imagery.
 
  +
:: The user has manipulated the gadget changing the imagery. Update only that part of the gadget’s imagery that is effected by the user manipulating the gadget (for example, the knob and scrolling field of the prop gadget).
   
  +
:; GREDRAW_TOGGLE
This method asks a gadget if it is OK to make it the active gadget. The active gadget is the gadget that is currently receiving user input. Intuition sends this message after a gadget responds affirmatively to the GM_HITTEST method. A gadget becomes active because it needs to process input events (like a prop gadget or string gadget).
 
  +
:: If this gadget supports it, toggle to or from the highlighting imagery.
   
  +
; GM_GOACTIVE
Some types of gadget do not need to become active. These gadgets do not have to process input from the user, they only have to deal with a single mouse click to toggle their state. Because that mouse click triggered this method, the button already has all of the user input it requires. Note that the behavior of the GadTools button differs from a BOOPSI ''buttongclass'' gadget, which processes other input events besides a single mouse click. See the entry for ''buttongclass'' in this Appendix for more details.
 
  +
: This method asks a gadget if it is OK to make it the active gadget. The active gadget is the gadget that is currently receiving user input. Intuition sends this message after a gadget responds affirmatively to the GM_HITTEST method. A gadget becomes active because it needs to process input events (like a prop gadget or string gadget).
   
  +
: Some types of gadget do not need to become active. These gadgets do not have to process input from the user, they only have to deal with a single mouse click to toggle their state. Because that mouse click triggered this method, the button already has all of the user input it requires. Note that the behavior of the GadTools button differs from a BOOPSI ''buttongclass'' gadget, which processes other input events besides a single mouse click. See the entry for ''buttongclass'' for more details.
GM_GOACTIVE
 
   
uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
+
: GM_GOACTIVE uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
  +
<syntaxhighlight>
 
<pre>struct gpInput
+
struct gpInput
 
{
 
{
 
ULONG MethodID; /* GM_GOACTIVE or GM_HANDLEINPUT */
 
ULONG MethodID; /* GM_GOACTIVE or GM_HANDLEINPUT */
Line 738: Line 1,012:
 
WORD Y; /* left corner of gadget (LeftEdge, */
 
WORD Y; /* left corner of gadget (LeftEdge, */
 
} gpi_Mouse; /* TopEdge). */
 
} gpi_Mouse; /* TopEdge). */
};</pre>
+
};
  +
</syntaxhighlight>
The gpi_IEvent field points to the struct InputEvent that triggered the GM_GOACTIVE message. If gpi_IEvent is NULL, the GM_GOACTIVE message was triggered by a function like intuition.library’s ActivateGadget() and not by the user clicking the gadget.
 
   
  +
: The gpi_IEvent field points to the struct InputEvent that triggered the GM_GOACTIVE message. If gpi_IEvent is NULL, the GM_GOACTIVE message was triggered by a function like intuition.library's ActivateGadget() and not by the user clicking the gadget.
For gadgets that only want to become active as a direct result of a mouse click, this difference is important. For example, the prop gadget becomes active only when the user clicks on its knob. Because the only way the user can control the prop gadget is via the mouse, it would not make sense for it to be activated by anything besides the mouse. On the other hand, a string gadget gets input from the keyboard, so a string gadget doesn’t care what activates it. Its input comes from the keyboard rather than the mouse.
 
   
  +
: For gadgets that only want to become active as a direct result of a mouse click, this difference is important. For example, the prop gadget becomes active only when the user clicks on its knob. Because the only way the user can control the prop gadget is via the mouse, it would not make sense for it to be activated by anything besides the mouse. On the other hand, a string gadget gets input from the keyboard, so a string gadget doesn't care what activates it. Its input comes from the keyboard rather than the mouse.
A gadget’s GM_GOACTIVE method returns GMR_MEACTIVE (defined in &lt;intuition/gadgetclass.h&gt;) if it wants to be the active gadget. Otherwise it returns GMR_NOREUSE. For a description of what these values mean, See their description in the ''gadgetclass''’s GM_HANDLEINPUT method, below.
 
   
  +
: A gadget's GM_GOACTIVE method returns GMR_MEACTIVE (defined in &lt;intuition/gadgetclass.h&gt;) if it wants to be the active gadget. Otherwise it returns GMR_NOREUSE. For a description of what these values mean, See their description in the ''gadgetclass'''s GM_HANDLEINPUT method, below.
If necessary, a gadget’s GM_GOACTIVE method can precalculate and cache information before it becomes the active gadget. The gadget will use this information while it’s processing user input with the GM_HANDLEINPUT method. When it is time for the active gadget to become inactive, Intuition will send the gadget a GM_GOINACTIVE message. The gadget can clean up its precalculations and cache in the GM_GOINACTIVE method. For more information on GM_GOINACTIVE, see its description below.
 
   
  +
: If necessary, a gadget's GM_GOACTIVE method can precalculate and cache information before it becomes the active gadget. The gadget will use this information while it's processing user input with the GM_HANDLEINPUT method. When it is time for the active gadget to become inactive, Intuition will send the gadget a GM_GOINACTIVE message. The gadget can clean up its precalculations and cache in the GM_GOINACTIVE method. For more information on GM_GOINACTIVE, see its description below.
This method asks an active gadget to handle an input event. After Intuition gets an OK to make this gadget object active (see the GM_GOACTIVE method above), Intuition starts sending input events to the gadget. Intuition sends them in the form of a GM_HANDLEINPUT message. This method uses the same custom message structure as GM_GOACTIVE (see the gpInput structure above).
 
   
  +
; GM_HANDLEINPUT
The information in the gpInput structure is the same for GM_HANDLEINPUT as it is for GM_GOACTIVE. The only difference is that the GM_HANDLEINPUT message’s gpi_IEvent can never be NULL. It always points to an InputEvent structure.
 
  +
: This method asks an active gadget to handle an input event. After Intuition gets an OK to make this gadget object active (see the GM_GOACTIVE method above), Intuition starts sending input events to the gadget. Intuition sends them in the form of a GM_HANDLEINPUT message. This method uses the same custom message structure as GM_GOACTIVE (see the gpInput structure above).
   
  +
: The information in the gpInput structure is the same for GM_HANDLEINPUT as it is for GM_GOACTIVE. The only difference is that the GM_HANDLEINPUT message's gpi_IEvent can never be NULL. It always points to an InputEvent structure.
The gadget has to examine the incoming InputEvents to see how its state may have changed. For example, a string gadget processes key presses, inserting them into the gadgets string. When the string changes, the gadget has to update its visual state to reflect that change. Another example is the prop gadget. If the user picks up the prop gadget’s knob, the prop gadget has to track the mouse to process changes to the gadget’s internal values. It does this by processing IECLASS_RAWMOUSE events.
 
   
  +
: The gadget has to examine the incoming InputEvents to see how its state may have changed. For example, a string gadget processes key presses, inserting them into the gadgets string. When the string changes, the gadget has to update its visual state to reflect that change. Another example is the prop gadget. If the user picks up the prop gadget's knob, the prop gadget has to track the mouse to process changes to the gadget’s internal values. It does this by processing IECLASS_RAWMOUSE events.
If the GM_HANDLEINPUT method needs to do some rendering, it must call ObtainGIRPort() on the GM_HANDLEINPUT message’s gpi_GInfo to get a pointer to a RastPort. To relinquish this RastPort, the GM_HANDLEINPUT method must call ReleaseGIRPort(). The GM_HANDLEINPUT method has to allocate and release this RastPort, it cannot be cached in the GM_GOACTIVE method.
 
   
  +
: If the GM_HANDLEINPUT method needs to do some rendering, it must call ObtainGIRPort() on the GM_HANDLEINPUT message's gpi_GInfo to get a pointer to a RastPort. To relinquish this RastPort, the GM_HANDLEINPUT method must call ReleaseGIRPort(). The GM_HANDLEINPUT method has to allocate and release this RastPort, it cannot be cached in the GM_GOACTIVE method.
The return value from GM_HANDLEINPUT informs Intuition if the gadget wants to remain active. The return values for the GM_HANDLEINPUT are similar to GM_GOACTIVE. The gadget tells Intuition that it wants to remain active by returning GMR_MEACTIVE. A gadget tells Intuition it wants to become inactive by returning one of the “go inactive” return values:
 
   
  +
: The return value from GM_HANDLEINPUT informs Intuition if the gadget wants to remain active. The return values for the GM_HANDLEINPUT are similar to GM_GOACTIVE. The gadget tells Intuition that it wants to remain active by returning GMR_MEACTIVE. A gadget tells Intuition it wants to become inactive by returning one of the “go inactive” return values:
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent.
 
   
  +
:; GMR_NOREUSE
Tells Intuition to reprocess the gpInput.gpi_IEvent InputEvent after deactivating the gadget.
 
  +
:: Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent.
   
  +
:; GMR_REUSE
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the next GFLG_TagCycle gadget.
 
  +
: Tells Intuition to reprocess the gpInput.gpi_IEvent InputEvent after deactivating the gadget.
   
  +
:; GMR_NEXTACTIVE
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the previous GFLG_TagCycle gadget.
 
  +
: Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the next GFLG_TagCycle gadget.
   
  +
:; GMR_PREVACTIVE
GMR_NOREUSE
 
  +
: Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the previous GFLG_TagCycle gadget.
   
tells Intuition that the gadget does not want to be active and should throw away the InputEvent that triggered the GM_HANDLEINPUT message (or the GM_GOACTIVE message). For example, an active prop gadget returns GMR_NOREUSE when the user lets go of the left mouse button (thus letting go of the prop gadget’s knob).
+
: GMR_NOREUSE tells Intuition that the gadget does not want to be active and should throw away the InputEvent that triggered the GM_HANDLEINPUT message (or the GM_GOACTIVE message). For example, an active prop gadget returns GMR_NOREUSE when the user lets go of the left mouse button (thus letting go of the prop gadget's knob).
   
A gadget can also return GMR_REUSE, which tells Intuition to reuse the InputEvent. For example, if the user clicks outside of an active string gadget, that string gadget returns GMR_REUSE so Intuition can process that mouse click, which could be over another gadget. Another case where a string gadget returns GMR_REUSE is when the user pushes the right mouse button (the menu button). The string gadget becomes inactive and the menu button InputEvent gets reused by Intuition so it can pop up the menu bar.
+
: A gadget can also return GMR_REUSE, which tells Intuition to reuse the InputEvent. For example, if the user clicks outside of an active string gadget, that string gadget returns GMR_REUSE so Intuition can process that mouse click, which could be over another gadget. Another case where a string gadget returns GMR_REUSE is when the user pushes the right mouse button (the menu button). The string gadget becomes inactive and the menu button InputEvent gets reused by Intuition so it can pop up the menu bar.
   
The other two possible return values, GMR_NEXTACTIVE and GMR_PREVACTIVE were added to the OS for Release 2.04. These tell Intuition that a gadget no longer wants to be active and that the GM_HANDLEINPUT message InputEvent should be discarded. Intuition then looks for the next non-disabled (GMR_NEXTACTIVE) or previous (GMR_PREVACTIVE) gadget that has its GFLG_TABCYCLE flag set in its Gadget.Activation field (see the ''gadgetclass'' GA_TabCycle attribute below), and attempts to activate it.
+
: The other two possible return values are GMR_NEXTACTIVE and GMR_PREVACTIVE. These tell Intuition that a gadget no longer wants to be active and that the GM_HANDLEINPUT message InputEvent should be discarded. Intuition then looks for the next non-disabled (GMR_NEXTACTIVE) or previous (GMR_PREVACTIVE) gadget that has its GFLG_TABCYCLE flag set in its Gadget.Activation field (see the ''gadgetclass'' GA_TabCycle attribute below), and attempts to activate it.
   
For both GM_GOACTIVE and GM_HANDLEINPUT, the gadget can bitwise '''OR''' any of these “go inactive” return values with GMR_VERIFY. The GMR_VERIFY flag tells Intuition to send a GADGETUP IntuiMessage to the gadget’s window. If the gadget uses GMR_VERIFY, it has to supply a value for the IntuiMessage’s Code field. It does this by passing a value in the gpInput’s gpi_Termination field. This field points to a long word, the lower 16-bits of which Intuition copies into the Code field. The upper 16-bits are for future enhancements, so clear these bits.
+
: For both GM_GOACTIVE and GM_HANDLEINPUT, the gadget can bitwise '''OR''' any of these -inactive- return values with GMR_VERIFY. The GMR_VERIFY flag tells Intuition to send a GADGETUP IntuiMessage to the gadget's window. If the gadget uses GMR_VERIFY, it has to supply a value for the IntuiMessage's Code field. It does this by passing a value in the gpInput's gpi_Termination field. This field points to a long word, the lower 16-bits of which Intuition copies into the Code field. The upper 16-bits are for future enhancements, so clear these bits.
   
  +
; GM_GOINACTIVE
This method tells the active gadget to become inactive. The return value for this method is not explicitly defined.
 
  +
: This method tells the active gadget to become inactive. The return value for this method is not explicitly defined.
   
  +
: GM_GOINACTIVE uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
GM_GOINACTIVE
 
  +
<syntaxhighlight>
 
  +
struct gpGoInactive
uses a custom message structure (defined in &lt;intuition/gadgetclass.h&gt;):
 
 
<pre>struct gpGoInactive
 
 
{
 
{
 
ULONG MethodID; /* GM_GOINACTIVE */
 
ULONG MethodID; /* GM_GOINACTIVE */
 
struct GadgetInfo *gpgi_GInfo;
 
struct GadgetInfo *gpgi_GInfo;
   
/* V37 field only! DO NOT attempt to read under V36! */
 
 
ULONG gpgi_Abort; /* gpgi_Abort=1 if gadget was aborted */
 
ULONG gpgi_Abort; /* gpgi_Abort=1 if gadget was aborted */
 
/* by Intuition and 0 if gadget went */
 
/* by Intuition and 0 if gadget went */
 
/* inactive at its own request. */
 
/* inactive at its own request. */
};</pre>
+
};
  +
</syntaxhighlight>
The gpgi_Abort field contains either a 0 or 1. If it is 0, the gadget became inactive at its own request (because the GM_HANDLEINPUT method returned something besides GMR_MEACTIVE). If gpgi_Abort is 1, Intuition aborted this active gadget. Some cases where Intuition aborts a gadget include: the user clicked in another window or screen, an application removed the active gadget with RemoveGList(), and an application called ActivateWindow() on a window other than the gadget’s window.
 
   
  +
: The gpgi_Abort field contains either a 0 or 1. If it is 0, the gadget became inactive at its own request (because the GM_HANDLEINPUT method returned something besides GMR_MEACTIVE). If gpgi_Abort is 1, Intuition aborted this active gadget. Some cases where Intuition aborts a gadget include: the user clicked in another window or screen, an application removed the active gadget with RemoveGList(), and an application called ActivateWindow() on a window other than the gadget's window.
If the gadget allocated any resources to cache or precalculate information in the GM_GOACTIVE method, it should deallocate those resources in this method.
 
   
  +
: If the gadget allocated any resources to cache or precalculate information in the GM_GOACTIVE method, it should deallocate those resources in this method.
This method allocates space for an embedded struct Gadget (defined in &lt;intuition/intuition.h&gt;) and initializes some of the attributes defined by ''gadgetclass''.
 
   
  +
=== Changed Methods ===
This method tells a gadget to send an OM_UPDATE message to its target object. BOOPSI gadgets have a function similar to ''icclass'' objects–each gadget can have an ICA_TARGET and ICA_MAP in order to notify some target object of attribute changes. When a BOOPSI gadget sends an OM_NOTIFY message, it always includes its GA_ID. This makes it easy for an application to tell which gadget initially sent the OM_NOTIFY. See the description of ''icclass'' and the ''rootclass''’s OM_NOTIFY and OM_UPDATE methods for more details.
 
   
  +
; OM_NEW
This attribute is used to insert a new gadget into a list of gadgets linked by their Gadget.NextGadget field. When the OM_NEW method creates the new gadget, it inserts the new gadget into the list following the GA_Previous gadget. This attribute is a pointer to the gadget (struct Gadget *) that the new gadget will follow. This attribute cannot be used to link new gadgets into the gadget list of an open window or requester, use AddGList() instead.
 
  +
: This method allocates space for an embedded struct Gadget (defined in &lt;intuition/intuition.h&gt;) and initializes some of the attributes defined by ''gadgetclass''.
   
  +
; OM_NOTIFY
This attribute stores the address of the gadget’s target object. Whenever the gadget receives an OM_NOTIFY message, it sends an OM_UPDATE message to its target. If the gadget has an attribute mapping list (see the ICA_MAP attribute below), it also maps the IDs from the OM_NOTIFY message.
 
  +
: This method tells a gadget to send an OM_UPDATE message to its target object. BOOPSI gadgets have a function similar to ''icclass'' objects--each gadget can have an ICA_TARGET and ICA_MAP in order to notify some target object of attribute changes. When a BOOPSI gadget sends an OM_NOTIFY message, it always includes its GA_ID. This makes it easy for an application to tell which gadget initially sent the OM_NOTIFY. See the description of ''icclass'' and the ''rootclass'''s OM_NOTIFY and OM_UPDATE methods for more details.
   
  +
=== Attributes ===
If the value of ICA_TARGET is ICTARGET_IDCMP, the gadget sends an IDCMP_IDCMPUPDATE IntuiMessage to its window. See the ''rootclass'' description of OM_UPDATE for more information.
 
   
  +
; GA_Previous (I)
This attribute points to a tag list of attribute mappings which the gadget uses to change the attribute IDs of an OM_UPDATE’s attribute/value pairs. For example, if a gadget had the following ICA_MAP:
 
  +
: This attribute is used to insert a new gadget into a list of gadgets linked by their Gadget.NextGadget field. When the OM_NEW method creates the new gadget, it inserts the new gadget into the list following the GA_Previous gadget. This attribute is a pointer to the gadget (struct Gadget *) that the new gadget will follow. This attribute cannot be used to link new gadgets into the gadget list of an open window or requester, use AddGList() instead.
   
  +
; ICA_TARGET (IS)
<pre>struct TagItem map[] =
 
  +
: This attribute stores the address of the gadget's target object. Whenever the gadget receives an OM_NOTIFY message, it sends an OM_UPDATE message to its target. If the gadget has an attribute mapping list (see the ICA_MAP attribute below), it also maps the IDs from the OM_NOTIFY message.
  +
  +
: If the value of ICA_TARGET is ICTARGET_IDCMP, the gadget sends an IDCMP_IDCMPUPDATE IntuiMessage to its window. See the ''rootclass'' description of OM_UPDATE for more information.
  +
  +
; ICA_MAP (IS)
  +
: This attribute points to a tag list of attribute mappings which the gadget uses to change the attribute IDs of an OM_UPDATE’s attribute/value pairs. For example, if a gadget had the following ICA_MAP:
  +
<syntaxhighlight>
  +
struct TagItem map[] =
 
{
 
{
 
{PGA_Top, STRINGA_LongVal},
 
{PGA_Top, STRINGA_LongVal},
 
{MYATTR, MYNEWATTR},
 
{MYATTR, MYNEWATTR},
 
{TAG_END, }
 
{TAG_END, }
};</pre>
+
};
  +
</syntaxhighlight>
before it sends an OM_UPDATE to its ICA_TARGET, the gadget scans through the OM_UPDATE message’s attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the gadget finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The gadget does not disturb the attribute’s value, only its ID.
 
   
  +
: before it sends an OM_UPDATE to its ICA_TARGET, the gadget scans through the OM_UPDATE message's attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the gadget finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The gadget does not disturb the attribute's value, only its ID.
These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting these clears the "gadget relative" flags (below).
 
   
  +
; GA_Left, GA_Top, GA_Width, GA_Height (IS)
These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting any of these attributes also sets the corresponding “relative” flag in the Gadget structure’s Flags field (respectively, GFLG_RELRIGHT, GFLG_RELBOTTOM, GFLG_RELWIDTH and GFLG_RELHEIGHT). Note that the value passed in this attribute is normally a negative LONG. See [[Intuition_Gadgets|Intuition Gadgets]] for more information on these flags.
 
  +
: These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting these clears the "gadget relative" flags (below).
   
  +
; GA_RelRight, GA_RelBottom, GA_RelWidth, GA_RelHeight (IS)
The remaining attributes defined by ''gadgetclass'' are used to set the fields in the Gadget structure of the BOOPSI gadget. Some BOOPSI gadgets do not pay attention to many of the fields in its Gadget structure, so most applications will not have to worry about the majority of these attributes. Some gadget classes assign special meanings to these attributes. See the documentation of the specific gadget classes for more details.
 
  +
: These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting any of these attributes also sets the corresponding "relative" flag in the Gadget structure's Flags field (respectively, GFLG_RELRIGHT, GFLG_RELBOTTOM, GFLG_RELWIDTH and GFLG_RELHEIGHT). Note that the value passed in this attribute is normally a negative LONG. See [[Intuition_Gadgets|Intuition Gadgets]] for more information on these flags.
   
  +
: The remaining attributes defined by ''gadgetclass'' are used to set the fields in the Gadget structure of the BOOPSI gadget. Some BOOPSI gadgets do not pay attention to many of the fields in its Gadget structure, so most applications will not have to worry about the majority of these attributes. Some gadget classes assign special meanings to these attributes. See the documentation of the specific gadget classes for more details.
These attributes correspond to one field in the object’s embedded Gadget structure–the GadgetText field. Setting any of these attributes copies the attribute's value blindly into the GadgetText field. In addition, setting GA_Text also sets the GFLG_LABELSTRING flag in Gadget.Flags and setting GA_LabelImage sets the GFLG_LABELIMAGE flag in Gadget.Flags. The GA_IntuiText attribute must be an IntuiText pointer, as with old-style gadgets. GA_Text takes a pointer to a NULL- terminated string (STRPTR). GA_LabelImage takes a pointer to a (BOOPSI) image. Note that most gadget classes do not support GA_Text and GA_LabelImage. See the description of specific gadget classes for more details.
 
   
  +
; GA_IntuiText, GA_Text, GA_LabelImage (IS)
This attibute is a pointer to either a BOOPSI image or a Release 1.3-compatible Intuition image. This attribute corresponds to the Gadget’s GadgetRender field. The ''gadgetclass'' dispatcher will not dispose of this image when it disposes of the gadget object.
 
  +
: These attributes correspond to one field in the object's embedded Gadget structure--the GadgetText field. Setting any of these attributes copies the attribute's value blindly into the GadgetText field. In addition, setting GA_Text also sets the GFLG_LABELSTRING flag in Gadget.Flags and setting GA_LabelImage sets the GFLG_LABELIMAGE flag in Gadget.Flags. The GA_IntuiText attribute must be an IntuiText pointer, as with old-style gadgets. GA_Text takes a pointer to a NULL- terminated string (STRPTR). GA_LabelImage takes a pointer to a (BOOPSI) image. Note that most gadget classes do not support GA_Text and GA_LabelImage. See the description of specific gadget classes for more details.
   
  +
; GA_Image (IS)
These attributes correspond to the similarly named fields in the Gadget structure embedded in the gadget object.
 
  +
: This attibute is a pointer to either a BOOPSI image or a Release 1.3-compatible Intuition image. This attribute corresponds to the Gadget's GadgetRender field. The ''gadgetclass'' dispatcher will not dispose of this image when it disposes of the gadget object.
   
  +
; GA_Border, GA_SelectRender, GA_ID, GA_UserData, GA_SpecialInfo (IS)
These are boolean attributes that correspond to the flags in the object’s Gadget.GadgetType field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.GadgetType is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.GadgetType is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
 
  +
: These attributes correspond to the similarly named fields in the Gadget structure embedded in the gadget object.
   
  +
; GA_GZZGadget, GA_SysGadget (IS)
These are boolean attributes that correspond to the similarly named flags in the object's Gadget.Flags field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Flags is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Flags is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
 
  +
: These are boolean attributes that correspond to the flags in the object's Gadget.GadgetType field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.GadgetType is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.GadgetType is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
   
  +
; GA_Disabled, GA_Selected (IS)
These are boolean attributes that correspond to the flags in the object's Gadget.Activation field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Activation is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Activation is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
 
  +
: These are boolean attributes that correspond to the similarly named flags in the object's Gadget.Flags field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Flags is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Flags is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
   
  +
; GA_EndGadget, GA_Immediate, GA_RelVerify, GA_FollowMouse, GA_RightBorder, GA_LeftBorder, GA_TopBorder, GA_BottomBorder, A_ToggleSelect, GA_TabCycle (IS)
This attribute corresponds to the GFLG_GADGHIGHBITS portion of the gadget’s Gadget.Flags field. This attribute can be one of four values (from &lt;intuition/intuition.h&gt;):
 
  +
: These are boolean attributes that correspond to the flags in the object's Gadget.Activation field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Activation is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Activation is cleared. See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
   
  +
; GA_Highlight (IS)
GFLG_GADGHCOMP
 
  +
: This attribute corresponds to the GFLG_GADGHIGHBITS portion of the gadget's Gadget.Flags field. This attribute can be one of four values (from &lt;intuition/intuition.h&gt;):
   
, GFLG_GADGHBOX, GFLG_GADGHIMAGE, GFLG_GADGHNONE
+
: GFLG_GADGHCOMP, GFLG_GADGHBOX, GFLG_GADGHIMAGE, GFLG_GADGHNONE
   
See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
+
: See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
   
  +
; GA_SysGType (IS)
This attribute corresponds to the system gadget type portion of the gadget’s Gadget.GadgetType fields. This attribute is any one of the following flags (from &lt;intuition/intuition.h&gt;):
 
  +
: This attribute corresponds to the system gadget type portion of the gadget’s Gadget.GadgetType fields. This attribute is any one of the following flags (from &lt;intuition/intuition.h&gt;):
   
  +
: GTYP_SIZING, GTYP_WDRAGGING, GTYP_SDRAGGING, GTYP_WUPFRONT, GTYP_SUPFRONT, GTYP_WDOWNBACK, GTYP_SDOWNBACK, GTYP_CLOSE
GTYP_SIZING
 
   
  +
: See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
, GTYP_WDRAGGING, GTYP_SDRAGGING, GTYP_WUPFRONT, GTYP_SUPFRONT, GTYP_WDOWNBACK, GTYP_SDOWNBACK, GTYP_CLOSE
 
 
See the &lt;intuition/intuition.h&gt; include file or [[Intuition_Gadgets|Intuition Gadgets]] for more information.
 
   
 
== propgclass ==
 
== propgclass ==
   
  +
{| class="wikitable"
''propgclass''
 
  +
! Class
  +
| propgclass
  +
|-
  +
! Superclass
  +
| gadgetclass
  +
|-
  +
! Include File
  +
| <intuition/gadgetclass.h>
  +
|}
   
  +
A BOOPSI proportional ("prop") gadget. The BOOPSI prop gadget is similar to the conventional prop gadget, but extends its function to make it easier to use. The BOOPSI prop gadget keeps its current integer value in its PGA_Top attribute.
''gadgetclass''
 
   
  +
=== New Methods ===
&lt;intuition/gadgetclass.h&gt;
 
 
A BOOPSI proportional (“prop”) gadget. The BOOPSI prop gadget is similar to the conventional prop gadget, but extends its function to make it easier to use. The BOOPSI prop gadget keeps its current integer value in its PGA_Top attribute.
 
   
 
None.
 
None.
   
  +
=== Changed Methods ===
If the knob position changes sufficiently to change a ''propgclass'' object's PGA_Top attribute, the gadget will send an OM_NOTIFY message to itself, which the ''propgclass'' dispatcher passes on to the ''gadgetclass'' dispatcher for processing (see the ''rootclass'' description of OM_NOTIFY and OM_UPDATE for more information).
 
   
  +
; GM_HANDLEINPUT
The OM_NOTIFY message will contain two attribute/value pairs, PGA_Top and GA_ID. While the prop gadget's PGA_Top is in a transitory state (while it is active and the user is moving the prop gadget's knob), the gadget sends interim OM_NOTIFY messages. The interim OM_NOTIFY messages have the OPUF_INTERIM flag of the opUpdate.opu_Flags field set. When the user finishes manipulating the gadget (by letting go of the knob), the gadget sends a final OM_NOTIFY message, which has a cleared OPUF_INTERIM flag.
 
  +
: If the knob position changes sufficiently to change a ''propgclass'' object's PGA_Top attribute, the gadget will send an OM_NOTIFY message to itself, which the ''propgclass'' dispatcher passes on to the ''gadgetclass'' dispatcher for processing (see the ''rootclass'' description of OM_NOTIFY and OM_UPDATE for more information).
   
  +
: The OM_NOTIFY message will contain two attribute/value pairs, PGA_Top and GA_ID. While the prop gadget's PGA_Top is in a transitory state (while it is active and the user is moving the prop gadget's knob), the gadget sends interim OM_NOTIFY messages. The interim OM_NOTIFY messages have the OPUF_INTERIM flag of the opUpdate.opu_Flags field set. When the user finishes manipulating the gadget (by letting go of the knob), the gadget sends a final OM_NOTIFY message, which has a cleared OPUF_INTERIM flag.
Propgclass intercepts this ''gadgetclass'' attribute before passing it on to ''gadgetclass''. This attribute passes an image for the prop gadget's knob, which gets stored in the ''propgclass'' object's Gadget.Image structure. If the ''propgclass'' does not get a GA_Image when it creates a prop gadget, the prop gadget's knob defaults to an AUTOKNOB. An AUTOKNOB automatically sizes itself according to how large the range of the gadget is compared to the visible range of the gadget. See the PGA_Visible and PGA_Total attributes for more details.
 
   
  +
=== Attributes ===
Propgclass intercepts this ''gadgetclass'' attribute to prevent ''gadgetclass'' from setting up a border. If an application tries to set this attribute for a ''propgclass'' gadget, the prop gadget turns itself into an AUTOKNOB gadget.
 
   
  +
; GA_Image (I)
Propgclass intercepts this ''gadgetclass'' attribute before passing it on to ''gadgetclass''. It does this to make sure the highlighting is not set to GADGHBOX. GADGHBOX will be converted to GADGHCOMP. See [[Intuition_Gadgets|Intuition Gadgets]] for more information on the types of gadget highlighting.
 
  +
: Propgclass intercepts this ''gadgetclass'' attribute before passing it on to ''gadgetclass''. This attribute passes an image for the prop gadget's knob, which gets stored in the ''propgclass'' object's Gadget.Image structure. If the ''propgclass'' does not get a GA_Image when it creates a prop gadget, the prop gadget's knob defaults to an AUTOKNOB. An AUTOKNOB automatically sizes itself according to how large the range of the gadget is compared to the visible range of the gadget. See the PGA_Visible and PGA_Total attributes for more details.
   
  +
; GA_Border (I)
Other ''gadgetclass'' attributes are passed along to the superclass.
 
  +
: Propgclass intercepts this ''gadgetclass'' attribute to prevent ''gadgetclass'' from setting up a border. If an application tries to set this attribute for a ''propgclass'' gadget, the prop gadget turns itself into an AUTOKNOB gadget.
   
  +
; GA_Highlight (I)
This attribute tells a ''propgclass'' object on which axis the gadget's knob is free to move, the horizontal or the vertical. It is either FREEHORIZ or FREEVERT. The default is FREEVERT.
 
  +
: Propgclass intercepts this ''gadgetclass'' attribute before passing it on to ''gadgetclass''. It does this to make sure the highlighting is not set to GADGHBOX. GADGHBOX will be converted to GADGHCOMP. See [[Intuition_Gadgets|Intuition Gadgets]] for more information on the types of gadget highlighting.
   
  +
: Other ''gadgetclass'' attributes are passed along to the superclass.
This is a boolean attribute which corresponds to the PROPNEWLOOK flag PropInfo structure's Flags field (defined in &lt;intuition/intuition.h&gt;). If this attribute is TRUE, the new ''propgclass'' object will use Release 2 imagery rather than the Release 1.3 imagery.
 
   
  +
; PGA_Freedom (IG)
This is a boolean attribute which corresponds to the BORDERLESS flag of the PropInfo structure's Flags field (defined in &lt;intuition/intuition.h&gt;). If this attribute is TRUE, the new ''propgclass'' object will not have a border around it. In an AUTOKNOB ''propgclass'' gadget, if the PROPNEWLOOK flag is set as well (see the PGA_NewLook attribute), the knob will have a 3D appearance.
 
  +
: This attribute tells a ''propgclass'' object on which axis the gadget's knob is free to move, the horizontal or the vertical. It is either FREEHORIZ or FREEVERT. The default is FREEVERT.
   
  +
; PGA_NewLook (I)
These attributes replace the Pot and Body variables of the Release 1.3 prop gadget. They are based on the use of proportional gadgets to control scrolling text. When scrolling 100 lines of text in a 25 line visible window, you would set PGA_Total to 100, PGA_Visible to 25, and watch PGA_Top run from 0 to 75 (the top line of the last page).
 
  +
: This is a boolean attribute which corresponds to the PROPNEWLOOK flag PropInfo structure's Flags field (defined in &lt;intuition/intuition.h&gt;). If this attribute is TRUE, the new ''propgclass'' object will use modern imagery rather than the Release 1.3 imagery.
   
  +
; PGA_Borderless (I)
If the user clicks in the prop gadget but not on the knob, the entire knob jumps one “page” (the size of the visible area minus one, PGA_Visible-1). The page jump will leave an overlap of one line, unless the value PGA_Visible is 1, in which case the prop gadget acts as an integer numeric slider, sliding from 0 to PGA_Total - 1.
 
  +
: This is a boolean attribute which corresponds to the BORDERLESS flag of the PropInfo structure's Flags field (defined in &lt;intuition/intuition.h&gt;). If this attribute is TRUE, the new ''propgclass'' object will not have a border around it. In an AUTOKNOB ''propgclass'' gadget, if the PROPNEWLOOK flag is set as well (see the PGA_NewLook attribute), the knob will have a 3D appearance.
   
  +
; PGA_Top (ISGNU)
Note that when PGA_Top changes, the gadget sends itself an OM_NOTIFY message about this attribute change (see the ''propgclass'' description of GM_HANDLEINPUT for more information). All three of these attributes have OM_UPDATE access, so they can be controlled from other objects.
 
  +
; PGA_Visible, PGA_Total (ISU)
  +
: These attributes replace the Pot and Body variables of the Release 1.3 prop gadget. They are based on the use of proportional gadgets to control scrolling text. When scrolling 100 lines of text in a 25 line visible window, you would set PGA_Total to 100, PGA_Visible to 25, and watch PGA_Top run from 0 to 75 (the top line of the last page).
   
  +
: If the user clicks in the prop gadget but not on the knob, the entire knob jumps one “page” (the size of the visible area minus one, PGA_Visible-1). The page jump will leave an overlap of one line, unless the value PGA_Visible is 1, in which case the prop gadget acts as an integer numeric slider, sliding from 0 to PGA_Total - 1.
== strgclass ==
 
   
  +
: Note that when PGA_Top changes, the gadget sends itself an OM_NOTIFY message about this attribute change (see the ''propgclass'' description of GM_HANDLEINPUT for more information). All three of these attributes have OM_UPDATE access, so they can be controlled from other objects.
''strgclass''
 
   
  +
== strgclass ==
''gadgetclass''
 
   
  +
{| class="wikitable"
&lt;intuition/gadgetclass.h&gt;
 
  +
! Class
  +
| strgclass
  +
|-
  +
! Superclass
  +
| gadgetclass
  +
|-
  +
! Include File
  +
| <intuition/gadgetclass.h>
  +
|}
   
 
Intuition compatible string gadgets. The BOOPSI string gadget can either be a plain string gadget or an integer string gadget. An integer gadget filters out all characters except those that make up integer values.
 
Intuition compatible string gadgets. The BOOPSI string gadget can either be a plain string gadget or an integer string gadget. An integer gadget filters out all characters except those that make up integer values.
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
  +
=== Changed Methods ===
This method sets up the string gadget's StringInfo and StringExtend structures. It allocates a buffer if needed and will use shared data buffers for UndoBuffer and WorkBuffer if the MaxChars is less than SG_DEFAULTMAXCHARS (128). Default text pens are: Foreground = 1, Background = 0. See the ''rootclass'' description of the OM_NEW method for more details.
 
  +
  +
; OM_NEW
  +
: This method sets up the string gadget's StringInfo and StringExtend structures. It allocates a buffer if needed and will use shared data buffers for UndoBuffer and WorkBuffer if the MaxChars is less than SG_DEFAULTMAXCHARS (128). Default text pens are: Foreground = 1, Background = 0. See the ''rootclass'' description of the OM_NEW method for more details.
  +
  +
=== Attributes ===
   
  +
; STRINGA_LongVal (ISGNU)
This attribute tells ''strgclass'' that this gadget is an integer string gadget and the new value of the integer is this attribute's value.
 
  +
: This attribute tells ''strgclass'' that this gadget is an integer string gadget and the new value of the integer is this attribute's value.
   
  +
; STRINGA_TextVal (ISGNU)
This attribute tells ''strgclass'' that this gadget is a plain string gadget. The attribute points to a string which the object copies into the string gadget's current string value buffer.
 
  +
: This attribute tells ''strgclass'' that this gadget is a plain string gadget. The attribute points to a string which the object copies into the string gadget's current string value buffer.
   
When a ''strgclass'' gadget's internal STRINGA_LongVal or STRINGA_TextVal value changes (usually because the user manipulated the gadget), it sends itself an OM_NOTIFY message. The OM_NOTIFY message will contain two attribute/value pairs, GA_ID and either STRINGA_LongVal or STRINGA_TextVal (depending on what kind of ''strgclass'' gadget it is). Strgclass gadgets only send a final OM_NOTIFY message (one's with the OPUF_INTERIM flag of the opUpdate.opu_Flags field cleared).
+
: When a ''strgclass'' gadget's internal STRINGA_LongVal or STRINGA_TextVal value changes (usually because the user manipulated the gadget), it sends itself an OM_NOTIFY message. The OM_NOTIFY message will contain two attribute/value pairs, GA_ID and either STRINGA_LongVal or STRINGA_TextVal (depending on what kind of ''strgclass'' gadget it is). Strgclass gadgets only send a final OM_NOTIFY message (one's with the OPUF_INTERIM flag of the opUpdate.opu_Flags field cleared).
   
 
The remaining ''strgclass'' attributes correspond to the flags and fields that the conventional Intuition string gadget uses. See the "String Gadget Type" section of [[Intuition_Gadgets|Intuition Gadgets]] for more information.
 
The remaining ''strgclass'' attributes correspond to the flags and fields that the conventional Intuition string gadget uses. See the "String Gadget Type" section of [[Intuition_Gadgets|Intuition Gadgets]] for more information.
   
  +
; STRINGA_MaxChars, STRINGA_Buffer, STRINGA_UndoBuffer, STRINGA_WorkBuffer (I)
Specify various buffers defined for string gadgets and extended string gadgets. If your value of STRINGA_MaxChars is less than SG_DEFAULTMAXCHARS (128 for now), then this class can provide all these buffers for you. Note that UndoBuffer and WorkBuffer can be shared by many separate gadgets, providing they are as large as the largest MaxChars they will encounter.
 
  +
: Specify various buffers defined for string gadgets and extended string gadgets. If your value of STRINGA_MaxChars is less than SG_DEFAULTMAXCHARS (128 for now), then this class can provide all these buffers for you. Note that UndoBuffer and WorkBuffer can be shared by many separate gadgets, providing they are as large as the largest MaxChars they will encounter.
   
  +
; STRINGA_BufferPos, STRINGA_DispPos (ISU)
The attributes tell the object its cursor and scroll position.
 
  +
: The attributes tell the object its cursor and scroll position.
   
  +
; STRINGA_AltKeyMap (IS)
This attribute corresponds to the StringInfo.AltKeyMap field.
 
  +
: This attribute corresponds to the StringInfo.AltKeyMap field.
   
  +
; STRINGA_Font (IS)
This attributes points to an open TextFont structure that the string gadget uses for rendering its text.
 
  +
: This attributes points to an open TextFont structure that the string gadget uses for rendering its text.
   
  +
; STRINGA_Pens (IS)
Pen numbers, packed as two WORDs into a long word, for rendering gadget text.
 
  +
: Pen numbers, packed as two WORDs into a long word, for rendering gadget text.
   
  +
; STRINGA_ActivePens (IS)
Optional pen numbers, packed as two WORDs into a long word, for rendering gadget text when the gadget is active.
 
  +
: Optional pen numbers, packed as two WORDs into a long word, for rendering gadget text when the gadget is active.
   
  +
; STRINGA_EditHook (I)
Custom string gadget edit hook.
 
  +
: Custom string gadget edit hook.
   
  +
; STRINGA_EditModes (IS)
Value taken from flags defined in &lt;intuition/sghooks.h&gt; for initial editing modes.
 
  +
: Value taken from flags defined in &lt;intuition/sghooks.h&gt; for initial editing modes.
   
  +
; STRINGA_ReplaceMode, STRINGA_FixedFieldMode, STRINGA_NoFilterMode (IS)
These three are independent Boolean equivalents to the individual flags that you can set for STRINGA_EditModes.
 
  +
: These three are independent Boolean equivalents to the individual flags that you can set for STRINGA_EditModes.
   
  +
; STRINGA_Justification (IS)
Takes the values STRINGCENTER, STRINGRIGHT, and STRINGLEFT (which is 0).
 
  +
: Takes the values STRINGCENTER, STRINGRIGHT, and STRINGLEFT (which is 0).
   
  +
; STRINGA_ExitHelp (IS)
Set this if you want the gadget to exit when the "Help" key is pressed. Look for a code of 0x5F, the rawkey code for help.
 
  +
: Set this if you want the gadget to exit when the "Help" key is pressed. Look for a code of 0x5F, the rawkey code for help.
   
 
== buttongclass ==
 
== buttongclass ==
   
  +
{| class="wikitable"
Class: buttongclass
 
  +
! Class
 
  +
| buttongclass
Superclass: gadgetclass
 
  +
|-
 
  +
! Superclass
Include File: <intuition/gadgetclass.h>
 
  +
| gadgetclass
  +
|-
  +
! Include File
  +
| <intuition/gadgetclass.h>
  +
|}
   
 
A class of button gadget that continually sends interim OM_UPDATE messages to its target while the user holds down the button. The button sends a final OM_UPDATE message when the user lets go of the button. The imagery for these objects is not built directly into the gadget. Instead, a ''buttongclass'' object uses a BOOPSI image object, which it gets from its GA_Image attribute.
 
A class of button gadget that continually sends interim OM_UPDATE messages to its target while the user holds down the button. The button sends a final OM_UPDATE message when the user lets go of the button. The imagery for these objects is not built directly into the gadget. Instead, a ''buttongclass'' object uses a BOOPSI image object, which it gets from its GA_Image attribute.
Line 945: Line 1,291:
 
=== Changed Methods ===
 
=== Changed Methods ===
   
  +
; GM_HITTEST
This method gets passed over to the button's image for processing. The button's IM_HITTEST checks for the hit.
 
  +
: This method gets passed over to the button's image for processing. The button's IM_HITTEST checks for the hit.
   
  +
; GM_HANDLEINPUT
This method continuously issues OM_NOTIFY messages for each IECLASS_TIMER event it gets. The OM_NOTIFY message's OPUF_INTERIM flag (from opUpdate.opu_Flags) is set for all but the final OM_NOTIFY.
 
  +
: This method continuously issues OM_NOTIFY messages for each IECLASS_TIMER event it gets. The OM_NOTIFY message's OPUF_INTERIM flag (from opUpdate.opu_Flags) is set for all but the final OM_NOTIFY.
   
The OM_NOTIFY message contains one attribute/value pair, GA_ID. If the pointer is currently over the gadget image, the value of this attribute/value pair is the gadget's actual GA_ID (from the Gadget.GadgetID field). If the pointer isn't over the image, the value is the negative of the gadget's actual GA_ID.
+
: The OM_NOTIFY message contains one attribute/value pair, GA_ID. If the pointer is currently over the gadget image, the value of this attribute/value pair is the gadget's actual GA_ID (from the Gadget.GadgetID field). If the pointer isn't over the image, the value is the negative of the gadget's actual GA_ID.
   
  +
; GM_RENDER
All rendering is passed along to the GadgetRender.Image (the GA_Image attribute). This method can tell its image to render in any of four image states: IDS_INACTIVESELECTED, IDS_INACTIVENORMAL, IDS_SELECTED, or IDS_NORMAL.
 
  +
: All rendering is passed along to the GadgetRender.Image (the GA_Image attribute). This method can tell its image to render in any of four image states: IDS_INACTIVESELECTED, IDS_INACTIVENORMAL, IDS_SELECTED, or IDS_NORMAL.
   
  +
=== Attributes ===
This attribute points to the gadget's BOOPSI image. Changing this attribute will cause the gadget to refresh its imagery.
 
  +
  +
; GA_IMAGE (IS)
  +
: This attribute points to the gadget's BOOPSI image. Changing this attribute will cause the gadget to refresh its imagery.
   
 
== frbuttonclass ==
 
== frbuttonclass ==
   
  +
{| class="wikitable"
''frbuttonclass''
 
  +
! Class
 
  +
| frbuttonclass''
''buttongclass''
 
  +
|-
 
  +
! Superclass
&lt;intuition/gadgetclass.h&gt;
 
  +
| buttongclass
  +
|-
  +
! Include File
  +
| <intuition/gadgetclass.h>
  +
|}
   
 
This is a special class of button gadget that puts a BOOPSI framing image around some other display element. This display element can be one of three things: plain text from the GA_Text attribute, an IntuiText from the GA_IntuiText attribute, or an Image from the GA_LabelImage attribute.
 
This is a special class of button gadget that puts a BOOPSI framing image around some other display element. This display element can be one of three things: plain text from the GA_Text attribute, an IntuiText from the GA_IntuiText attribute, or an Image from the GA_LabelImage attribute.
   
 
The user activates the gadget by clicking within the bounds of the gadget’s framing image, which it gets from the GA_Image attribute. Usually the framing image is an instance of an image class that supports the IM_FRAMEBOX method (like ''frameiclass''). If the framing image supports the IM_FRAMEBOX method, the ''frbuttonclass'' object centers the frame image around the display element. See the ''imageclass'' description of IM_FRAMEBOX for more information.
 
The user activates the gadget by clicking within the bounds of the gadget’s framing image, which it gets from the GA_Image attribute. Usually the framing image is an instance of an image class that supports the IM_FRAMEBOX method (like ''frameiclass''). If the framing image supports the IM_FRAMEBOX method, the ''frbuttonclass'' object centers the frame image around the display element. See the ''imageclass'' description of IM_FRAMEBOX for more information.
  +
  +
=== New Methods ===
   
 
None.
 
None.
   
  +
=== Changed Methods ===
When this class creates an object, it sets the object’s embedded Gadget.Width and Gadget.Height fields according to the frame image in GA_Image. If the GA_Image understands the IM_FRAMEBOX method, the gadget asks the GA_Image what it dimensions would be if it had to surround the display element. If the GA_Image does not support IM_FRAMEBOX, it just copies the GA_Image image’s width and height into the Gadget structure.
 
   
  +
; OM_NEW
The gadget delegates this method to the framing image’s IM_HITFRAME method.
 
  +
: When this class creates an object, it sets the object's embedded Gadget.Width and Gadget.Height fields according to the frame image in GA_Image. If the GA_Image understands the IM_FRAMEBOX method, the gadget asks the GA_Image what it dimensions would be if it had to surround the display element. If the GA_Image does not support IM_FRAMEBOX, it just copies the GA_Image image's width and height into the Gadget structure.
   
  +
; GM_HITTEST
For this method, the ''frbuttonclass'' object first draws the framing image by sending the image an IM_DRAWFRAME message. The object then draws its display element.
 
  +
: The gadget delegates this method to the framing image's IM_HITFRAME method.
   
  +
; GM_RENDER
These attribute correspond to the gadget’s Width and Height fields. If the framing image supports IM_FRAMEBOX, changing these resizes the framing image. The framing image re-centers itself around the display element as best it can, and the ''frbuttonclass'' gadget re-renders the whole itself.
 
  +
: For this method, the ''frbuttonclass'' object first draws the framing image by sending the image an IM_DRAWFRAME message. The object then draws its display element.
   
  +
=== Attributes ===
This attribute passes a pointer to a valid DrawInfo structure. If the ''frbuttonclass'' gadget is going to frame plain text (passed to it in the GA_Text attribute), the ''frbuttonclass'' gadget requires a DrawInfo structure to properly calculate the dimensions of the text.
 
   
  +
; GA_Width, GA_Height (S)
These attributes tell the ''frbuttonclass'' object what kind of imagery to use as its display element. See their description in the ''gadgetclass'' entry for more information.
 
  +
: These attribute correspond to the gadget's Width and Height fields. If the framing image supports IM_FRAMEBOX, changing these resizes the framing image. The framing image re-centers itself around the display element as best it can, and the ''frbuttonclass'' gadget re-renders the whole itself.
   
  +
; GA_DrawInfo (I)
== groupgclass ==
 
  +
: This attribute passes a pointer to a valid DrawInfo structure. If the ''frbuttonclass'' gadget is going to frame plain text (passed to it in the GA_Text attribute), the ''frbuttonclass'' gadget requires a DrawInfo structure to properly calculate the dimensions of the text.
   
  +
; GA_Text, GA_IntuiText, GA_LabelImage (IS)
Class: groupgclass
 
  +
: These attributes tell the ''frbuttonclass'' object what kind of imagery to use as its display element. See their description in the ''gadgetclass'' entry for more information.
   
  +
== groupgclass ==
Superclass: gadgetclass
 
   
  +
{| class="wikitable"
Include File: <intuition/gadgetclass.h>
 
  +
! Class
  +
| groupgclass
  +
|-
  +
! Superclass
  +
| gadgetclass
  +
|-
  +
! Include File
  +
| <intuition/gadgetclass.h>
  +
|}
   
This is a class of objects that maintains an internal list of gadgets. Its purpose is to make it easier to layout a group of gadgets. Any gadgets that are a member of a ''groupgclass'' object are rendered relative to the ''groupgclass'' object's GA_Left and GA_Top attributes. As new gadgets are added to the ''groupgclass'' object, the ''groupgclass'' object’s dimensions grow to enclose the new gadgets. When the ''groupgclass'' object receives an OM_DISPOSE message, it not only disposes of itself, it also disposes of all the gadgets in its list. Groupgclass does not support the gadget relative flags (GA_RelWidth, GA_RelHeight, GA_RelBottom, and GA_RelRight).
+
This is a class of objects that maintains an internal list of gadgets. Its purpose is to make it easier to layout a group of gadgets. Any gadgets that are a member of a ''groupgclass'' object are rendered relative to the ''groupgclass'' object's GA_Left and GA_Top attributes. As new gadgets are added to the ''groupgclass'' object, the ''groupgclass'' object's dimensions grow to enclose the new gadgets. When the ''groupgclass'' object receives an OM_DISPOSE message, it not only disposes of itself, it also disposes of all the gadgets in its list. Groupgclass does not support the gadget relative flags (GA_RelWidth, GA_RelHeight, GA_RelBottom, and GA_RelRight).
   
 
=== New Methods ===
 
=== New Methods ===
Line 997: Line 1,371:
 
=== Changed Methods ===
 
=== Changed Methods ===
   
  +
; OM_SET
This method passes most attributes to the superclass, but propagates changes in position to its members appropriately. Also, GA_Width and GA_Height are calculated from the position and dimension of the membership.
 
  +
: This method passes most attributes to the superclass, but propagates changes in position to its members appropriately. Also, GA_Width and GA_Height are calculated from the position and dimension of the membership.
  +
  +
; OM_ADDMEMBER
  +
: This method adds a gadget to the group object's list. The group object will increase the size of its select box to include the new gadget's select box. The group object moves the new member to an absolute location (by changing the new member's GA_Left and GA_Top attributes) relative to the group object's upper-left corner. Note that all members of the ''groupgclass'' object will be deleted by OM_DISPOSE.
   
  +
; OM_REMMEMBER
This method adds a gadget to the group object's list. The group object will increase the size of its select box to include the new gadget's select box. The group object moves the new member to an absolute location (by changing the new member's GA_Left and GA_Top attributes) relative to the group object's upper-left corner. Note that all members of the ''groupgclass'' object will be deleted by OM_DISPOSE.
 
  +
: This method removes a gadget added to the group object's list with OM_ADDMEMBER. Note that all members of the ''groupgclass'' object will be deleted by OM_DISPOSE.
   
  +
; OM_DISPOSE
This method removes a gadget added to the group object's list with OM_ADDMEMBER. Note that all members of the ''groupgclass'' object will be deleted by OM_DISPOSE.
 
  +
: This method disposes of the ''groupgclass'' object and all its member gadgets.
   
  +
; OM_HITTEST
This method disposes of the ''groupgclass'' object and all its member gadgets.
 
  +
: This method works its way through the list of group members, sending each a GM_HITTEST message, looking for the first member in the list that says it has been hit. This member gadget becomes the active member.
   
  +
; OM_RENDER
This method works its way through the list of group members, sending each a GM_HITTEST message, looking for the first member in the list that says it has been hit. This member gadget becomes the active member.
 
  +
: This method sends a GM_HITTEST message to each of its members.
   
  +
; GM_GOACTIVE/GM_GOINACTIVE/GM_HANDLEINPUT
This method sends a GM_HITTEST message to each of its members.
 
  +
: This method passes the message to the active member's dispatcher for processing. For GM_GOINACTIVE and GM_HANDLEINPUT, the coordinates passed to the member's dispatcher in the message's gpi_Mouse.X and gpi_Mouse.Y fields are translated so that they are relative to the gadget's upper-left corner.
   
  +
=== Attributes ===
This method passes the message to the active member's dispatcher for processing. For GM_GOINACTIVE and GM_HANDLEINPUT, the coordinates passed to the member's dispatcher in the message's gpi_Mouse.X and gpi_Mouse.Y fields are translated so that they are relative to the gadget's upper-left corner.
 
   
  +
; GA_Left, GA_Top (IS)
These attributes correspond to the embedded Gadget.LeftEdge and Gadget.TopEdge fields. Setting these attributes in ''groupgclass'' object causes it to change its position as well as the position of each of the gadgets that have been added to the group gadget.
 
  +
: These attributes correspond to the embedded Gadget.LeftEdge and Gadget.TopEdge fields. Setting these attributes in ''groupgclass'' object causes it to change its position as well as the position of each of the gadgets that have been added to the group gadget.

Latest revision as of 21:44, 5 December 2017

BOOPSI Class Reference

The BOOPSI Class Reference documents all of the public classes provided by AmigaOS. Each class entry in the reference starts off with:

Class
The class's name (for example, gadgetclass)
Superclass
The class's superclass (for example, rootclass)
Include File
The class's include file (for example, <intuition/gadgetclass.h>)

The include file contains the class's message structures, attribute IDs, and method IDs. This is followed by a short description of the class.

The rest of a class entry is broken up into three sections:

New Methods
Describes each new method that the class defines.
Changed Methods
Describes each method to which this class makes significant changes.
Attributes
Describes the attributes that this class defines as well as inherited ones that this class alters.

BOOPSI Classes

There are many public classes built into AmigaOS:

BOOPSI Class Diagram

imageclass subclasses

Class name File name Description
bevel.image bevel.image
bitmap.image bitmap.image
drawlist.image drawlist.image
itexticlass intuition.library A specialized image class used for rendering text.
filler.image filler.image
fillrectclass intuition.library A class of rectangle images that have frame and patternfill support.
frameiclass intuition.library An embossed or recessed rectangular frame image, that renders itself using the proper DrawInfo pens. This class is intelligent enough to bound or center its contents.
gaugeiclass intuition.library
glyph.image glyph.image
label.image label.image
penmap.image penmap.image
sysiclass intuition.library The class of system images. The class includes the images for the system and GadTools gadgets.

gadgetclass subclasses

Button Class Diagram
Class name File name Description
button.gadget button.gadget
buttongclass intuition.library A button gadget that keeps sending button presses while the user holds it down.
checkbox.gadget checkbox.gadget
chooser.gadget chooser.gadget
clicktab.gadget clicktab.gadget
colorwheel.gadget colorwheel.gadget
datatypesclass datatypes.library
datebrowser.gadget datebrowser.gadget
diffviewgclass diffview.gadget Text file difference view gadget.
fuelgauge.gadget fuelgauge.gadget
frbuttonclass intuition.library
getcolor.gadget getcolor.gadget
getfile.gadget getfile.gadget
getfont.gadget getfont.gadget
getscreenmode.gadget getscreenmode.gadget
gradientslider.gadget gradientslider.gadget
groupgclass intuition.library A special gadget class that creates one composite gadget out of several others.
integer.gadget integer.gadget
partitiongclass intuition.library
propgclass intuition.library An easy to implement, horizontal or vertical proportional gadget.
strgclass intuition.library A string gadget.
layout.gadget layout.gadget
linecmpgclass diffview.gadget Line comparison gadget for use with diffviewgclass.
listbrowser.gadget listbrowser.gadget
page.gadget layout.gadget
palette.gadget palette.gadget
radiobutton.gadget radiobutton.gadget
scroller.gadget scroller.gadget
scrollergclass intuition.library
sketchboard.gadget sketchboard.gadget
slider.gadget slider.gadget
space.gadget space.gadget
speedbar.gadget speedbar.gadget
string.gadget string.gadget
tapedeck.gadget tapedeck.gadget
texteditor.gadget texteditor.gadget
virtual.gadget virtual.gadget

buttongclass subclasses

Class name File name Description
frbuttonclass intuition.library A buttongclass gadget that outlines its imagery with a frame.
Figure 12-32 Public Class Diagram

This section documents all the standard BOOPSI classes, including their methods and attributes.

Each class entry in this document can have two sets of methods: new methods that the class defines and inherited methods that the class has modified significantly. Similarly, each class entry can have two sets of attributes: those that the class defines and those that the class inherited and modified. Unless documented otherwise, all classes inherit all of its superclass's methods and attributes.

Each method has a BOOPSI message associated with it. These messages are in the form of C structures. Many methods use the default message structure:

typedef struct
{
    uint32 MethodID;
} *Msg;

Some methods require a customized message so they can pass other parameters besides the Method ID. If a method requires a custom message, its custom message structure is documented along with the method.

All methods have to return some sort of return value. The meaning of the return value depends on the class and method. Normally a return value of zero indicates that either the method failed or it is not supported by the class. A method can use the return value to return a pointer to an object. If a class does not directly support a particular method, the class's dispatcher should pass the method on to its superclass for processing. The class dispatcher should record the return value it gets from its superclass and use that as its return value. Methods that assign no meaning to their return value can return 1L to indicate that the method is implemented. The description of each attribute contains a code which lists the rootclass methods that apply to that attribute:

I OM_NEW Attribute can be set at initialization
S OM_SET Attribute can be set with OM_SET method
G OM_GET Attribute can be read with OM_GET method
N OM_NOTIFY Changing the attribute triggers object to send notifications
U OM_UPDATE Attribute can be set with OM_UPDATE method

For example, the itexticlass attribute IA_Left has the code (ISG) after it. This means an application can set IA_Left when it creates an instance of itexticlass (OM_NEW) and when it uses the OM_SET method. The application can also ask an itexticlass object what the IA_Left value is, using the OM_GET method.

The OM_NEW, OM_SET, OM_NOTIFY, and OM_UPDATE messages all contain a pointer to a tag list. This tag list contains the attributes and corresponding values that the method affects. Each TagItem in this list makes up an attribute/value pair. The ti_Tag portion of the TagItem contains the attribute's ID while the ti_Data field contains the attribute's value. Note that these tag lists can also contain utility.library Global System control tags (like TAG_SKIP and TAG_END), so dispatchers should use the tag functions from utility.library to process these lists. See documentation on the Utility library for more information.

All methods are called via a class dispatcher:

classDispatcher(Class *class, Object *object, Msg msg);

The first argument, class, is a pointer to the dispatcher's Class structure (defined in <intuition/classes.h>). The second parameter, object, is a pointer to the BOOPSI object to which the BOOPSI message (the third argument, msg) refers. Both Object and Msg are defined in <intuition/classusr.h>.

rootclass

Class rootclass
Superclass None
Include File <intuition/classusr.h>

This is the universal base class for all other classes.

New Methods

OM_NEW
This method tells a class to create a new instance of itself. If OM_NEW is successful, it returns a pointer to the new object, otherwise it returns NULL.
For programmers who are only creating BOOPSI objects rather than creating custom classes, use the intuition.library function NewObject():
APTR NewObject(struct IClass  *privateclass,
               UBYTE          *publicclassname,
               ULONG          firsttag,
               ...);
The OM_NEW method receives the following arguments (defined in <intuition/classusr.h>):
struct opSet /* The OM_NEW method uses the same structure as OM_GET */
{
    ULONG             MethodID;      /* OM_NEW */
    struct TagItem    *ops_AttrList; /* tag list of attributes to initialize */
    struct GadgetInfo *ops_GInfo;    /* Always NULL for OM_NEW */
};
The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. Each pair contains an attribute ID and the initial value of the corresponding attribute.
The ops_GInfo field is always NULL for the OM_NEW method.
Unlike other methods, when the dispatcher gets an OM_NEW message, the object pointer (newobject from the dispatchRKMModel() prototype above) does not point to an object, since the idea is to create a new object. The pointer normally used to pass a BOOPSI object is instead used to pass the address of the object's "true class" (the class of which the object is an instance).
The first thing the dispatcher does when it processes an OM_NEW message is pass the OM_NEW message on to its superclass's dispatcher. It does this using the function IDoSuperMethodA():
ULONG IDoSuperMethodA(Class *cl, Object *trueclass, Msg msg);
Each superclass's dispatcher does this until the message gets to the rootclass dispatcher.
Each class keeps a record of how much memory its local instance data requires. The rootclass dispatcher's OM_NEW method looks at the object's true class (newobject from the prototype) to find out how much memory to allocate for the object's instance data. The rootclass dispatcher allocates enough memory for the true class's local instance data, plus enough memory for the local instance data of each of the true class's superclasses. If all goes well, the rootclass dispatcher increments the true class's internal count of instances of true class, and returns a pointer to the newly created object. It passes control back to the subclass dispatcher that called it. If there was a problem, the rootclass dispatcher passes back a NULL. When the rootclass dispatcher returns, the subclass dispatcher regains control from DoSuperMethodA(). DoSuperMethodA() will return either a pointer to the new object or NULL if there was an error. Although the rootclass dispatcher allocated all the memory the object needs, it did not set up any of that memory. Now its the the subclass dispatcher's turn to do some work. It has to initialize the instance data that is local to its class. A dispatcher finds its local instance data by using the INST_DATA() macro (defined in <intuition/classes.h>).
After initializing its local instance data, the subclass dispatcher passes control down to its subclass dispatcher, which in turn, initializes its local instance data. Control passes down from class to subclass until the true class dispatcher regains control.
Now the true class dispatcher has to initialize its local instance data. It has to scan through the tag list of attribute/value pairs passed in the OM_NEW message (opSet.ops_AttrList). If the dispatcher finds any attributes that the true class recognizes, it has to initialize them to the value passed in the attribute/value pair.
At this point, the new object can allocate other resources it needs that it did not allocate as part of its instance data. For example, the new BOOPSI object might need a frame image around itself, so it can create a new one using a BOOPSI frame image. If the object allocates any resources in this step, it must deallocate these resources later when it is disposed in the OM_DISPOSE method.
Finally, the dispatcher can return. When the dispatcher returns from an OM_NEW method, it returns a pointer to the new object.
OM_DISPOSE
This method instructs an object to delete itself. The rootclass dispatcher's OM_DISPOSE method decrements the true class's internal count of instances of true class. The return value for this method is not explicitly defined.
This method uses the default BOOPSI message.
Applications should not call this method directly. Instead they should use the intuition.library function DisposeObject().
For the OM_DISPOSE method, an object should do the following:
  1. Free any additional resources the object explicitly allocated itself in the OM_NEW method (this does not include the instance data).
  2. Pass the message up to the superclass, which will eventually reach rootclass, which will free the instance data allocated for the object.
  3. If a class does not allocate any extra resources when it creates an object, it can defer all OM_DISPOSE processing to its superclass.
OM_ADDTAIL
This method tells an object to add itself to the end of a specified Exec list. BOOPSI objects contain a MinNode structure used for this purpose. The return value for this method is not explicitly defined. The method uses a custom message (defined in <intuition/classusr.h>):
struct opAddTail {
    ULONG       MethodID;   /* OM_ADDTAIL */
    struct List *opat_List; /* The exec list to add the object to */
};
The opat_List can be any Exec list. Use the Intuition function NextObject() to step through this list.
OM_REMOVE
Remove an object from an Exec list. The return value for this method is not explicitly defined. This method uses the default BOOPSI message.

The following methods are described at the rootclass level although its up to the subclasses to actually implement them. If a class does not implement these methods, it should either return zero, indicating that this class does not support the method, or defer processing on to its superclass.

OM_ADDMEMBER
Tells an object to add another object to its personal Exec list. What the list is for depends on the class. The return value for this method is not explicitly defined.
One class that uses this method is modelclass. A modelclass object maintains a broadcast list. When a modelclass object gets an OM_NOTIFY message, it broadcasts an OM_UPDATE message about the OM_NOTIFY to every object in its broadcast list.
This method uses a custom message (defined in <intuition/classusr.h>):
#define  opAddMember opMember
struct opMember {
    ULONG  MethodID;     /* OM_ADDMEMBER (or OM_REMMEMBER) */
    Object *opam_Object; /* add (or remove) this object    */
};                       /* to (from) personal list.       */
opam_Object is the object to add to the list. A dispatcher typically implements OM_ADDMEMBER by sending the OM_ADDTAIL message to the opam_Object object.
OM_REMMEMBER
Tells an object to remove a member object from its personal list. The member object should have already been added with OM_ADDMEMBER. This method uses the same custom message as OM_ADDMEMBER. Normally a dispatcher implements OM_REMMEMBER by sending the OM_REMOVE message to the opam_Object object. The return value for this method is not explicitly defined.
OM_GET
Tells an object to report an attribute's value. Applications should not call this method directly. Instead, use the intuition.library function GetAttr(). The return value for this method is not explicitly defined.
This method uses a custom message (defined in <intuition/classusr.h>):
struct opGet {
    ULONG MethodID;     /* OM_GET */
    ULONG opg_AttrID;   /* ID of attribute to get */
    ULONG *opg_Storage; /* place to put attribute value */
};
If the object's dispatcher recognizes opg_AttrID as one of the attributes defined by this class, the dispatcher should copy the value of that attribute to where opg_Storage points:
struct opGet *myopget;
...
*(myopget->opg_Storage) = my_attribute_value;
...
If the dispatcher does not recognize opg_AttrID, it should pass the message on to the superclass.
OM_SET
This method tells an object to set one or more of its attributes. Applications should not call this method directly. Instead, use the intuition.library functions SetAttrs() and SetGadgetAttrs() to call this method. The return value for this method is not explicitly defined.
The return value for this method is not explicitly defined. However, in general, when implementing the OM_SET method, if setting an object attribute causes some sort of visual state change, the OM_SET method should return a value greater than zero. If changing an attribute does not affect the visual state, OM_SET should return zero.
This method uses a custom message (defined in <intuition/classusr.h>):
struct opSet {
    ULONG             MethodID;      /* OM_SET */
    struct TagItem    *ops_AttrList; /* tag list of attributes to set */
    struct GadgetInfo *ops_GInfo;
};
The ops_AttrList field contains a pointer to a tag list of attribute/value pairs. These pairs contain the IDs and the new values of the attributes to set. The dispatcher has to look through this list (see docs for the utility.library NextTagItem() function) for attributes its class recognizes and set the attribute’s value accordingly. The dispatcher should let its superclass handle any attributes it does not recognize.
If the object is a gadget, the ops_GInfo field contains a pointer to a GadgetInfo structure. Otherwise, the value in ops_GInfo is undefined. Intuition use the GadgetInfo structure to pass display information to gadgets. See the gadgetclass methods for more details.
OM_UPDATE
This method tells an object to update one or more of its attributes. No application should call this method. Only BOOPSI objects send OM_UPDATE messages. The return value for this method is not explicitly defined.
A BOOPSI object uses an OM_UPDATE message to notify another BOOPSI object about transitory changes to one or more attributes.
From the point of view of most objects, an OM_UPDATE message is almost identical to OM_SET. Because the methods are so similar, When a typical dispatcher receives an OM_UPDATE message, it processes the OM_UPDATE the same way it would process an OM_SET message, usually using the same code.
There are actually two kinds of OM_UPDATE, an interim and final one. While a BOOPSI object's attribute is in a transient state, it can send out interim OM_UPDATE messages to its target(s). For example, while the user is sliding a BOOPSI prop gadget, the prop gadget sends interim OM_UPDATE message about changes to its PGA_Top value (the integer value of the prop gadget is the PGA_Top attribute) to some target object. When the user lets go of the prop gadget, the gadget is no longer in a transient state, so the gadget sends out a final OM_UPDATE about its PGA_Top attribute. The target object can choose to change one of its attributes based on the OM_UPDATE messages it receives.
The layout of the OM_UPDATE message is almost identical to the OM_SET message:
struct opUpdate {  /* the OM_NOTIFY method also uses this structure */
    ULONG             MethodID;           /* OM_UPDATE              */
    struct TagItem    *opu_AttrList;      /* tag list of attributes */
    struct GadgetInfo *opu_GInfo;         /*   that changed.        */
    ULONG             opu_Flags;          /* The extra field        */
};
 
#define OPUF_INTERIM    (1&lt;&lt;0)
Some dispatchers need to know the difference between an interim and final OM_UPDATE. A dispatcher can tell the difference between an interim and final OM_UPDATE message because the OM_UPDATE message has an extra field for flags. If the low order bit (the OPUF_INTERIM bit) is set, this is an interim OM_UPDATE message. The interim flag is useful to a class that wants to ignore any interim messages, processing only final attribute values.
OM_NOTIFY
This method tells an object to broadcast an attribute change to a set of target objects using OM_UPDATE messages. The return value for this method is not explicitly defined.
The OM_NOTIFY method uses the same message structure as OM_UPDATE.
Most dispatchers do not handle the OM_NOTIFY message directly. Normally they inherit this method from a superclass, so they pass the OM_NOTIFY message on to the superclass dispatcher.
Although most dispatchers don't have to process OM_NOTIFY messages, most do have to send them. Whenever an object receives an OM_SET or OM_UPDATE about one of its attributes, it may need to notify other objects of the change. For example, when a prop gadget's PGA_Top value changes, its target object(s) need to hear about it.
If an object needs to notify other objects about a change to one or more of its attributes, it sends itself an OM_NOTIFY message. The OM_NOTIFY message will eventually end up in the hands of a superclass that understands OM_NOTIFY and it will send OM_UPDATE messages to the target objects.

Changed Methods

Not applicable.

Attributes

None.

icclass

Class icclass (interconnection class)
Superclass rootclass
Include File <intuition/icclass.h>

Base class of simple OM_UPDATE forwarding objects. When an icclass object gets an OM_UPDATE message, it maps the attributes in the OM_UPDATE message according to its mapping list (its ICA_MAP attribute) and forwards the OM_UPDATE to it target (its ICA_TARGET attribute).

New Methods

None.

Changed Methods

OM_SET
This method sets its attributes and returns 0. Note that this is not the same behavior as OM_NOTIFY.
OM_UPDATE/OM_NOTIFY
These methods tell the object to notify its ICA_TARGET of attribute changes by sending the target an OM_UPDATE message. If the object has an ICA_MAP, it maps the attribute IDs it finds to new attribute IDs. See the rootclass descriptions of OM_NOTIFY and OM_UPDATE for more information. The return value for this method is not explicitly defined.

Attributes

ICA_TARGET (IS)
This attribute stores the address of the icclass object's target object. Whenever the icclass object receives an OM_NOTIFY or OM_UPDATE message, it forwards that message to its target in the form of an OM_UPDATE message. If the icclass object has an attribute mapping list (see the ICA_MAP attribute below), it also maps the OM_NOTIFY/OM_UPDATE message's attribute IDs to new ones before forwarding the message.
If the value of ICA_TARGET is ICTARGET_IDCMP, the icclass object sends an IDCMP_IDCMPUPDATE IntuiMessage to its window instead of forwarding an OM_UPDATE message. See the rootclass description of OM_UPDATE for more information.
ICA_MAP (IS)
This attribute points to a tag list of attribute mappings which the icclass object uses to change the attribute IDs of an OM_UPDATE's attribute/value pairs. For example, if an icclass object had the following ICA_MAP:
struct TagItem map[] =
{
    {PGA_Top, STRINGA_LongVal},
    {MYATTR, MYNEWATTR},
    {TAG_END, }
};
before sending an OM_UPDATE to its ICA_TARGET, the icclass object scans through the OM_UPDATE message's attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the icclass object finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The icclass object does not disturb the attribute's value.
ICSPECIAL_CODE
This is a dummy attribute for the ICA_MAP. If any attribute maps to ICSPECIAL_CODE and ICA_TARGET is ICTARGET_IDCMP, then the value of the mapped attribute will be copied into the IntuiMessage.Code field of the IDCMP_IDCMPUPDATE message (just the lower sixteen bits of the attribute value will fit).

modelclass

Class modelclass
Superclass icclass
Include File <intuition/icclass.h>

A class of OM_UPDATE forwarding objects that have multiple targets. In addition to the features the modelclass object inherits from icclass, when a modelclass object gets an OM_UPDATE message, it forwards that OM_UPDATE message to all of the objects in its broadcast list.

New Methods

None.

Changed Methods

OM_ADDMEMBER
This method tells a model to add an object to its broadcast list. When the object disposes of itself, it will also dispose of any objects remaining on its broadcast list. The return value for this method is not explicitly defined. See the rootclass' description of OM_ADDMEMBER for more information.
OM_REMMEMBER
This method tells a model to remove an object from its broadcast list. The return value for this method is not explicitly defined. See the rootclass description of OM_REMMEMBER for more information.
OM_DISPOSE
This method tells a model to dispose of itself plus the objects remaining on its broadcast list. The return value for this method is not explicitly defined.
OM_NOTIFY/OM_UPDATE
This method tells an object to forward the message in the form of an OM_UPDATE message to all the objects in its broadcast list. The modelclass does not map the attributes in these OM_UPDATE messages. Because modelclass inherits behavior from icclass, if the model has an ICA_TARGET and ICA_MAP, it will also send a mapped OM_UPDATE message to its ICA_TARGET. The return values for these methods are not explicitly defined. See the rootclass and icclass descriptions of these methods for more information.

Attributes

None.

imageclass

Class imageclass
Superclass rootclass
Include File <intuition/imageclass.h>

This class is the base class for BOOPSI Images. These images are backwards compatible with the conventional Intuition Images. Every BOOPSI image has an Intuition Image structure embedded in it so Intuition can access the BOOPSI image as a conventional Image structure when necessary. Normally there are no direct instances of this class, only instances of subclasses of imageclass.

New Methods

IM_DRAW
This method tells an image object to draw itself. Applications should not call this method directly, instead use the intuition.library function DrawImageState(). The return value for this method is not explicitly defined.
The IM_DRAW method uses a custom message structure:
struct impDraw
{
    ULONG           MethodID;    /* IM_DRAW                    */
    struct RastPort *imp_RPort;  /* RastPort to render into    */
    struct
    {                            /* X and Y offset relative to */
        WORD X;                  /* the image's IA_Left and    */
        WORD Y;                  /* IA_Top attributes          */
    } imp_Offset;
    ULONG           imp_State;   /* Visual state of image      */
    struct DrawInfo *imp_DrInfo; /* DrawInfo describing rendering area */
};
The imp_State field contains the visual state to render the image. The visual states (defined in <intuition/imageclass.h>) are:
IDS_NORMAL
Render using normal imagery. This is the only kind of imagery available to non-BOOPSI images.
IDS_SELECTED
Render using "selected" imagery. "Selected" refers to the state of a gadget's imagery when it is the selected gadget.
IDS_DISABLED
Render using "disabled" imagery. "Disabled" refers to the state of a gadget's imagery when it is disabled. Typically, a disabled image has a ghosting pattern on top of it.
IDS_INACTIVENORMAL
This is a special version of IDS_NORMAL for a "normal" image that is in the border of an inactive window.
IDS_INACTIVESELECTED
This is a special version of IDS_SELECTED for a "selected" image that is in the border of an inactive window.
IDS_INACTIVEDISABLED
This is a special version of IDS_DISABLED for a "disabled" image that is in the border of an inactive window.
IDS_BUSY
Render using "busy" imagery as if the object was the image of a gadget in a busy state. The busy gadget state is not yet supported by Intuition.
IDS_INDETERMINATE
Render using "indeterminate" imagery as if the object was the image of a gadget in an indeterminate state. The indeterminate gadget state is not yet supported by Intuition.
Most image objects do not have different visual states for each possible imp_State. See the imageclass entries in this index for more details.
When setting the pens to render an image, use the values from the imp_DrInfo->dri_Pens pen array (Note that it is possible for imp_DrInfo to be NULL). The possible pen values are defined in <intuition/screens.h>. See Intuition Screens for more information on the pen array.
IM_HITTEST
This method returns TRUE if a point is within the old Image structure box defined by the Image structure's LeftEdge, TopEdge, Width, and Height fields. Subclasses of imageclass can redefine this method if they need to change the criteria for deciding if a point is within an image. Application programs should not call this method directly, instead use the Intuition function PointInImage(). The IM_HITTEST method uses a custom message structure:
struct impHitTest
{
    ULONG MethodID; /* IM_HITTEST */
    struct
    {
        WORD X;     /* Coordinates of point to test for hit */
        WORD Y;
    } imp_Point;
};
If an image object doesn't need to make any changes to how its superclass handles IM_HITTEST, it can blindly pass this method on to its superclass.
IM_ERASE
The IM_ERASE method tells an image to erase itself. Applications should not call this method directly, instead they should call the Intuition function EraseImage(). The return value for this method is not explicitly defined.
The IM_ERASE method uses a custom message structure:
struct impErase
{
    ULONG           MethodID;   /* IM_ERASE */
    struct RastPort *imp_RPort; /* The image's RastPort */
    struct
    {
        WORD X;                 /* X and Y offset relative */
        WORD Y;                 /* to the image's IA_Left  */
    } imp_Offset;               /* and IA_Top attributes.  */
};
The imageclass dispatcher calls the graphics.library function EraseRect() to erase the image. The imageclass dispatcher gets the position of the image using the offsets from the IM_ERASE message and the dimensions it finds in the object's Image structure. The imageclass dispatcher does not do any bounds checking before calling EraseRect().
IM_DRAWFRAME
The IM_DRAWFRAME method instructs an image object to render itself within the confines of a given rectangle. The return value for this method is not explicitly defined.
This method uses a custom message structure that is basically an extension of the IM_DRAW message:
struct impDraw {
    ULONG           MethodID;    /* IM_DRAWFRAME */
    struct RastPort *imp_RPort;  /* RastPort to render into */
    struct
    {
        WORD X;                  /* X and Y offset relative to the */
        WORD Y;                  /* image's IA_Left and IA_Top
                                    attributes */
    } imp_Offset;
    ULONG           imp_State;   /* Visual state of image (see defines
                                    below */
    struct DrawInfo *imp_DrInfo; /* DrawInfo describing target RastPort
                                    (can be NULL) */
 
    struct
    {
        WORD Width;              /* scale, clip, restrict, etc. to
                                    these bounds */
        WORD Height;
    } imp_Dimensions;
};
The Width and Height fields provide the object's rectangular bounds. How the image object deals with the frame is implementation specific. If the imageclass dispatcher sees this message, it will convert it to an IM_DRAW message and send it back to the image's true class. An image subclass which assigns proper meaning to this method (i.e., frameiclass) should handle this method itself.
This method is useful to classes of images that can scale or clip themselves to arbitrary dimensions. Typically, an instance of a class that truly supports this method will massage its imagery as best it can to fit into the rectangle.
In general, applications that use this method to draw an object should use the IM_ERASEFRAME method to erase it (see below). This will ensure that the image erases itself at the proper scale.
IM_HITFRAME
This method is a special version of IM_HITTEST for images that support IM_DRAWFRAME. It asks an image if a point would be inside it if the image was confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
This method uses a custom message structure:
struct impHitTest
{
    ULONG MethodID;    /* IM_HITFRAME */
    struct
    {
        WORD X;        /* Coordinates of point to test for hit */
        WORD Y;
    } imp_Point;
 
    struct
    {
        WORD Width;    /* scale, clip, restrict, etc. to these bounds */
        WORD Height;
    } imp_Dimensions;
};
The imageclass dispatcher treats IM_HITFRAME just like IM_HITTEST, ignoring the restricting dimensions.
IM_ERASEFRAME
This method is a special version of IM_ERASE for images that support IM_DRAWFRAME. It asks an image to erase itself as if it were confined (scaled, clipped, etc.) to a rectangular bounds. The return value for this method is not explicitly defined.
This method uses a custom message structure:
struct impErase /* NOTE: This is a subset of impDraw */
{
    ULONG           MethodID;   /* IM_ERASEFRAME */
    struct RastPort *imp_RPort; /* The image's RastPort */
    struct
    {
        WORD X;                 /* X and Y offset relative
                                   to the image's IA_Left */
        WORD Y;                 /* and IA_Top attributes */
    } imp_Offset;
 
    struct
    {
        WORD Width;             /* scale, clip, restrict, etc.
                                   to these bounds */
        WORD Height;
    } imp_Dimensions;
};
The imageclass dispatcher handles an IM_ERASEFRAME message as if it was an IM_ERASE message, ignoring the bounds. See the imageclass description for IM_ERASE for more details.
IM_FRAMEBOX
This method applies to image classes that are used to put a frame centered around some other objects. This method asks a framing image what its dimensions should be if it had to frame some object or set of objects that fit into a rectangular bounds. For example, to draw an frameiclass image around a group of gadgets that fit into a specific rectangle, you first send the frameiclass object an IM_FRAMEBOX message describing the dimensions and position of that rectangle. The frame reports what its position and dimensions would have to be to surround those gadgets. Use these results to draw the frameiclass image. The return value for this method is not explicitly defined.
IM_FRAMEBOX uses a custom message structure:
struct impFrameBox
{
    ULONG           MethodID;         /* IM_FRAMEBOX  */
    struct IBox     *imp_ContentsBox; /* The object fills in this structure */
                                      /* with the dimensions of a rectangle */
                                      /* big enough to frame...             */
    struct IBox     *imp_FrameBox;    /* &lt;------- this rectangle.           */
    struct DrawInfo *imp_DrInfo;      /* imp_DrInfo can be NULL.            */
    ULONG           imp_FrameFlags;
};
#define FRAMEF_SPECIFY  (1&lt;&lt;0)  /* Make do with the dimensions passed   */
                                /* in FrameBox.                         */
The imp_FrameBox field points to an IBox structure (defined in <intuition/intuition.h>) describing the dimensions and position of the rectangle to frame. After the framing image determines the position and size it should be in order to properly frame imp_FrameBox, it stores the result in the imp_ContentsBox IBox. This method allows an application to use a framing image without having to worry about image specific details such as the thickness of the frame or centering the frame around the object.
The imp_FrameFlags field is a bit field used to specify certain options for the IM_FRAMEBOX method. Currently, there is only one defined for it, FRAMEF_SPECIFY. If this bit is set, the imp_FrameBox contains a width and height that the frame image has to use as its width and height, even if the imp_FrameBox is smaller than imp_ContentsBox. The frame is free to adjust its position, but it is stuck with the imp_FrameBox dimensions. This allows an application to set the size of the frame image and still allow the frame image to position itself so it is centered on a rectangle.
The imageclass dispatcher does not support this method. It returns zero.

Changed Methods

OM_NEW
The instance data for imageclass contains an Image structure, and its Depth field is initialized to CUSTOMIMAGEDEPTH, which identifies such images to Intuition. The Image's Width and Height fields default to arbitrary positive numbers for safety, but an imageclass subclass or an application should set these attributes to something meaningful.
OM_SET
This method applies to all imageclass attributes. OM_SET returns 1.

Attributes

IA_Left, IA_Top, IA_Width, IA_Height (ISG)
These attributes correspond to similarly named fields in the Intuition Image structure. The imageclass dispatcher stores these attributes in their corresponding fields in the image object's embedded Image structure.
IA_FGPen, IA_BGPen (ISG)
These attributes are copied into the Image structure's PlanePick and PlaneOnOff fields, respectively.
IA_Data (ISG)
A pointer to general image data. This value is stored in the ImageData field of the Image structure.
IA_Pens ()
This attribute points to an alternative pen array for the image. Imageclass does not support this attribute, it is described here for subclasses to use. See Intuition Screens for more information on the pen array.

frameiclass

Class frameiclass
Superclass imageclass
Include File <intuition/imageclass.h>

This is a class of framing image, which can optionally fill itself. Its purpose is to frame other display elements using an embossed or recessed rectangular frame. The frame renders itself using the appropriate DrawInfo pens (SHINEPEN, SHADOWPEN, etc.). This class is intelligent enough to bound or center its contents.

New Methods

None.

Changed Methods

IM_DRAW
This method tells a frameiclass object to render itself using the position and dimensions of its Image structure. It supports two sets of drawing states (passes in the impDraw.imp_State field):
IDS_NORMAL, IDS_INACTIVENORMAL, IDS_DISABLED
In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the BACKGROUNDPEN for its interior. Note that the frame renders the same imagery for all three of these states.
IDS_SELECTED, IDS_INACTIVESELECTED
In these states, the frame renders its edges using SHADOWPEN and SHINEPEN. If it is a filled frame the frame uses the FILLPEN for its interior.
See the imageclass description for IM_DRAW for more details.
IM_DRAWFRAME
This method is almost the same as the frameiclass IM_DRAW method, except this method accepts a width and height that overrides the width and height stored in the object's Image structure. It uses the same drawing states as the frameiclass's IM_DRAW method. See the imageclass description for IM_DRAWFRAME for more information.
IM_FRAMEBOX
This method asks a frameiclass image what its dimensions would be if it has to frame a specific rectangular area. See the imageclass description for IM_FRAMEBOX for more information.

Attributes

IA_Recessed (IS)
If this attribute is TRUE, a frameiclass object will appear recessed into the drawing surface. It does this by swapping its use of the SHADOWPEN and SHINEPEN. By default, the frame appears to be raised from the surface.
IA_EdgesOnly (IS)
If this attribute is TRUE, the frame does not fill itself, it just draws its edges.

sysiclass

Class sysiclass
Superclass imageclass
Include File <intuition/imageclass.h>

This is a class of system images and standard application images. As of Intuition version 37, there are 11 possible sysiclass image glyphs to choose from:

DEPTHIMAGE Window depth arrangement image.
ZOOMIMAGE Window Zoom image.
SIZEIMAGE Window Sizing image.
CLOSEIMAGE Window close image.
SDEPTHIMAGE Screen depth arrangement image.
LEFTIMAGE Left arrow image.
RIGHTIMAGE Right arrow image.
UPIMAGE Up arrow image.
DOWNIMAGE Down arrow image.
CHECKIMAGE Checkmark image.
MXIMAGE Radio button image.

The class caches the image's bitmap to improve rendering speed.

New Methods

None.

Changed Methods

None.

Attributes

SYSIA_DrawInfo (I)
This attribute contains a pointer to a DrawInfo structure (defined in <intuition/screens.h>) describing the target screen. The class requires this attribute in order to generate the image into a bitmap cache.
SYSIA_Which (I)
This attribute identifies which of the system image glyphs the sysiclass object uses. It can be one of the 11 glyphs described above.
SYSIA_Size (I)
This attribute identifies which image size to use for the object. This generalizes Intuition's older concept of two different system image dimensions. There are three possible values for this attribute:
SYSISIZE_MEDRES
Meant for Hires, non-interlaced 640*200/256 display.
SYSISIZE_HIRES
Meant for Hires, interlaced 640*400/512 display.
SYSISIZE_LOWRES
Meant for Lores 320*200/256 display.
These sizes do not apply to all of the glyphs consistently. See the chart below for image dimensions (width * height) according to the SYSIA_Size and the glyph type. An "H" for the height means the glyph allows its height to be specified with IA_Height.
SYSISIZE LOWRES MEDRES HIRES
DEPTHIMAGE 18 x H 24 x H 24 x H
ZOOMIMAGE 18 x H 24 x H 24 x H
SIZEIMAGE 13 x 11 18 x 10 18 x 10
CLOSEIMAGE 15 x H 20 x H 20 x H
SDEPTHIMAGE 17 x H 23 x H 23 x H
LEFTIMAGE 16 x 11 16 x 10 23 x 22
RIGHTIMAGE 16 x 11 16 x 10 23 x 22
UPIMAGE 13 x 11 18 x 11 23 x 22
DOWNIMAGE 13 x 11 18 x 11 23 x 22
CHECKIMAGE 26 x 11 26 x 11 26 x 11
MXIMAGE 17 x 9 17 x 9 17 x 9

fillrectclass

Class fillrectclass
Superclass imageclass
Include File <intuition/imageclass.h>

This is a class of filled rectangles. The fillrectclass object can use a pattern to fill in its interior.

New Methods

None.

Changed Methods

IM_DRAW
This method asks a fillrectclass object to render itself relative to the position (LeftEdge and TopEdge) and dimensions (Width and Height) in its embedded Image structure. See the imageclass description of IM_DRAW for more details.
IM_DRAWFRAME
This method asks a fillrectclass object to render itself relative to the position in its embedded Image structure, but using the width and height passed in the message’s Dimensions.Width and Dimensions.Height fields. See the imageclass description of IM_DRAWFRAME for more details.

Attributes

IA_APattern, IA_APatSize (IS)
These attributes supply the fillrectclass object with an area fill pattern. The IA_APattern attribute points to the area fill pattern for the object. The IA_APatSize attribute is the depth of the area fill pattern. These attribute values are similar to the parameters passed to the SetAfPt() macro (defined in <graphics/gfxmacros.h>) and indirectly correspond to fields in a RastPort structure. For more information on these patterns, see the section on patterns in Graphics Primitives.
IA_Mode (IS)
This attribute contains the drawing mode for the pattern (JAM1, JAM2, etc.)

itexticlass

Class itexticlass
Superclass imageclass
Include File <intuition/imageclass.h>

This is a class of image objects that render an IntuiText structure. Using some of the imageclass attributes, the object can override some of the parameters in the IntuiText structure. This class makes it easy to share an IntuiText structure between objects.

New Methods

None.

Changed Methods

IM_DRAW/IM_DRAWFRAME
These methods ask an itexticlass object to render its IntuiText structure, which it gets from the imageclass IA_Data attribute. An itexticlass object renders its IntuiText relative to the IA_Left and IA_Top attributes it inherits from imageclass. This method uses the JAM1 drawing mode and the IA_FGPen to render the text. See the imageclass description of IM_DRAW/IM_DRAWFRAME for more details.

Attributes

None.

gadgetclass

Class gadgetclass
Superclass rootclass
Include File <intuition/gadgetclass.h>

This is a base class for Intuition compatible gadget objects. The dispatcher for this class takes care of creating an Intuition Gadget structure as part of its local instance data. All of the standard BOOPSI gadget classes build on this class. Normally there are no direct instances of this class, only instances of subclasses of gadgetclass.

The behavior of a BOOPSI gadget depends on how it handles the five BOOPSI gadget methods: GM_HITTEST, GM_RENDER, GM_GOACTIVE, GM_HANDLEINPUT, and GM_GOINACTIVE. Intuition controls a BOOPSI gadget by sending it these types of messages. The structures that these methods use for their messages begin with the method’s ID followed by a pointer to a GadgetInfo structure (defined in <intuition/cghooks.h>). The GadgetInfo structure is a read-only structure that contains information about the gadget’s rendering environment. The gadget uses this to find things like its window, screen, or pen array. Although this structure does contain a pointer to a RastPort for the gadget, the gadget must not use this RastPort for rendering. The gadget can obtain a RastPort for rendering by calling the Intuition function ObtainGIRPort() using the GadgetInfo structure. See the intuition.library Autodocs for more details on this function.

These methods are not defined directly by gadgetclass. It is up to subclasses of gadgetclass to implement them.

Like all BOOPSI methods, these methods run on the context of the task that called the method. Normally, Intuition is the only entity that calls these methods, so these normally operate in the input.device’s task. Because a gadget may have to process a large number of input events, poor implementations of gadget methods (especially the GM_HANDLEINPUT method) can degrade system performance.

New Methods

GM_HITTEST
This method asks a gadget if a point is within its bounds. Usually the point corresponds to a mouse click. Intuition sends a gadget this message when the user clicks inside the rectangular bounds found in the object's Gadget structure (using its TopEdge, LeftEdge, Width, and Height fields). This method returns GMR_GADGETHIT if a point is within the gadget, otherwise it returns zero. Because the gadget decides if it was hit, the gadget can be almost any shape or pattern. BOOPSI gadgets that default to using the bounds of their Gadget structure should always return GMR_GADGETHIT.
GM_HITTEST uses a custom message structure (defined in <intuition/gadgetclass.h>):
struct gpHitTest
{
    ULONG             MethodID;     /* GM_HITTEST   */
    struct GadgetInfo *gpht_GInfo;
    struct
    {
        WORD X;                     /* Is this point inside */
        WORD Y;                     /* of the gadget?       */
    } gpht_Mouse;
};
The gpht_Mouse.X and gpht_Mouse.Y fields make up the X and Y coordinates of the hit point. These coordinates are relative to the upper-left corner of the gadget (Gadget.LeftEdge, Gadget.TopEdge).
GM_RENDER
This method tells a gadget to render itself. The return value for this method is not explicitly defined.
GM_RENDER uses a custom message structure (defined in <intuition/gadgetclass.h>):
struct gpRender
{
    ULONG             MethodID;   /* GM_RENDER */
    struct GadgetInfo *gpr_GInfo;
    struct RastPort   *gpr_RPort; /* all ready for use */
    LONG              gpr_Redraw; /* might be a &quot;highlight pass&quot; */
};
The GM_RENDER message contains a pointer to the Gadget’s RastPort which it can use for rendering. The Gadget renders itself according to how much imagery it needs to replace. The gpr_Redraw field contains one of three values:
GREDRAW_REDRAW
Redraw the entire gadget.
GREDRAW_UPDATE
The user has manipulated the gadget changing the imagery. Update only that part of the gadget’s imagery that is effected by the user manipulating the gadget (for example, the knob and scrolling field of the prop gadget).
GREDRAW_TOGGLE
If this gadget supports it, toggle to or from the highlighting imagery.
GM_GOACTIVE
This method asks a gadget if it is OK to make it the active gadget. The active gadget is the gadget that is currently receiving user input. Intuition sends this message after a gadget responds affirmatively to the GM_HITTEST method. A gadget becomes active because it needs to process input events (like a prop gadget or string gadget).
Some types of gadget do not need to become active. These gadgets do not have to process input from the user, they only have to deal with a single mouse click to toggle their state. Because that mouse click triggered this method, the button already has all of the user input it requires. Note that the behavior of the GadTools button differs from a BOOPSI buttongclass gadget, which processes other input events besides a single mouse click. See the entry for buttongclass for more details.
GM_GOACTIVE uses a custom message structure (defined in <intuition/gadgetclass.h>):
struct gpInput
{
    ULONG             MethodID;         /* GM_GOACTIVE or GM_HANDLEINPUT */
    struct GadgetInfo *gpi_GInfo;
    struct InputEvent *gpi_IEvent;      /* The input event that triggered */
                                        /* this method (can be NULL for
                                           GM_GOACTIVE). */
    LONG              *gpi_Termination; /* For GADGETUP IntuiMessage.Code */
    struct
    {
        WORD X;                         /* Mouse position relative to upper */
        WORD Y;                         /* left corner of gadget (LeftEdge, */
    } gpi_Mouse;                        /* TopEdge). */
};
The gpi_IEvent field points to the struct InputEvent that triggered the GM_GOACTIVE message. If gpi_IEvent is NULL, the GM_GOACTIVE message was triggered by a function like intuition.library's ActivateGadget() and not by the user clicking the gadget.
For gadgets that only want to become active as a direct result of a mouse click, this difference is important. For example, the prop gadget becomes active only when the user clicks on its knob. Because the only way the user can control the prop gadget is via the mouse, it would not make sense for it to be activated by anything besides the mouse. On the other hand, a string gadget gets input from the keyboard, so a string gadget doesn't care what activates it. Its input comes from the keyboard rather than the mouse.
A gadget's GM_GOACTIVE method returns GMR_MEACTIVE (defined in <intuition/gadgetclass.h>) if it wants to be the active gadget. Otherwise it returns GMR_NOREUSE. For a description of what these values mean, See their description in the gadgetclass's GM_HANDLEINPUT method, below.
If necessary, a gadget's GM_GOACTIVE method can precalculate and cache information before it becomes the active gadget. The gadget will use this information while it's processing user input with the GM_HANDLEINPUT method. When it is time for the active gadget to become inactive, Intuition will send the gadget a GM_GOINACTIVE message. The gadget can clean up its precalculations and cache in the GM_GOINACTIVE method. For more information on GM_GOINACTIVE, see its description below.
GM_HANDLEINPUT
This method asks an active gadget to handle an input event. After Intuition gets an OK to make this gadget object active (see the GM_GOACTIVE method above), Intuition starts sending input events to the gadget. Intuition sends them in the form of a GM_HANDLEINPUT message. This method uses the same custom message structure as GM_GOACTIVE (see the gpInput structure above).
The information in the gpInput structure is the same for GM_HANDLEINPUT as it is for GM_GOACTIVE. The only difference is that the GM_HANDLEINPUT message's gpi_IEvent can never be NULL. It always points to an InputEvent structure.
The gadget has to examine the incoming InputEvents to see how its state may have changed. For example, a string gadget processes key presses, inserting them into the gadgets string. When the string changes, the gadget has to update its visual state to reflect that change. Another example is the prop gadget. If the user picks up the prop gadget's knob, the prop gadget has to track the mouse to process changes to the gadget’s internal values. It does this by processing IECLASS_RAWMOUSE events.
If the GM_HANDLEINPUT method needs to do some rendering, it must call ObtainGIRPort() on the GM_HANDLEINPUT message's gpi_GInfo to get a pointer to a RastPort. To relinquish this RastPort, the GM_HANDLEINPUT method must call ReleaseGIRPort(). The GM_HANDLEINPUT method has to allocate and release this RastPort, it cannot be cached in the GM_GOACTIVE method.
The return value from GM_HANDLEINPUT informs Intuition if the gadget wants to remain active. The return values for the GM_HANDLEINPUT are similar to GM_GOACTIVE. The gadget tells Intuition that it wants to remain active by returning GMR_MEACTIVE. A gadget tells Intuition it wants to become inactive by returning one of the “go inactive” return values:
GMR_NOREUSE
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent.
GMR_REUSE
Tells Intuition to reprocess the gpInput.gpi_IEvent InputEvent after deactivating the gadget.
GMR_NEXTACTIVE
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the next GFLG_TagCycle gadget.
GMR_PREVACTIVE
Tells Intuition to throw away the gpInput.gpi_IEvent InputEvent and activate the previous GFLG_TagCycle gadget.
GMR_NOREUSE tells Intuition that the gadget does not want to be active and should throw away the InputEvent that triggered the GM_HANDLEINPUT message (or the GM_GOACTIVE message). For example, an active prop gadget returns GMR_NOREUSE when the user lets go of the left mouse button (thus letting go of the prop gadget's knob).
A gadget can also return GMR_REUSE, which tells Intuition to reuse the InputEvent. For example, if the user clicks outside of an active string gadget, that string gadget returns GMR_REUSE so Intuition can process that mouse click, which could be over another gadget. Another case where a string gadget returns GMR_REUSE is when the user pushes the right mouse button (the menu button). The string gadget becomes inactive and the menu button InputEvent gets reused by Intuition so it can pop up the menu bar.
The other two possible return values are GMR_NEXTACTIVE and GMR_PREVACTIVE. These tell Intuition that a gadget no longer wants to be active and that the GM_HANDLEINPUT message InputEvent should be discarded. Intuition then looks for the next non-disabled (GMR_NEXTACTIVE) or previous (GMR_PREVACTIVE) gadget that has its GFLG_TABCYCLE flag set in its Gadget.Activation field (see the gadgetclass GA_TabCycle attribute below), and attempts to activate it.
For both GM_GOACTIVE and GM_HANDLEINPUT, the gadget can bitwise OR any of these -inactive- return values with GMR_VERIFY. The GMR_VERIFY flag tells Intuition to send a GADGETUP IntuiMessage to the gadget's window. If the gadget uses GMR_VERIFY, it has to supply a value for the IntuiMessage's Code field. It does this by passing a value in the gpInput's gpi_Termination field. This field points to a long word, the lower 16-bits of which Intuition copies into the Code field. The upper 16-bits are for future enhancements, so clear these bits.
GM_GOINACTIVE
This method tells the active gadget to become inactive. The return value for this method is not explicitly defined.
GM_GOINACTIVE uses a custom message structure (defined in <intuition/gadgetclass.h>):
struct gpGoInactive
{
    ULONG             MethodID;    /* GM_GOINACTIVE */
    struct GadgetInfo *gpgi_GInfo;
 
    ULONG             gpgi_Abort; /* gpgi_Abort=1 if gadget was aborted */
                                  /* by Intuition and 0 if gadget went  */
                                  /* inactive at its own request.       */
};
The gpgi_Abort field contains either a 0 or 1. If it is 0, the gadget became inactive at its own request (because the GM_HANDLEINPUT method returned something besides GMR_MEACTIVE). If gpgi_Abort is 1, Intuition aborted this active gadget. Some cases where Intuition aborts a gadget include: the user clicked in another window or screen, an application removed the active gadget with RemoveGList(), and an application called ActivateWindow() on a window other than the gadget's window.
If the gadget allocated any resources to cache or precalculate information in the GM_GOACTIVE method, it should deallocate those resources in this method.

Changed Methods

OM_NEW
This method allocates space for an embedded struct Gadget (defined in <intuition/intuition.h>) and initializes some of the attributes defined by gadgetclass.
OM_NOTIFY
This method tells a gadget to send an OM_UPDATE message to its target object. BOOPSI gadgets have a function similar to icclass objects--each gadget can have an ICA_TARGET and ICA_MAP in order to notify some target object of attribute changes. When a BOOPSI gadget sends an OM_NOTIFY message, it always includes its GA_ID. This makes it easy for an application to tell which gadget initially sent the OM_NOTIFY. See the description of icclass and the rootclass's OM_NOTIFY and OM_UPDATE methods for more details.

Attributes

GA_Previous (I)
This attribute is used to insert a new gadget into a list of gadgets linked by their Gadget.NextGadget field. When the OM_NEW method creates the new gadget, it inserts the new gadget into the list following the GA_Previous gadget. This attribute is a pointer to the gadget (struct Gadget *) that the new gadget will follow. This attribute cannot be used to link new gadgets into the gadget list of an open window or requester, use AddGList() instead.
ICA_TARGET (IS)
This attribute stores the address of the gadget's target object. Whenever the gadget receives an OM_NOTIFY message, it sends an OM_UPDATE message to its target. If the gadget has an attribute mapping list (see the ICA_MAP attribute below), it also maps the IDs from the OM_NOTIFY message.
If the value of ICA_TARGET is ICTARGET_IDCMP, the gadget sends an IDCMP_IDCMPUPDATE IntuiMessage to its window. See the rootclass description of OM_UPDATE for more information.
ICA_MAP (IS)
This attribute points to a tag list of attribute mappings which the gadget uses to change the attribute IDs of an OM_UPDATE’s attribute/value pairs. For example, if a gadget had the following ICA_MAP:
struct TagItem map[] =
{
    {PGA_Top, STRINGA_LongVal},
    {MYATTR, MYNEWATTR},
    {TAG_END, }
};
before it sends an OM_UPDATE to its ICA_TARGET, the gadget scans through the OM_UPDATE message's attribute/value pairs looking for the PGA_Top and MYATTR attributes. If it finds the PGA_Top attribute, it changes PGA_Top to STRINGA_LongVal. Likewise, if the gadget finds the MYATTR attribute, it changes MYATTR to MYNEWATTR. The gadget does not disturb the attribute's value, only its ID.
GA_Left, GA_Top, GA_Width, GA_Height (IS)
These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting these clears the "gadget relative" flags (below).
GA_RelRight, GA_RelBottom, GA_RelWidth, GA_RelHeight (IS)
These attributes correspond to the Gadget structure's LeftEdge, TopEdge, Width, and Height fields. Setting any of these attributes also sets the corresponding "relative" flag in the Gadget structure's Flags field (respectively, GFLG_RELRIGHT, GFLG_RELBOTTOM, GFLG_RELWIDTH and GFLG_RELHEIGHT). Note that the value passed in this attribute is normally a negative LONG. See Intuition Gadgets for more information on these flags.
The remaining attributes defined by gadgetclass are used to set the fields in the Gadget structure of the BOOPSI gadget. Some BOOPSI gadgets do not pay attention to many of the fields in its Gadget structure, so most applications will not have to worry about the majority of these attributes. Some gadget classes assign special meanings to these attributes. See the documentation of the specific gadget classes for more details.
GA_IntuiText, GA_Text, GA_LabelImage (IS)
These attributes correspond to one field in the object's embedded Gadget structure--the GadgetText field. Setting any of these attributes copies the attribute's value blindly into the GadgetText field. In addition, setting GA_Text also sets the GFLG_LABELSTRING flag in Gadget.Flags and setting GA_LabelImage sets the GFLG_LABELIMAGE flag in Gadget.Flags. The GA_IntuiText attribute must be an IntuiText pointer, as with old-style gadgets. GA_Text takes a pointer to a NULL- terminated string (STRPTR). GA_LabelImage takes a pointer to a (BOOPSI) image. Note that most gadget classes do not support GA_Text and GA_LabelImage. See the description of specific gadget classes for more details.
GA_Image (IS)
This attibute is a pointer to either a BOOPSI image or a Release 1.3-compatible Intuition image. This attribute corresponds to the Gadget's GadgetRender field. The gadgetclass dispatcher will not dispose of this image when it disposes of the gadget object.
GA_Border, GA_SelectRender, GA_ID, GA_UserData, GA_SpecialInfo (IS)
These attributes correspond to the similarly named fields in the Gadget structure embedded in the gadget object.
GA_GZZGadget, GA_SysGadget (IS)
These are boolean attributes that correspond to the flags in the object's Gadget.GadgetType field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.GadgetType is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.GadgetType is cleared. See the <intuition/intuition.h> include file or Intuition Gadgets for more information.
GA_Disabled, GA_Selected (IS)
These are boolean attributes that correspond to the similarly named flags in the object's Gadget.Flags field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Flags is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Flags is cleared. See the <intuition/intuition.h> include file or Intuition Gadgets for more information.
GA_EndGadget, GA_Immediate, GA_RelVerify, GA_FollowMouse, GA_RightBorder, GA_LeftBorder, GA_TopBorder, GA_BottomBorder, A_ToggleSelect, GA_TabCycle (IS)
These are boolean attributes that correspond to the flags in the object's Gadget.Activation field. If the value passed with the attribute is TRUE, the corresponding flag in Gadget.Activation is set. If the value passed with the attribute is FALSE, the corresponding flag in Gadget.Activation is cleared. See the <intuition/intuition.h> include file or Intuition Gadgets for more information.
GA_Highlight (IS)
This attribute corresponds to the GFLG_GADGHIGHBITS portion of the gadget's Gadget.Flags field. This attribute can be one of four values (from <intuition/intuition.h>):
GFLG_GADGHCOMP, GFLG_GADGHBOX, GFLG_GADGHIMAGE, GFLG_GADGHNONE
See the <intuition/intuition.h> include file or Intuition Gadgets for more information.
GA_SysGType (IS)
This attribute corresponds to the system gadget type portion of the gadget’s Gadget.GadgetType fields. This attribute is any one of the following flags (from <intuition/intuition.h>):
GTYP_SIZING, GTYP_WDRAGGING, GTYP_SDRAGGING, GTYP_WUPFRONT, GTYP_SUPFRONT, GTYP_WDOWNBACK, GTYP_SDOWNBACK, GTYP_CLOSE
See the <intuition/intuition.h> include file or Intuition Gadgets for more information.

propgclass

Class propgclass
Superclass gadgetclass
Include File <intuition/gadgetclass.h>

A BOOPSI proportional ("prop") gadget. The BOOPSI prop gadget is similar to the conventional prop gadget, but extends its function to make it easier to use. The BOOPSI prop gadget keeps its current integer value in its PGA_Top attribute.

New Methods

None.

Changed Methods

GM_HANDLEINPUT
If the knob position changes sufficiently to change a propgclass object's PGA_Top attribute, the gadget will send an OM_NOTIFY message to itself, which the propgclass dispatcher passes on to the gadgetclass dispatcher for processing (see the rootclass description of OM_NOTIFY and OM_UPDATE for more information).
The OM_NOTIFY message will contain two attribute/value pairs, PGA_Top and GA_ID. While the prop gadget's PGA_Top is in a transitory state (while it is active and the user is moving the prop gadget's knob), the gadget sends interim OM_NOTIFY messages. The interim OM_NOTIFY messages have the OPUF_INTERIM flag of the opUpdate.opu_Flags field set. When the user finishes manipulating the gadget (by letting go of the knob), the gadget sends a final OM_NOTIFY message, which has a cleared OPUF_INTERIM flag.

Attributes

GA_Image (I)
Propgclass intercepts this gadgetclass attribute before passing it on to gadgetclass. This attribute passes an image for the prop gadget's knob, which gets stored in the propgclass object's Gadget.Image structure. If the propgclass does not get a GA_Image when it creates a prop gadget, the prop gadget's knob defaults to an AUTOKNOB. An AUTOKNOB automatically sizes itself according to how large the range of the gadget is compared to the visible range of the gadget. See the PGA_Visible and PGA_Total attributes for more details.
GA_Border (I)
Propgclass intercepts this gadgetclass attribute to prevent gadgetclass from setting up a border. If an application tries to set this attribute for a propgclass gadget, the prop gadget turns itself into an AUTOKNOB gadget.
GA_Highlight (I)
Propgclass intercepts this gadgetclass attribute before passing it on to gadgetclass. It does this to make sure the highlighting is not set to GADGHBOX. GADGHBOX will be converted to GADGHCOMP. See Intuition Gadgets for more information on the types of gadget highlighting.
Other gadgetclass attributes are passed along to the superclass.
PGA_Freedom (IG)
This attribute tells a propgclass object on which axis the gadget's knob is free to move, the horizontal or the vertical. It is either FREEHORIZ or FREEVERT. The default is FREEVERT.
PGA_NewLook (I)
This is a boolean attribute which corresponds to the PROPNEWLOOK flag PropInfo structure's Flags field (defined in <intuition/intuition.h>). If this attribute is TRUE, the new propgclass object will use modern imagery rather than the Release 1.3 imagery.
PGA_Borderless (I)
This is a boolean attribute which corresponds to the BORDERLESS flag of the PropInfo structure's Flags field (defined in <intuition/intuition.h>). If this attribute is TRUE, the new propgclass object will not have a border around it. In an AUTOKNOB propgclass gadget, if the PROPNEWLOOK flag is set as well (see the PGA_NewLook attribute), the knob will have a 3D appearance.
PGA_Top (ISGNU)
PGA_Visible, PGA_Total (ISU)
These attributes replace the Pot and Body variables of the Release 1.3 prop gadget. They are based on the use of proportional gadgets to control scrolling text. When scrolling 100 lines of text in a 25 line visible window, you would set PGA_Total to 100, PGA_Visible to 25, and watch PGA_Top run from 0 to 75 (the top line of the last page).
If the user clicks in the prop gadget but not on the knob, the entire knob jumps one “page” (the size of the visible area minus one, PGA_Visible-1). The page jump will leave an overlap of one line, unless the value PGA_Visible is 1, in which case the prop gadget acts as an integer numeric slider, sliding from 0 to PGA_Total - 1.
Note that when PGA_Top changes, the gadget sends itself an OM_NOTIFY message about this attribute change (see the propgclass description of GM_HANDLEINPUT for more information). All three of these attributes have OM_UPDATE access, so they can be controlled from other objects.

strgclass

Class strgclass
Superclass gadgetclass
Include File <intuition/gadgetclass.h>

Intuition compatible string gadgets. The BOOPSI string gadget can either be a plain string gadget or an integer string gadget. An integer gadget filters out all characters except those that make up integer values.

New Methods

None.

Changed Methods

OM_NEW
This method sets up the string gadget's StringInfo and StringExtend structures. It allocates a buffer if needed and will use shared data buffers for UndoBuffer and WorkBuffer if the MaxChars is less than SG_DEFAULTMAXCHARS (128). Default text pens are: Foreground = 1, Background = 0. See the rootclass description of the OM_NEW method for more details.

Attributes

STRINGA_LongVal (ISGNU)
This attribute tells strgclass that this gadget is an integer string gadget and the new value of the integer is this attribute's value.
STRINGA_TextVal (ISGNU)
This attribute tells strgclass that this gadget is a plain string gadget. The attribute points to a string which the object copies into the string gadget's current string value buffer.
When a strgclass gadget's internal STRINGA_LongVal or STRINGA_TextVal value changes (usually because the user manipulated the gadget), it sends itself an OM_NOTIFY message. The OM_NOTIFY message will contain two attribute/value pairs, GA_ID and either STRINGA_LongVal or STRINGA_TextVal (depending on what kind of strgclass gadget it is). Strgclass gadgets only send a final OM_NOTIFY message (one's with the OPUF_INTERIM flag of the opUpdate.opu_Flags field cleared).

The remaining strgclass attributes correspond to the flags and fields that the conventional Intuition string gadget uses. See the "String Gadget Type" section of Intuition Gadgets for more information.

STRINGA_MaxChars, STRINGA_Buffer, STRINGA_UndoBuffer, STRINGA_WorkBuffer (I)
Specify various buffers defined for string gadgets and extended string gadgets. If your value of STRINGA_MaxChars is less than SG_DEFAULTMAXCHARS (128 for now), then this class can provide all these buffers for you. Note that UndoBuffer and WorkBuffer can be shared by many separate gadgets, providing they are as large as the largest MaxChars they will encounter.
STRINGA_BufferPos, STRINGA_DispPos (ISU)
The attributes tell the object its cursor and scroll position.
STRINGA_AltKeyMap (IS)
This attribute corresponds to the StringInfo.AltKeyMap field.
STRINGA_Font (IS)
This attributes points to an open TextFont structure that the string gadget uses for rendering its text.
STRINGA_Pens (IS)
Pen numbers, packed as two WORDs into a long word, for rendering gadget text.
STRINGA_ActivePens (IS)
Optional pen numbers, packed as two WORDs into a long word, for rendering gadget text when the gadget is active.
STRINGA_EditHook (I)
Custom string gadget edit hook.
STRINGA_EditModes (IS)
Value taken from flags defined in <intuition/sghooks.h> for initial editing modes.
STRINGA_ReplaceMode, STRINGA_FixedFieldMode, STRINGA_NoFilterMode (IS)
These three are independent Boolean equivalents to the individual flags that you can set for STRINGA_EditModes.
STRINGA_Justification (IS)
Takes the values STRINGCENTER, STRINGRIGHT, and STRINGLEFT (which is 0).
STRINGA_ExitHelp (IS)
Set this if you want the gadget to exit when the "Help" key is pressed. Look for a code of 0x5F, the rawkey code for help.

buttongclass

Class buttongclass
Superclass gadgetclass
Include File <intuition/gadgetclass.h>

A class of button gadget that continually sends interim OM_UPDATE messages to its target while the user holds down the button. The button sends a final OM_UPDATE message when the user lets go of the button. The imagery for these objects is not built directly into the gadget. Instead, a buttongclass object uses a BOOPSI image object, which it gets from its GA_Image attribute.

New Methods

None.

Changed Methods

GM_HITTEST
This method gets passed over to the button's image for processing. The button's IM_HITTEST checks for the hit.
GM_HANDLEINPUT
This method continuously issues OM_NOTIFY messages for each IECLASS_TIMER event it gets. The OM_NOTIFY message's OPUF_INTERIM flag (from opUpdate.opu_Flags) is set for all but the final OM_NOTIFY.
The OM_NOTIFY message contains one attribute/value pair, GA_ID. If the pointer is currently over the gadget image, the value of this attribute/value pair is the gadget's actual GA_ID (from the Gadget.GadgetID field). If the pointer isn't over the image, the value is the negative of the gadget's actual GA_ID.
GM_RENDER
All rendering is passed along to the GadgetRender.Image (the GA_Image attribute). This method can tell its image to render in any of four image states: IDS_INACTIVESELECTED, IDS_INACTIVENORMAL, IDS_SELECTED, or IDS_NORMAL.

Attributes

GA_IMAGE (IS)
This attribute points to the gadget's BOOPSI image. Changing this attribute will cause the gadget to refresh its imagery.

frbuttonclass

Class frbuttonclass
Superclass buttongclass
Include File <intuition/gadgetclass.h>

This is a special class of button gadget that puts a BOOPSI framing image around some other display element. This display element can be one of three things: plain text from the GA_Text attribute, an IntuiText from the GA_IntuiText attribute, or an Image from the GA_LabelImage attribute.

The user activates the gadget by clicking within the bounds of the gadget’s framing image, which it gets from the GA_Image attribute. Usually the framing image is an instance of an image class that supports the IM_FRAMEBOX method (like frameiclass). If the framing image supports the IM_FRAMEBOX method, the frbuttonclass object centers the frame image around the display element. See the imageclass description of IM_FRAMEBOX for more information.

New Methods

None.

Changed Methods

OM_NEW
When this class creates an object, it sets the object's embedded Gadget.Width and Gadget.Height fields according to the frame image in GA_Image. If the GA_Image understands the IM_FRAMEBOX method, the gadget asks the GA_Image what it dimensions would be if it had to surround the display element. If the GA_Image does not support IM_FRAMEBOX, it just copies the GA_Image image's width and height into the Gadget structure.
GM_HITTEST
The gadget delegates this method to the framing image's IM_HITFRAME method.
GM_RENDER
For this method, the frbuttonclass object first draws the framing image by sending the image an IM_DRAWFRAME message. The object then draws its display element.

Attributes

GA_Width, GA_Height (S)
These attribute correspond to the gadget's Width and Height fields. If the framing image supports IM_FRAMEBOX, changing these resizes the framing image. The framing image re-centers itself around the display element as best it can, and the frbuttonclass gadget re-renders the whole itself.
GA_DrawInfo (I)
This attribute passes a pointer to a valid DrawInfo structure. If the frbuttonclass gadget is going to frame plain text (passed to it in the GA_Text attribute), the frbuttonclass gadget requires a DrawInfo structure to properly calculate the dimensions of the text.
GA_Text, GA_IntuiText, GA_LabelImage (IS)
These attributes tell the frbuttonclass object what kind of imagery to use as its display element. See their description in the gadgetclass entry for more information.

groupgclass

Class groupgclass
Superclass gadgetclass
Include File <intuition/gadgetclass.h>

This is a class of objects that maintains an internal list of gadgets. Its purpose is to make it easier to layout a group of gadgets. Any gadgets that are a member of a groupgclass object are rendered relative to the groupgclass object's GA_Left and GA_Top attributes. As new gadgets are added to the groupgclass object, the groupgclass object's dimensions grow to enclose the new gadgets. When the groupgclass object receives an OM_DISPOSE message, it not only disposes of itself, it also disposes of all the gadgets in its list. Groupgclass does not support the gadget relative flags (GA_RelWidth, GA_RelHeight, GA_RelBottom, and GA_RelRight).

New Methods

None.

Changed Methods

OM_SET
This method passes most attributes to the superclass, but propagates changes in position to its members appropriately. Also, GA_Width and GA_Height are calculated from the position and dimension of the membership.
OM_ADDMEMBER
This method adds a gadget to the group object's list. The group object will increase the size of its select box to include the new gadget's select box. The group object moves the new member to an absolute location (by changing the new member's GA_Left and GA_Top attributes) relative to the group object's upper-left corner. Note that all members of the groupgclass object will be deleted by OM_DISPOSE.
OM_REMMEMBER
This method removes a gadget added to the group object's list with OM_ADDMEMBER. Note that all members of the groupgclass object will be deleted by OM_DISPOSE.
OM_DISPOSE
This method disposes of the groupgclass object and all its member gadgets.
OM_HITTEST
This method works its way through the list of group members, sending each a GM_HITTEST message, looking for the first member in the list that says it has been hit. This member gadget becomes the active member.
OM_RENDER
This method sends a GM_HITTEST message to each of its members.
GM_GOACTIVE/GM_GOINACTIVE/GM_HANDLEINPUT
This method passes the message to the active member's dispatcher for processing. For GM_GOINACTIVE and GM_HANDLEINPUT, the coordinates passed to the member's dispatcher in the message's gpi_Mouse.X and gpi_Mouse.Y fields are translated so that they are relative to the gadget's upper-left corner.

Attributes

GA_Left, GA_Top (IS)
These attributes correspond to the embedded Gadget.LeftEdge and Gadget.TopEdge fields. Setting these attributes in groupgclass object causes it to change its position as well as the position of each of the gadgets that have been added to the group gadget.