DSVLabelView.st
changeset 3188 35f40882d508
parent 2924 a1e88fa18621
child 3212 cb80f339ddfa
equal deleted inserted replaced
3187:f97f27a9d496 3188:35f40882d508
     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 
       
    14 
       
    15 
       
    16 
       
    17 "{ Package: 'stx:libwidg2' }"
    12 "{ Package: 'stx:libwidg2' }"
    18 
    13 
    19 SimpleView subclass:#DSVLabelView
    14 SimpleView subclass:#DSVLabelView
    20 	instanceVariableNames:'dataSet lineDrag columns selection enabled preferredHeight
    15 	instanceVariableNames:'dataSet lineDrag columns selection enabled preferredHeight
    21 		handleCursor tabSpacing opaqueColumnResize verticalLabelSpacing'
    16 		handleCursor tabSpacing opaqueColumnResize verticalLabelSpacing'
   442         ]
   437         ]
   443     ].
   438     ].
   444     ^ 0
   439     ^ 0
   445 ! !
   440 ! !
   446 
   441 
       
   442 !DSVLabelView methodsFor:'focus handling'!
       
   443 
       
   444 canTab
       
   445     ^ false
       
   446 !
       
   447 
       
   448 wantsFocusWithButtonPress
       
   449     "never wants the focus - view which keeps the labels
       
   450     "
       
   451     ^ false
       
   452 ! !
       
   453 
   447 !DSVLabelView methodsFor:'initialization'!
   454 !DSVLabelView methodsFor:'initialization'!
   448 
   455 
   449 initStyle
   456 initStyle
   450     <resource: #style (#'dataSet.labelView.level'
   457     <resource: #style (#'dataSet.labelView.level'
   451                        #'dataSet.labelView.verticalSpace' 
   458                        #'dataSet.labelView.verticalSpace' 
   613 ! !
   620 ! !
   614 
   621 
   615 !DSVLabelView class methodsFor:'documentation'!
   622 !DSVLabelView class methodsFor:'documentation'!
   616 
   623 
   617 version
   624 version
   618     ^ '$Header: /cvs/stx/stx/libwidg2/DSVLabelView.st,v 1.50 2006-02-22 15:01:27 cg Exp $'
   625     ^ '$Header: /cvs/stx/stx/libwidg2/DSVLabelView.st,v 1.51 2007-03-02 15:45:40 ca Exp $'
   619 ! !
   626 ! !