GridBagLayoutInfo.st
changeset 2938 98e2e57624a7
parent 1431 0cc20a8f2f7c
equal deleted inserted replaced
2937:ade850cf77ae 2938:98e2e57624a7
     9  be provided or otherwise made available to, or used by, any
     9  be provided or otherwise made available to, or used by, any
    10  other person.  No title to or ownership of the software is
    10  other person.  No title to or ownership of the software is
    11  hereby transferred.
    11  hereby transferred.
    12 "
    12 "
    13 
    13 
       
    14 
       
    15 "{ Package: 'stx:libwidg2' }"
    14 
    16 
    15 Object subclass:#GridBagLayoutInfo
    17 Object subclass:#GridBagLayoutInfo
    16 	instanceVariableNames:'width height startX startY minWidth minHeight weightX weightY'
    18 	instanceVariableNames:'width height startX startY minWidth minHeight weightX weightY'
    17 	classVariableNames:''
    19 	classVariableNames:''
    18 	poolDictionaries:''
    20 	poolDictionaries:''
    59 ! !
    61 ! !
    60 
    62 
    61 !GridBagLayoutInfo methodsFor:'accessing'!
    63 !GridBagLayoutInfo methodsFor:'accessing'!
    62 
    64 
    63 height
    65 height
    64     "return the value of the instance variable 'height' (automatically generated)"
       
    65 
       
    66     ^ height
    66     ^ height
    67 
    67 
    68     "Created: / 17.1.1998 / 14:32:39 / av"
    68     "Created: / 17.1.1998 / 14:32:39 / av"
    69 !
    69 !
    70 
    70 
    71 height:something
    71 height:something
    72     "set the value of the instance variable 'height' (automatically generated)"
       
    73 
       
    74     height := something.
    72     height := something.
    75 
    73 
    76     "Created: / 17.1.1998 / 14:32:39 / av"
    74     "Created: / 17.1.1998 / 14:32:39 / av"
    77 !
    75 !
    78 
    76 
    79 minHeight
    77 minHeight
    80     "return the value of the instance variable 'minHeight' (automatically generated)"
       
    81 
       
    82     ^ minHeight
    78     ^ minHeight
    83 
    79 
    84     "Created: / 17.1.1998 / 14:32:39 / av"
    80     "Created: / 17.1.1998 / 14:32:39 / av"
    85 !
    81 !
    86 
    82 
    87 minHeight:something
    83 minHeight:something
    88     "set the value of the instance variable 'minHeight' (automatically generated)"
       
    89 
       
    90     minHeight := something.
    84     minHeight := something.
    91 
    85 
    92     "Created: / 17.1.1998 / 14:32:39 / av"
    86     "Created: / 17.1.1998 / 14:32:39 / av"
    93 !
    87 !
    94 
    88 
    95 minWidth
    89 minWidth
    96     "return the value of the instance variable 'minWidth' (automatically generated)"
       
    97 
       
    98     ^ minWidth
    90     ^ minWidth
    99 
    91 
   100     "Created: / 17.1.1998 / 14:32:39 / av"
    92     "Created: / 17.1.1998 / 14:32:39 / av"
   101 !
    93 !
   102 
    94 
   103 minWidth:something
    95 minWidth:something
   104     "set the value of the instance variable 'minWidth' (automatically generated)"
       
   105 
       
   106     minWidth := something.
    96     minWidth := something.
   107 
    97 
   108     "Created: / 17.1.1998 / 14:32:39 / av"
    98     "Created: / 17.1.1998 / 14:32:39 / av"
   109 !
    99 !
   110 
   100 
   111 startX
   101 startX
   112     "return the value of the instance variable 'startX' (automatically generated)"
       
   113 
       
   114     ^ startX
   102     ^ startX
   115 
   103 
   116     "Created: / 17.1.1998 / 14:32:39 / av"
   104     "Created: / 17.1.1998 / 14:32:39 / av"
   117 !
   105 !
   118 
   106 
   119 startX:something
   107 startX:something
   120     "set the value of the instance variable 'startX' (automatically generated)"
       
   121 
       
   122     startX := something.
   108     startX := something.
   123 
   109 
   124     "Created: / 17.1.1998 / 14:32:39 / av"
   110     "Created: / 17.1.1998 / 14:32:39 / av"
   125 !
   111 !
   126 
   112 
   127 startY
   113 startY
   128     "return the value of the instance variable 'startY' (automatically generated)"
       
   129 
       
   130     ^ startY
   114     ^ startY
   131 
   115 
   132     "Created: / 17.1.1998 / 14:32:39 / av"
   116     "Created: / 17.1.1998 / 14:32:39 / av"
   133 !
   117 !
   134 
   118 
   135 startY:something
   119 startY:something
   136     "set the value of the instance variable 'startY' (automatically generated)"
       
   137 
       
   138     startY := something.
   120     startY := something.
   139 
   121 
   140     "Created: / 17.1.1998 / 14:32:39 / av"
   122     "Created: / 17.1.1998 / 14:32:39 / av"
   141 !
   123 !
   142 
   124 
   143 weightX
   125 weightX
   144     "return the value of the instance variable 'weightX' (automatically generated)"
       
   145 
       
   146     ^ weightX
   126     ^ weightX
   147 
   127 
   148     "Created: / 17.1.1998 / 14:32:39 / av"
   128     "Created: / 17.1.1998 / 14:32:39 / av"
   149 !
   129 !
   150 
   130 
   151 weightX:something
   131 weightX:something
   152     "set the value of the instance variable 'weightX' (automatically generated)"
       
   153 
       
   154     weightX := something.
   132     weightX := something.
   155 
   133 
   156     "Created: / 17.1.1998 / 14:32:39 / av"
   134     "Created: / 17.1.1998 / 14:32:39 / av"
   157 !
   135 !
   158 
   136 
   159 weightY
   137 weightY
   160     "return the value of the instance variable 'weightY' (automatically generated)"
       
   161 
       
   162     ^ weightY
   138     ^ weightY
   163 
   139 
   164     "Created: / 17.1.1998 / 14:32:39 / av"
   140     "Created: / 17.1.1998 / 14:32:39 / av"
   165 !
   141 !
   166 
   142 
   167 weightY:something
   143 weightY:something
   168     "set the value of the instance variable 'weightY' (automatically generated)"
       
   169 
       
   170     weightY := something.
   144     weightY := something.
   171 
   145 
   172     "Created: / 17.1.1998 / 14:32:39 / av"
   146     "Created: / 17.1.1998 / 14:32:39 / av"
   173 !
   147 !
   174 
   148 
   175 width
   149 width
   176     "return the value of the instance variable 'width' (automatically generated)"
       
   177 
       
   178     ^ width
   150     ^ width
   179 
   151 
   180     "Created: / 17.1.1998 / 14:32:39 / av"
   152     "Created: / 17.1.1998 / 14:32:39 / av"
   181 !
   153 !
   182 
   154 
   183 width:something
   155 width:something
   184     "set the value of the instance variable 'width' (automatically generated)"
       
   185 
       
   186     width := something.
   156     width := something.
   187 
   157 
   188     "Created: / 17.1.1998 / 14:32:39 / av"
   158     "Created: / 17.1.1998 / 14:32:39 / av"
   189 ! !
   159 ! !
   190 
   160 
   205 ! !
   175 ! !
   206 
   176 
   207 !GridBagLayoutInfo class methodsFor:'documentation'!
   177 !GridBagLayoutInfo class methodsFor:'documentation'!
   208 
   178 
   209 version
   179 version
   210     ^ '$Header: /cvs/stx/stx/libwidg2/GridBagLayoutInfo.st,v 1.2 1999-07-06 16:49:14 cg Exp $'
   180     ^ '$Header: /cvs/stx/stx/libwidg2/GridBagLayoutInfo.st,v 1.3 2006-03-13 15:55:20 cg Exp $'
   211 ! !
   181 ! !