[operations] [attributes] [fields] [template] [definition]
[implementation] [documentation]
To use the search tool you need to use a browser which supports JAVA (c)

[next] [prev] [superclass] [next peer] [prev peer] [subclass] [index] [hierarchy]

ButtonBackdrop

inherits from Box

Object <- Viewable <- Box <- ButtonBackdrop



Operations

Get list of all operations

Draw


Attributes

Get list of all attributes

Class ButtonBackdrop defines no new attributes.


Fields

Field Type
Viewable: superview: Viewable
relativeOrigin: Dot
contentSize: Dot
viewFlags: Flags
labelStyle: TextStyle
color: Unsigned
altColor: Unsigned
shadow: Shadow
sound: Playable
HasBorder: border: Border
ButtonBackdrop: buttonBorder: Border
buttonHeight: Micron
overlap: Micron


Instance template

instance ButtonBackdrop tag;
 relativeOrigin: <0.0,0.0>;
    contentSize: <0.0,0.0>;
      viewFlags: 0x00000000;
     labelStyle: nilObject;
          color: 0;
       altColor: 0;
         shadow: nilObject;
          sound: nilObject;
         border: nilObject;
   buttonBorder: nilObject;
   buttonHeight: <0.0>;
        overlap: <0.0>;
end instance;

Class definition

Define Class ButtonBackdrop;
    inherits from Box;
    
    field buttonBorder: Border;
        // border to draw repeatedly to simulate disabled buttons
    field buttonHeight: Micron;
        // number of buttons to leave room for
    field overlap: Micron;
        
    overrides Draw;
        // draws the button border once per each section, to simulate the
        // appearance of a vertical collection of disabled buttons;
end class;