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

AppointmentScene

inherits from StackScene

... <- Panel <- Scene <- CardScene <- StackScene <- AppointmentScene



Operations

Get list of all operations

AboutToHide
AboutToShow
DeleteSelection
MakeActive
MakeContentProxyChoices
MakeValid
MemoryImageObject
MiniCardOrigin
NewContentProxy
Notice
StepBack


Attributes

Get list of all attributes

PrototypeContentProxy
SuppressDateInNameBar


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
StackScene: stack: StackOfCards
cardNum: Unsigned


Instance template

instance AppointmentScene 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;
          stack: nilObject;
        cardNum: 0;
end instance;

Class definition

Define Class AppointmentScene;
    inherits from StackScene;

    operation DeleteSelection();

    overrides MakeContentProxyChoices;
        // handles mailing and beaming in addition to what Scene handles; skips StackScene's implementation
    overrides MiniCardOrigin;
        // gets it from TaskEditor's InviteButton
    overrides NewContentProxy;
        // makes a DatebookContentProxy
    overrides PrototypeContentProxy;
        // returns iPrototypeDatebookContentProxy
    overrides StepBack;
    overrides SuppressDateInNameBar;
        // returns true to avoid user confusion between current date and appointment date
    
    overrides MemoryImageObject;                                    
        // returns iCurrentTask
    
    overrides AboutToShow, AboutToHide, Notice;
        // observe iCurrentTask; go back to datebook scene if it goes bad
    overrides MakeValid, MakeActive;
        // go back to the datebook scene from an invalid appointment scene
end class;