[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]

CardScene

inherits from Scene

... <- Viewable <- Box <- Panel <- Scene <- CardScene



Operations

Get list of all operations

CopyNearWithFunction
Finalize
ForwardCard
InstallCurrentCard
MakeAddressesContentList
PlaceName
RemoveCurrentCard
ReplyToCard
ToggleEnvelope


Attributes

Get list of all attributes

CurrentCard
DefaultTool
IgnoreCardDefaultTool


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
Scene: isPlace: Boolean
frozen: Boolean
useCardName: Boolean
visited: Boolean
blankTitle: Boolean
messageViewer: Boolean
suppressGrayLine: Boolean
stepBackWhenEmpty: Boolean
canDrawIn: Boolean
autoPencil: Boolean
sceneDrawer: Boolean
oneCardOnly: Boolean
ephemeral: Boolean
addToHistory: Boolean
suppressDateTime: Boolean
sceneDrawerBank: Boolean
locked: Boolean
expandMiniCards: Boolean
sceneTools: Boolean
heightResizable: Boolean
ignoreCardDefaultTool: Boolean
stepBackScene: Scene
stepBackSpot: Viewable
image: Image
additions: SceneAdditions
screen: Buffer


Instance template

instance CardScene 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;
        isPlace: false;
         frozen: false;
    useCardName: false;
        visited: false;
     blankTitle: false;
  messageViewer: false;
suppressGrayLine: false;
stepBackWhenEmpty: false;
      canDrawIn: false;
     autoPencil: false;
    sceneDrawer: false;
    oneCardOnly: false;
      ephemeral: false;
   addToHistory: false;
suppressDateTime: false;
sceneDrawerBank: false;
         locked: false;
expandMiniCards: false;
     sceneTools: false;
heightResizable: false;
ignoreCardDefaultTool: false;
  stepBackScene: nilObject;
   stepBackSpot: nilObject;
          image: nilObject;
      additions: nilObject;
         screen: nilObject;
end instance;

Class definition

Define Class CardScene;
    inherits from Scene;
    has dispatcher hintdata;
    
    // current card
    
    overrides CurrentCard;
        // returns first subview that is a card
    
    overrides DefaultTool;
        // ask the card for its default tool

    attribute IgnoreCardDefaultTool: Boolean;
        // determines whether or not to allow the card to set the default tool

    // guts

    operation InstallCurrentCard();
        // puts current card into view hierarchy
    operation RemoveCurrentCard();
        // removes current card from view hierarchy

    // name bar

    overrides PlaceName;
        // returns current card type for title bar scene name

    // object framework
    
    overrides CopyNearWithFunction;
        // clone scenes with card removed
    overrides Finalize;
        // destroy scenes with card removed

    // mail
    
    operation MakeAddressesContentList(): ObjectList;
        // make proxy choices list for keeping contacts of current card
    operation ToggleEnvelope(), safe, common;
        // switch between card and envelope of current card
    operation ForwardCard(), safe, common;
    operation ReplyToCard(), safe, common;
    
end class;