WindowBuilder.st
changeset 436 b5e56e1f367f
parent 434 eeb7ba6aede3
child 450 2a6e2eb653f0
equal deleted inserted replaced
435:68081adabd45 436:b5e56e1f367f
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 Object subclass:#WindowBuilder
    13 Object subclass:#WindowBuilder
    14         instanceVariableNames:'window application bindings focusSequence namedComponents
    14 	instanceVariableNames:'window application bindings focusSequence namedComponents
    15                 componentCreationHook applicationClass'
    15 		componentCreationHook applicationClass'
    16         classVariableNames:''
    16 	classVariableNames:''
    17         poolDictionaries:''
    17 	poolDictionaries:''
    18         category:'Interface-Support-UI'
    18 	category:'Interface-Support-UI'
    19 !
    19 !
    20 
    20 
    21 !WindowBuilder class methodsFor:'documentation'!
    21 !WindowBuilder class methodsFor:'documentation'!
    22 
    22 
    23 copyright
    23 copyright
   311 
   311 
   312     "Created: 14.2.1997 / 20:21:57 / cg"
   312     "Created: 14.2.1997 / 20:21:57 / cg"
   313     "Modified: 14.2.1997 / 20:23:23 / cg"
   313     "Modified: 14.2.1997 / 20:23:23 / cg"
   314 !
   314 !
   315 
   315 
   316 openAt:origin extent:ext andType:type
   316 openAt:origin withExtent:ext andType:type
   317     "open my window, as previously created, optionally defining the
   317     "open my window, as previously created, optionally defining the
   318      windows origin and/or extent. 
   318      windows origin and/or extent. 
   319      The type argument may be #dialog or #normal, and specifies if the view 
   319      The type argument may be #dialog or #normal, and specifies if the view 
   320      should be opened as a modal view, blocking interaction to the currently 
   320      should be opened as a modal view, blocking interaction to the currently 
   321      active view, or as a normal view."
   321      active view, or as a normal view."
   433 ! !
   433 ! !
   434 
   434 
   435 !WindowBuilder class methodsFor:'documentation'!
   435 !WindowBuilder class methodsFor:'documentation'!
   436 
   436 
   437 version
   437 version
   438     ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.24 1997-02-17 20:14:11 ca Exp $'
   438     ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.25 1997-02-18 10:09:36 ca Exp $'
   439 ! !
   439 ! !