Form.st
changeset 1964 63ad6bf3676f
parent 1907 61fdff318175
child 2060 effcaa60f42d
equal deleted inserted replaced
1963:ab2d96e4e140 1964:63ad6bf3676f
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     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 
       
    13 'From Smalltalk/X, Version:3.2.10 on 25-sep-1997 at 10:03:52'                   !
       
    14 
    12 
    15 GraphicsMedium subclass:#Form
    13 GraphicsMedium subclass:#Form
    16 	instanceVariableNames:'depth localColorMap offset data fileName'
    14 	instanceVariableNames:'depth localColorMap offset data fileName'
    17 	classVariableNames:'VeryLightGreyForm LightGreyForm GreyForm DarkGreyForm
    15 	classVariableNames:'VeryLightGreyForm LightGreyForm GreyForm DarkGreyForm
    18 		VeryDarkGreyForm AdditionalBitmapDirectoryNames
    16 		VeryDarkGreyForm AdditionalBitmapDirectoryNames
  1111     ^ aCopy
  1109     ^ aCopy
  1112 ! !
  1110 ! !
  1113 
  1111 
  1114 !Form methodsFor:'editing'!
  1112 !Form methodsFor:'editing'!
  1115 
  1113 
  1116 edit
       
  1117     "open an imageEditor on the receiver"
       
  1118 
       
  1119     ImageEditView openOnImage:self
       
  1120 
       
  1121     "
       
  1122      (Form fromFile:'bitmaps/SBrowser.xbm') edit
       
  1123     "
       
  1124 
       
  1125     "Modified: 23.4.1996 / 10:16:02 / cg"
       
  1126 !
       
  1127 
       
  1128 show
  1114 show
  1129     "open an imageView on the receiver"
  1115     "open an imageView on the receiver"
  1130 
  1116 
  1131     ImageView openOnImage:self
  1117     ImageView openOnImage:self
  1132 
  1118 
  1845 ! !
  1831 ! !
  1846 
  1832 
  1847 !Form class methodsFor:'documentation'!
  1833 !Form class methodsFor:'documentation'!
  1848 
  1834 
  1849 version
  1835 version
  1850     ^ '$Header: /cvs/stx/stx/libview/Form.st,v 1.86 1997-09-25 09:24:54 stefan Exp $'
  1836     ^ '$Header: /cvs/stx/stx/libview/Form.st,v 1.87 1997-12-04 09:58:01 tz Exp $'
  1851 ! !
  1837 ! !
  1852 Form initialize!
  1838 Form initialize!