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

ManualDialWindow

inherits from PublicAddress

... <- TitledWindow <- GadgetWindow <- InfoWindow <- PublicAddress <- ManualDialWindow



Operations

Get list of all operations

AboutToHide
Init
ShowInfoTopic
TouchTarget


Attributes

Get list of all attributes

DialingSemaphore
QuietAnnouncement


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
Window: canCoexist: Boolean
persistentWindow: Boolean
dontAutoExtend: Boolean
ignoreGrid: Boolean
closeAfterTouch: Boolean
closeBeforeTouch: Boolean
autoPosition: Boolean
noCloseBox: Boolean
downArrowVisible: Boolean
upArrowVisible: Boolean
rightArrowVisible: Boolean
leftArrowVisible: Boolean
autoMoveContents: Boolean
searchable: Boolean
customTitleColor: Boolean
scaleWindowTitle: Boolean
noBuiltInArrows: Boolean
noZoom: Boolean
autoCopyWindow: Boolean
TitledWindow: titleColor: Unsigned
titleHeight: Micron
dependents: ObjectList
BalloonSpout: balloonDot: Dot
GadgetWindow: target: Object
InfoTopic: info: Object
InfoWindow: currentTopic: Object
infoFields: ObjectList
PublicAddress: currentAnnouncement: Announcement
ManualDialWindow: dialingSemaphore: Object
dialListView: Object
quietAnnouncement: Announcement


Instance template

instance ManualDialWindow 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;
     canCoexist: false;
persistentWindow: false;
 dontAutoExtend: false;
     ignoreGrid: false;
closeAfterTouch: false;
closeBeforeTouch: false;
   autoPosition: false;
     noCloseBox: false;
downArrowVisible: false;
 upArrowVisible: false;
rightArrowVisible: false;
leftArrowVisible: false;
autoMoveContents: false;
     searchable: false;
customTitleColor: false;
scaleWindowTitle: false;
noBuiltInArrows: false;
         noZoom: false;
 autoCopyWindow: false;
     titleColor: 0;
    titleHeight: <0.0>;
     dependents: nilObject;
     balloonDot: <0.0,0.0>;
         target: nilObject;
           info: nilObject;
   currentTopic: nilObject;
     infoFields: nilObject;
currentAnnouncement: nilObject;
dialingSemaphore: nilObject;
   dialListView: nilObject;
quietAnnouncement: nilObject;
end instance;

Class definition

Define Class ManualDialWindow;
    inherits from PublicAddress;
    
    field dialingSemaphore: Object, getter, setter;
        // manual dialing semaphore
    field dialListView: Object;
        // list view to resize
    field quietAnnouncement: Announcement, getter, setter;

    attribute DialingSemaphore: Object;
    attribute QuietAnnouncement: Announcement;
        // the announcement that was announced quitely because of manual dialing
    
    overrides AboutToHide;
        // unblock the communications
    overrides Init;
        // set up dialing semaphore
    overrides ShowInfoTopic;
        // resize to fit dialing list
    overrides TouchTarget;
        // prevent closing from just any touch
end class;