SelectionInTreeView.st
author Claus Gittinger <cg@exept.de>
Fri, 06 Sep 2013 14:24:53 +0200
changeset 4380 0c043b8a8b4b
parent 4272 7372fb880713
child 4516 1e8e11a8465c
permissions -rw-r--r--
class: SelectionInTreeView changed: #list:expandTabs:scanForNonStrings:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     1
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     3
              All Rights Reserved
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     4
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     5
 This software is furnished under a license and may be used
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    10
 hereby transferred.
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    11
"
1813
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
    12
"{ Package: 'stx:libwidg2' }"
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
    13
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    14
SelectionInListView subclass:#SelectionInTreeView
847
8395a2d05464 recompute image height whenever list changed
ca
parents: 846
diff changeset
    15
	instanceVariableNames:'validateDoubleClickBlock selectionHolder rootHolder imageWidth
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
    16
		showLines showLinesForRoot listOfNodes imageInset textInset
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
    17
		labelOffsetY lineMask itemClass lineColor computeResources
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
    18
		showRoot showDirectoryIndicator closeIndicator openIndicator
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
    19
		showDirectoryIndicatorForRoot imageOpened imageClosed imageItem
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
    20
		discardMotionEvents registeredImages supportsExpandAll
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
    21
		buildInArray drawVLinesFromLevel highlightMode editorWidget
1202
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
    22
		editorIndex editValueFgColor validateExpandabilityBlock'
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
    23
	classVariableNames:'DefaultHilightMode SelectionInset'
847
8395a2d05464 recompute image height whenever list changed
ca
parents: 846
diff changeset
    24
	poolDictionaries:''
1233
ba2244433fd4 category change
Claus Gittinger <cg@exept.de>
parents: 1214
diff changeset
    25
	category:'Views-Trees'
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    26
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    27
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    28
!SelectionInTreeView class methodsFor:'documentation'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    29
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    30
copyright
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    31
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    32
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    33
              All Rights Reserved
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    34
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    35
 This software is furnished under a license and may be used
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    36
 only in accordance with the terms of that license and with the
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    38
 be provided or otherwise made available to, or used by, any
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    39
 other person.  No title to or ownership of the software is
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    40
 hereby transferred.
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    41
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    42
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    43
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    44
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    45
documentation
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    46
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    47
    somewhat like a SelectionInListView; but specialized for hierarchical (i.e. tree-like)
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    48
    lists and adds the functions to show/hide subtrees. 
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    49
    Requires SelectionInTree as model and TreeItem (or compatible) list entries.
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    50
1431
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    51
    Notice: 
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    52
        This class obsoletes SelectionInHierarchyView, which is no longer
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    53
        maintained but kept for backward compatibility.
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    54
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    55
    Notice2: 
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    56
        Even for this class, an improved replacement now exists:
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    57
        HierarchicalListView.
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    58
        Please consider using that one.
0cc20a8f2f7c docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
    59
        (however, this class is kept for backward compatibility).
446
b6ac0f279b2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 444
diff changeset
    60
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    61
    [see also:]
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    62
        SelectionInTree
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    63
        TreeItem
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    64
        SelectionInListView
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
    65
        FileSelectionTree
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    66
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    67
    [author:]
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    68
        Claus Atzkern
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    69
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    70
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    71
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    72
examples
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    73
"
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    74
    shows the tree of smalltalk classes:
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    75
                                                                        [exBegin]
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    76
      |top sel|
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    77
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    78
      top := StandardSystemView new; extent:300@300.
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    79
      sel := SelectionInTreeView new.
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    80
      sel root:(TreeItem newAsTreeFromSmalltalkClass:Object).
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    81
      sel action:[:nr | Transcript show:'selected:'; showCR:nr].
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    82
      top add:(ScrollableView forView:sel) in:((0.0 @ 0.0 ) corner:( 1.0 @ 1.0)).
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    83
      top open.
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    84
                                                                        [exEnd]
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    85
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    86
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
    87
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    88
    same, including nil-subclasses (i.e. really all classes):
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    89
                                                                        [exBegin]
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    90
      |top sel|
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
    91
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    92
      top := StandardSystemView new; extent:300@300.
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    93
      sel := SelectionInTreeView new.
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
    94
      sel root:(TreeItem newAsTreeFromSmalltalkClass:nil).
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    95
      sel action:[:nr | Transcript show:'selected:'; showCR:nr].
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
    96
      sel lineColor:(Color red).
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    97
      top add:(ScrollableView forView:sel) in:((0.0 @ 0.0 ) corner:( 1.0 @ 1.0)).
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    98
      top open.
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
    99
                                                                        [exEnd]
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
   100
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   101
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
   102
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   103
    shows the tree of smalltalk classes; show directory indication and no
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   104
    lines.
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   105
                                                                        [exBegin]
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   106
      |top sel|
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
   107
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   108
      top := StandardSystemView new; extent:300@300.
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
   109
      sel := SelectionInTreeView new.
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   110
      sel showLines:false.
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   111
      sel showDirectoryIndicator:true.
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   112
      sel root:(TreeItem newAsTreeFromSmalltalkClass:Object).
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   113
      sel action:[:nr | Transcript show:'selected:'; showCR:nr].
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
   114
      top add:(ScrollableView forView:sel) in:((0.0 @ 0.0 ) corner:( 1.0 @ 1.0)).
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
   115
      top open.
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   116
                                                                        [exEnd]
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   117
"
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
   118
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   119
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   120
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   121
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   122
!SelectionInTreeView class methodsFor:'constants'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   123
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
   124
minImageInset
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
   125
    "returns minimum inset from directory indication to image
471
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
   126
    "
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
   127
  ^ 6
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   128
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   129
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   130
! !
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   131
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   132
!SelectionInTreeView class methodsFor:'defaults'!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   133
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   134
defaultModelClass
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   135
    "returns the default model
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   136
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   137
    ^ SelectionInTree
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   138
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   139
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   140
updateStyleCache
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   141
    "extract values from the styleSheet and cache them in class variables"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   142
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   143
    <resource: #style (#'selection.highlightMode')>
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   144
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   145
    SelectionInset     := 4.
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   146
    DefaultHilightMode := StyleSheet at:'selection.highlightMode' default:#line.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   147
    "
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   148
     self updateStyleCache
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   149
    "
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   150
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   151
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   152
! !
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   153
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   154
!SelectionInTreeView class methodsFor:'resources'!
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   155
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   156
closeIndicator
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   157
    "returns a little [+] bitmap"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   158
1624
1062c88430f9 icon fetch changed
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   159
    ^ HierarchicalListView closeIndicator
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   160
589
979ea44d23ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   161
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   162
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   163
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   164
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   165
471
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
   166
!
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
   167
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   168
imageClosed
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   169
    "returns a closed file-directory bitmap"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   170
1624
1062c88430f9 icon fetch changed
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   171
    ^ HierarchicalListView collapsedIcon
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   172
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   173
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   174
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   175
imageItem
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   176
    "returns a regular file bitmap"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   177
1624
1062c88430f9 icon fetch changed
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   178
    ^ HierarchicalListView emptyIcon
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   179
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   180
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   181
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   182
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   183
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   184
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   185
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   186
imageOpened
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   187
    "returns an opened file-directory bitmap"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   188
1624
1062c88430f9 icon fetch changed
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   189
    ^ HierarchicalListView expandedIcon
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   190
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   191
!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   192
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   193
openIndicator
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   194
    "returns a little [-] bitmap"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   195
1624
1062c88430f9 icon fetch changed
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   196
    ^ HierarchicalListView openIndicator
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   197
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   198
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   199
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   200
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   201
!SelectionInTreeView methodsFor:'accessing'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   202
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   203
highlightMode
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   204
    "get the mode how to draw a selected line:
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   205
        #line           draw whole line selected
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   206
        #label          draw label selected
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   207
    "
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   208
    ^ highlightMode
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   209
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   210
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   211
highlightMode:aMode
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   212
    "set the mode how to draw a selected line:
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   213
        #line           draw whole line selected
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   214
        #label          draw label selected
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   215
    "
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   216
    |mode|
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   217
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   218
    (mode := aMode) == #label ifFalse:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   219
        mode := #line
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   220
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   221
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   222
    mode ~~ highlightMode ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   223
        highlightMode := mode.
2659
3af857eb52fb invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 2501
diff changeset
   224
        self invalidate
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   225
    ]
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   226
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   227
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   228
itemClass
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   229
    "returns current itemClass used
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   230
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   231
    ^ itemClass
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   232
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   233
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   234
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   235
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   236
itemClass:anItemClass
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   237
    "set itemClass to be used
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   238
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   239
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   240
    (anItemClass notNil and:[anItemClass ~~ itemClass]) ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   241
        itemClass := anItemClass.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   242
        computeResources := true.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   243
        self refetchDeviceResources.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   244
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   245
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   246
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   247
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
   248
lineColor
80751cda3340 lines as point
ca
parents: 659
diff changeset
   249
    "returns user configured line color or nil
80751cda3340 lines as point
ca
parents: 659
diff changeset
   250
    "
80751cda3340 lines as point
ca
parents: 659
diff changeset
   251
    ^ lineColor
80751cda3340 lines as point
ca
parents: 659
diff changeset
   252
80751cda3340 lines as point
ca
parents: 659
diff changeset
   253
!
80751cda3340 lines as point
ca
parents: 659
diff changeset
   254
80751cda3340 lines as point
ca
parents: 659
diff changeset
   255
lineColor:aColor
80751cda3340 lines as point
ca
parents: 659
diff changeset
   256
    "returns user configured line color or nil
80751cda3340 lines as point
ca
parents: 659
diff changeset
   257
    "
80751cda3340 lines as point
ca
parents: 659
diff changeset
   258
    |col|
80751cda3340 lines as point
ca
parents: 659
diff changeset
   259
80751cda3340 lines as point
ca
parents: 659
diff changeset
   260
    col := aColor = fgColor ifTrue:[nil] ifFalse:[aColor].
80751cda3340 lines as point
ca
parents: 659
diff changeset
   261
80751cda3340 lines as point
ca
parents: 659
diff changeset
   262
    col = lineColor ifFalse:[
80751cda3340 lines as point
ca
parents: 659
diff changeset
   263
        lineColor := col.
2659
3af857eb52fb invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 2501
diff changeset
   264
        lineColor notNil ifTrue:[lineColor := lineColor onDevice:device].
3af857eb52fb invalidate checks itself for shown-flag
Claus Gittinger <cg@exept.de>
parents: 2501
diff changeset
   265
        self invalidate
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
   266
    ]
80751cda3340 lines as point
ca
parents: 659
diff changeset
   267
!
80751cda3340 lines as point
ca
parents: 659
diff changeset
   268
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   269
nodeAtIndex:anIndex
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   270
    "returns node at an index or nil
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   271
    "
785
ca
parents: 782
diff changeset
   272
    (anIndex notNil and:[anIndex between:1 and:listOfNodes size]) ifTrue:[
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   273
        ^ listOfNodes at:anIndex
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   274
    ].
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   275
  ^ nil
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   276
!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   277
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   278
root
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   279
    "gets the root of the model; the first item into list.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   280
    "
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   281
    ^ self nodeAtIndex:1
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   282
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   283
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   284
root:aRoot
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   285
    "sets the root of the model; the first item into list.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   286
    "
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   287
    aRoot notNil ifTrue:[aRoot expand].
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   288
    model root:aRoot
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   289
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
   290
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   291
textInset
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   292
    "get the left inset of the text label
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   293
    "
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   294
    ^ textInset
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   295
!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   296
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   297
textInset:anInset
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   298
    "set the left inset of the text label
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   299
    "
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   300
    anInset ~~ textInset ifTrue:[
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   301
        anInset >= 0 ifTrue:[
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   302
            textInset := anInset.
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   303
            self invalidate
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   304
        ] ifFalse:[
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   305
            self error
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   306
        ]
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   307
    ].
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   308
! !
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   309
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   310
!SelectionInTreeView methodsFor:'accessing-behavior'!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   311
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   312
drawVLinesFromLevel
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   313
    "returns the level vertical lines are drawn from;
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   314
     starting at 1 up to n
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   315
    "
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   316
    ^ drawVLinesFromLevel
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   317
!
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   318
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   319
drawVLinesFromLevel:aLevel
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   320
    "set the level vertical lines are drawn from;
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   321
     starting at 1 up to n
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   322
    "
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   323
    |lv|
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   324
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   325
    lv := (aLevel ? 1) max:1.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   326
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   327
    lv ~~ drawVLinesFromLevel ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   328
        drawVLinesFromLevel := lv.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   329
        self invalidate
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   330
    ]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   331
!
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   332
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   333
supportsExpandAll
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   334
    ^ supportsExpandAll
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   335
!
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   336
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   337
supportsExpandAll:aBool
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   338
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   339
    supportsExpandAll := aBool
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   340
!
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
   341
517
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   342
validateDoubleClickBlock
1202
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   343
    "return the conditionBlock; this block is evaluated before a doubleClick action
517
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   344
     on a node will be performed. In case of returning false, the doubleClick will
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   345
     not be handled.
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   346
   "
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   347
   ^ validateDoubleClickBlock
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   348
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   349
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   350
!
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   351
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   352
validateDoubleClickBlock:aOneArgBlock
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   353
    "set the conditionBlock; this block is evaluated before a doubleClick action
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   354
     on a node will be performed. In case of returning false, the doubleClick will
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   355
     not be handled.
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   356
   "
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   357
   validateDoubleClickBlock := aOneArgBlock
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   358
14a46095db49 add validateDoubleClickBlock
ca
parents: 514
diff changeset
   359
1202
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   360
!
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   361
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   362
validateExpandabilityBlock
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   363
    "return the expand conditionBlock; this block is evaluated before an expand due to
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   364
     a doubleClick on a node will be performed. In case of returning false, 
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   365
     the node will not be expanded.
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   366
   "
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   367
   ^ validateExpandabilityBlock
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   368
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   369
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   370
!
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   371
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   372
validateExpandabilityBlock:aOneArgBlock
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   373
    "set the expand conditionBlock; this block is evaluated before an expand due to
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   374
     a doubleClick on a node will be performed. In case of returning false, 
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   375
     the node will not be expanded.
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   376
   "
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   377
   validateExpandabilityBlock := aOneArgBlock
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   378
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
   379
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   380
! !
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   381
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   382
!SelectionInTreeView methodsFor:'accessing-channels'!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   383
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   384
rootHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   385
    "get the holder which keeps the hierarchical list entry or nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   386
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   387
    ^ rootHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   388
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   389
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   390
rootHolder:aValueHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   391
    "set the holder which keeps the hierarchical list entry or nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   392
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   393
    rootHolder notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   394
        rootHolder removeDependent:self
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   395
    ].
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   396
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   397
    (rootHolder := aValueHolder) notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   398
        rootHolder addDependent:self.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   399
        self rootFromModel.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
   400
    ].
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   401
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   402
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   403
selectionHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   404
    "get the holder which keeps a list of selected items or nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   405
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   406
    ^ selectionHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   407
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   408
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   409
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   410
selectionHolder:aHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   411
    "set the holder which keeps a list of selected items or nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   412
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   413
    selectionHolder notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   414
        selectionHolder removeDependent:self
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   415
    ].
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   416
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   417
    (selectionHolder := aHolder) notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   418
        selectionHolder addDependent:self.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   419
        self selectionFromModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   420
    ].
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   421
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   422
! !
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   423
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   424
!SelectionInTreeView methodsFor:'accessing-images'!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
   425
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   426
imageClosed
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   427
    "return the value of the instance variable 'imageClosed'.
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   428
     Thats the (default) bitmap image shown for closed folders
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   429
     (initialized to a file-directory bitmap)"
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   430
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   431
    ^ imageClosed
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   432
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   433
    "Created: 3.7.1997 / 12:34:31 / cg"
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   434
!
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   435
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   436
imageItem
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   437
    "return the value of the instance variable 'imageItem'.
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   438
     Thats the (default) bitmap image shown for regular items
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   439
     (initialized to a plain-file bitmap)"
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   440
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   441
    ^ imageItem
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   442
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   443
    "Created: 3.7.1997 / 12:34:34 / cg"
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   444
!
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   445
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   446
imageOnMyDevice:anImage
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   447
    "associate image to device and clear pixel mask (in case of realized);
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
   448
     returns the new image.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
   449
    "
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   450
    |deviceImage|
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   451
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   452
    anImage isNil ifTrue:[^ anImage].
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   453
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   454
    deviceImage := anImage onDevice:device.
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   455
    deviceImage isImage ifTrue:[
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   456
        deviceImage clearMaskedPixels.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
   457
    ].
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   458
    ^ deviceImage
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   459
"/    |img|
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   460
"/
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   461
"/    img := anImage.
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   462
"/    img notNil ifTrue:[
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   463
"/        img device ~~ device ifTrue:[
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   464
"/            img := img copy.
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   465
"/        ].
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   466
"/        img := img onDevice:device.
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   467
"/        img := img clearMaskedPixels.
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   468
"/    ].
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
   469
"/    ^ img
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   470
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   471
    "Modified: / 12.8.1998 / 12:46:38 / cg"
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   472
!
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   473
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   474
imageOpened
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   475
    "return the value of the instance variable 'imageOpened'.
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   476
     Thats the (default) bitmap image shown for opened folders
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   477
     (initialized to an open file-directory bitmap)"
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   478
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   479
    ^ imageOpened
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   480
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
   481
    "Created: 3.7.1997 / 12:34:28 / cg"
471
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
   482
! !
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
   483
1275
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   484
!SelectionInTreeView methodsFor:'accessing-look'!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   485
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   486
showDirectoryIndicator
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   487
    "returns true if directories has an open/closed indicator
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   488
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   489
  ^ showDirectoryIndicator
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   490
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   491
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   492
showDirectoryIndicator:aState
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   493
    "set or clear open/closed indicator for directories
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   494
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   495
    "show or hide lines
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   496
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   497
    aState ~~ showDirectoryIndicator ifTrue:[
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   498
        showDirectoryIndicator := aState.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   499
        self recomputeDirectoryIndicator.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   500
        self invalidate
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   501
    ].
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   502
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   503
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   504
showDirectoryIndicatorForRoot
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   505
    "returns true if root directory has an open/closed indicator if
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   506
     the common showDirectoryIndicator is enabled
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   507
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   508
    ^ showDirectoryIndicatorForRoot
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   509
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   510
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   511
showDirectoryIndicatorForRoot:aState
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   512
    "true if root directory has an open/closed indicator if
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   513
     the common showDirectoryIndicator is enabled
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   514
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   515
    aState ~~ showDirectoryIndicatorForRoot ifTrue:[
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   516
        showDirectoryIndicatorForRoot := aState.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   517
        self recomputeDirectoryIndicator.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   518
        self invalidate
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   519
    ].
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   520
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   521
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   522
showLines
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   523
    "returns true if lines are shown
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   524
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   525
  ^ showLines
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   526
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   527
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   528
showLines:aState
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   529
    "show or hide lines
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   530
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   531
    aState ~~ showLines ifTrue:[
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   532
        showLines := aState.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   533
        self invalidate
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   534
    ].
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   535
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   536
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   537
showLinesForRoot
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   538
    "returns true if root-lines are shown
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   539
    "
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   540
  ^ showLinesForRoot
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   541
!
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   542
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   543
showLinesForRoot:aState
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   544
    "show or hide lines for root(s)
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   545
    "
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   546
    aState ~~ showLinesForRoot ifTrue:[
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   547
        showLinesForRoot := aState.
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   548
        self invalidate
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   549
    ].
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   550
!
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   551
1275
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   552
showRoot
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   553
    "list with or without root
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   554
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   555
  ^ showRoot
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   556
!
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   557
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   558
showRoot:aState
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   559
    "list with or without root
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   560
    "
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   561
    showRoot ~~ aState ifTrue:[
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   562
        model showRoot:(showRoot := aState).
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   563
    ].
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   564
! !
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
   565
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   566
!SelectionInTreeView methodsFor:'change & update'!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   567
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   568
modelChanged:what with:aPara
2483
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
   569
    "hierarchical list changed"
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
   570
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   571
    |start size visLn h y0 y1 cY parent pvLv ndLv|
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   572
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   573
    aPara isNil ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   574
        what == #list ifTrue:[ self getListFromModel ]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   575
                     ifFalse:[ super update:what with:aPara from:model ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   576
        ^ self
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   577
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   578
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   579
    (what == #insertCollection: or:[what == #removeFrom:]) ifFalse:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   580
        what == #at:     ifTrue:[ ^ self redrawLine:aPara ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   581
        what == #replace ifTrue:[ ^ self invalidateRepairNow:true ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   582
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   583
        ^ super update:what with:aPara from:model.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   584
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   585
    list := self listFromModel.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   586
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   587
    shown ifFalse:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   588
        ^ self contentsChanged
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   589
    ].
2483
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
   590
    (self sensor hasExposeEventFor:self) ifTrue:[       
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
   591
        "/ outstanding expose events
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   592
        self invalidateRepairNow:true.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   593
        ^ self contentsChanged
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   594
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   595
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   596
    start  := aPara at:1.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   597
    size   := aPara at:2.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   598
    parent := aPara at:3.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   599
860
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
   600
    what == #removeFrom: ifTrue:[
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
   601
        size := size - start + 1
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
   602
    ].
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
   603
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   604
    start > 1 ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   605
        pvLv  := (list at:start - 1) level.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   606
        ndLv  := parent level + 1.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   607
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   608
        ndLv < pvLv ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   609
            what == #insertCollection: ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   610
                visLn := start + size.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   611
            ] ifFalse:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   612
                visLn := start.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   613
            ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   614
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   615
            (visLn > list size or:[(list at:visLn) level ~~ ndLv]) ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   616
                [(start := start - 1) ~~ 1] whileTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   617
                    (list at:start) level <= ndLv ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   618
                        self redrawFromLine:start.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   619
                      ^ self contentsChanged.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   620
                    ]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   621
                ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   622
                self invalidateRepairNow:true.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   623
              ^ self contentsChanged
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   624
            ]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   625
        ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   626
        self redrawIconAndIndicatorAt:(start - 1)
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   627
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   628
    (visLn := self listLineToVisibleLine:start) isNil ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   629
        ^ self contentsChanged
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   630
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   631
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   632
    h  := size * fontHeight.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   633
    y0 := self yOfVisibleLine:visLn.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   634
    y1 := y0 + h.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   635
    cY := height - y1 - 1.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   636
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   637
    cY < 40 ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   638
        self redrawFromLine:start.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   639
    ] ifFalse:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   640
        self catchExpose.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   641
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   642
        what == #insertCollection: ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   643
            self copyFrom:self x:0 y:y0 toX:0 y:y1 width:width height:cY async:true.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   644
        ] ifFalse:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   645
            self copyFrom:self x:0 y:y1 toX:0 y:y0 width:width height:cY async:true.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   646
            y0 := y0 + cY.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   647
            h  := height - y0.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   648
        ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   649
        self redrawX:0 y:y0 width:width height:h.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   650
        self waitForExpose.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   651
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   652
    device flush.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   653
    self contentsChanged.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   654
!
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   655
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   656
update:something with:aParameter from:aModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   657
    "one of my models changed its value
785
ca
parents: 782
diff changeset
   658
    "
ca
parents: 782
diff changeset
   659
    |idx|
ca
parents: 782
diff changeset
   660
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   661
    aModel == rootHolder ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   662
        ^ self rootFromModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   663
    ].
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   664
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   665
    aModel == selectionHolder ifTrue:[
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
   666
        ^ self selectionFromModel   
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   667
    ].
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   668
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
   669
    aModel == model ifTrue:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   670
        ^ self modelChanged:something with:aParameter
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   671
    ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   672
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   673
    (aModel isKindOf:TreeItem) ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   674
        (something == #size or:[something == #children]) ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   675
            model recomputeList.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   676
            ^ self
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   677
        ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   678
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   679
        (idx := self indexOfNode:aModel) ~~ 0 ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   680
            something == #value ifTrue:[  
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   681
                ^ self redrawLine:idx.
785
ca
parents: 782
diff changeset
   682
            ].
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   683
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   684
            something == #indication ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   685
                ^ self redrawIndicatorLine:idx.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   686
            ].
1308
b04e4fb53fb4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   687
            "/ assume that the nodes string has changed
b04e4fb53fb4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   688
            ^ self redrawLine:idx.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   689
        ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   690
        ^ self
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
   691
    ].
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   692
    super update:something with:aParameter from:aModel.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   693
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   694
! !
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
   695
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   696
!SelectionInTreeView methodsFor:'drawing'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   697
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   698
drawLine:line atX:atX inVisible:visLineNr with:fg and:bg
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   699
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   700
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   701
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   702
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   703
drawLine:line fromX:x inVisible:visLineNr with:fg and:bg
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   704
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   705
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   706
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   707
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   708
drawLine:line inVisible:visLineNr with:fg and:bg
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   709
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   710
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   711
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   712
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   713
drawVisibleLine:visLineNr col:col with:fg and:bg
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   714
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   715
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   716
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   717
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   718
drawVisibleLine:visLineNr from:startCol to:endCol with:fg and:bg
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   719
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   720
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   721
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   722
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   723
drawVisibleLine:visLineNr from:startCol with:fg and:bg
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   724
    self drawFromVisibleLine:visLineNr to:visLineNr with:fg and:bg
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   725
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   726
!
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   727
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   728
redrawFromVisibleLine:startVisLineNr to:endVisLineNr
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   729
    self redrawX:0
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   730
               y:(self yOfVisibleLine:startVisLineNr)
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   731
           width:width
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   732
          height:(endVisLineNr - startVisLineNr + 1 * fontHeight)
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   733
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   734
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   735
!
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
   736
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   737
redrawIconAndIndicatorAt:aLnNr
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   738
    |visLineNr x0 x1 lv|
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
   739
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
   740
    shown ifTrue:[
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   741
        visLineNr := self listLineToVisibleLine:aLnNr.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   742
        visLineNr notNil ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   743
            lv := (listOfNodes at:aLnNr) level.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   744
            x1 := (imageWidth + (self xOfFigureLevel:lv)) min:width.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   745
            x0 := (self xOfFigureLevel:(lv - 1)) max:0.
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
   746
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   747
            (x0 > width or:[x1 < 0]) ifFalse:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   748
                self redrawX:x0
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   749
                           y:(self yOfVisibleLine:visLineNr)
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   750
                       width:(x1 - x0)
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   751
                      height:fontHeight
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   752
            ]
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
   753
        ]
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   754
    ].
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
   755
!
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
   756
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   757
redrawIndicatorLine:aLineNr
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   758
    "redraw the directory indicator for a line
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   759
    "
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   760
    |node ext img visLn
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   761
     x  "{ Class:SmallInteger }"
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   762
     y  "{ Class:SmallInteger }"
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   763
     dX "{ Class:SmallInteger }"
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   764
    |
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   765
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   766
    (     shown
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   767
     and:[showDirectoryIndicator
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   768
     and:[(visLn := self listLineToVisibleLine:aLineNr) notNil]]
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   769
    ) ifFalse:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   770
        ^ self
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   771
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   772
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   773
    node := listOfNodes at:aLineNr.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   774
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   775
    (node parent notNil or:[showDirectoryIndicatorForRoot]) ifFalse:[
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   776
        ^ self
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   777
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   778
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   779
    x := imageWidth // 2.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
   780
    x := x + (self xOfFigureLevel:(node level - 1)).
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   781
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   782
    "/ draw directory indicator
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   783
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   784
    img := node isCollapsable ifTrue:[openIndicator] ifFalse:[closeIndicator].
1620
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   785
    img notNil ifTrue:[
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   786
        ext := img extent // 2.
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   787
        dX  := ext x.
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   788
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   789
        (x + dX > 0 and:[(x := x - dX) < (width - margin)]) ifTrue:[
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   790
            self paintOnIsSelected:(self isInSelection:aLineNr).
1620
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   791
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   792
            y := (self yOfVisibleLine:visLn) + (fontHeight // 2) - 1.
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   793
            self displayForm:img x:x y:(y - ext y)
99124a1a1342 care for nil-image when drawing indicator line
Claus Gittinger <cg@exept.de>
parents: 1477
diff changeset
   794
        ].
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   795
    ].
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   796
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   797
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   798
redrawVisibleLine:visLineNr
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   799
    self drawFromVisibleLine:visLineNr to:visLineNr with:fgColor and:bgColor
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   800
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   801
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   802
redrawVisibleLine:visLineNr from:startCol to:endCol
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   803
    self drawFromVisibleLine:visLineNr to:visLineNr with:fgColor and:bgColor
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   804
! !
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   805
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   806
!SelectionInTreeView methodsFor:'drawing basics'!
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   807
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   808
drawFromVisibleLine:startVisLineNr to:endVisLineNr with:fg and:bg
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   809
    "redraw a visible line range with clearing the background
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   810
    "
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   811
    |y h|
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   812
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   813
    y := self yOfVisibleLine:startVisLineNr.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   814
    h := endVisLineNr - startVisLineNr + 1 * fontHeight.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   815
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   816
    y + h > height ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   817
        h := height - y
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   818
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   819
    self redrawX:0 y:y width:width height:h.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   820
!
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   821
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   822
drawVHLinesX:x0 y:y0 toX:x1 start:start stop:stop
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   823
    "redraw from line to line without clearing the background
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   824
    "
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   825
    |node prevNode parent p1 p2 showVLines showHLine lv nxtPrnt
1305
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   826
     showRootNot isFirst
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   827
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   828
     x        "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   829
     y        "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   830
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   831
     yTop     "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   832
     yBot     "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   833
     yCtr     "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   834
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   835
     begHLnY  "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   836
     begHLnX  "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   837
     endHLnX  "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   838
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   839
     widthLvl "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   840
     offsHLnX "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   841
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   842
     level    "{ Class:SmallInteger }"
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   843
     startLvI "{ Class:SmallInteger }"
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   844
     startLvX "{ Class:SmallInteger }"
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   845
     limitLvI "{ Class:SmallInteger }"
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   846
     limitLvX "{ Class:SmallInteger }"
3692
af710a4ee08a do not draw dotted line under the icon (for transparent icons)
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
   847
     xIcon
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   848
    |
1305
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   849
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   850
    yBot     := y0.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   851
    yCtr     := yBot - (fontHeight // 2).
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   852
    widthLvl := imageInset + imageWidth.
3692
af710a4ee08a do not draw dotted line under the icon (for transparent icons)
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
   853
    offsHLnX := (imageWidth // 2) + (self xOfFigureLevel:-1).
af710a4ee08a do not draw dotted line under the icon (for transparent icons)
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
   854
    xIcon := imageWidth // 2.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   855
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   856
    parent   := 4711.                           "/ to force a recompute
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   857
    prevNode := 4711.                           "/ to force a recomputation of the level
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   858
3456
fa55a397f4c9 changed #drawVHLinesX:y:toX:start:stop:
Stefan Vogel <sv@exept.de>
parents: 3423
diff changeset
   859
    self maskOrigin:(self viewOrigin + (0 @ 1) \\ (lineMask extent)).
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   860
    self paint:lineColor on:bgColor.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   861
    self mask:lineMask.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   862
    begHLnY  := y0.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   863
    startLvI := self smallestLevelOfNodesBetween:start and:stop.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   864
    startLvX := self xOfFigureLevel:startLvI.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   865
    limitLvI := drawVLinesFromLevel + 1.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   866
    limitLvX := limitLvI * widthLvl + offsHLnX.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   867
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   868
    buildInArray atAllPut:0.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   869
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   870
    start == 1 ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   871
        begHLnY := yCtr + fontHeight.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   872
    ].
1305
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   873
    showRootNot := showRoot not.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   874
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   875
    start to:stop do:[:anIndex|
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   876
        node := listOfNodes at:anIndex.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   877
        yTop := yBot - 1.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   878
        yBot := yBot + fontHeight.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   879
        yCtr := yCtr + fontHeight.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   880
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   881
        (nxtPrnt := node parent) ~~ parent ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   882
            parent := nxtPrnt.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   883
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   884
            prevNode == parent ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   885
                level := level + 1.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   886
                begHLnX := endHLnX.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   887
            ] ifFalse:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   888
                level   := node level.
1309
d87d431dad62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
   889
                begHLnX := level * widthLvl + offsHLnX.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   890
            ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   891
1305
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   892
            isFirst    := parent isNil or:[(showRootNot and:[level == 2])].
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   893
            endHLnX    := begHLnX + widthLvl.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   894
            showVLines := begHLnX >= x0 and:[level > drawVLinesFromLevel].
1305
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   895
            showHLine  := x0 < endHLnX and:[x1 > begHLnX].
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   896
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   897
            (showHLine and:[isFirst]) ifTrue:[
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   898
                showHLine := showDirectoryIndicatorForRoot and:[showDirectoryIndicator]
c8f2fe1fac85 fix drawing horizontal lines for the root element(s)
Claus Gittinger <cg@exept.de>
parents: 1278
diff changeset
   899
            ]
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   900
        ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   901
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   902
        showHLine ifTrue:[
3692
af710a4ee08a do not draw dotted line under the icon (for transparent icons)
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
   903
            self displayLineFromX:begHLnX y:yCtr toX:endHLnX-xIcon y:yCtr
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   904
        ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   905
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   906
        showVLines ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   907
            y  := (parent basicLastChild == node) ifTrue:[yCtr] ifFalse:[yBot].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   908
            x  := begHLnX.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   909
            p2 := parent.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   910
            lv := level - 1.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   911
            self displayLineFromX:x y:begHLnY toX:x y:y.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   912
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   913
            [((p1 := p2 parent) notNil and:[(x := x - widthLvl) >= limitLvX])] whileTrue:[
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   914
                (p1 basicLastChild ~~ p2 and:[x <= x1]) ifTrue:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   915
                    x >= startLvX ifTrue:[
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   916
                        (isFirst not or:[showLinesForRoot]) ifTrue:[
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   917
                            self displayLineFromX:x y:yTop toX:x y:yBot
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
   918
                        ]
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   919
                    ] ifFalse:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   920
                        buildInArray at:lv put:yBot
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   921
                    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   922
                ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   923
                lv := lv - 1.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   924
                p2 := p1
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   925
            ]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   926
        ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   927
        prevNode := node.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   928
        begHLnY  := yCtr.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   929
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   930
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   931
    "/
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   932
    "/ draw outstanding verical lines to left
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   933
    "/
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   934
    x := limitLvX.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   935
    y := (start ~~ 1) ifTrue:[y0] ifFalse:[y0 + (fontHeight // 2)].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   936
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   937
    limitLvI to:startLvI do:[:i|
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   938
        (yBot := buildInArray at:i) ~~ 0 ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   939
            self displayLineFromX:x y:y toX:x y:yBot
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   940
        ].
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
   941
        x := x + widthLvl.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   942
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
   943
    self mask:nil.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   944
!
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
   945
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   946
drawVisibleLineSelected:visLineNr with:fg and:bg
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   947
    "redraw a single line as selected."
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   948
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   949
    (self visibleLineToListLine:visLineNr) isNil ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   950
        ^ super drawVisibleLine:visLineNr with:fg and:bg
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   951
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   952
    self redrawX:0
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   953
               y:(self yOfVisibleLine:visLineNr)
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   954
           width:width
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   955
          height:fontHeight
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   956
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   957
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   958
paintOnIsSelected:isSelected
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   959
    isSelected ifTrue:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   960
        self hasFocus ifTrue:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   961
            self paint:hilightFgColor on:hilightBgColor
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   962
        ] ifFalse:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   963
            self paint:hilightFgColorNoFocus on:hilightBgColorNoFocus
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   964
        ]
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   965
    ] ifFalse:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   966
        self paint:fgColor on:bgColor.
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   967
    ].
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   968
!
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
   969
902
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   970
redrawElement:anIndex
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   971
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   972
    |vln x0 xT y|
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   973
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   974
    shown ifTrue:[
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   975
        (     highlightMode ~~ #label
908
749621e1a1d6 bugFix in redrawElement:
ca
parents: 902
diff changeset
   976
          or:[(vln := self listLineToVisibleLine:anIndex) isNil
749621e1a1d6 bugFix in redrawElement:
ca
parents: 902
diff changeset
   977
          or:[anIndex > listOfNodes size]]
902
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   978
        ) ifTrue:[
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   979
            super redrawElement:anIndex
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   980
        ] ifFalse:[
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   981
            y := self yOfVisibleLine:vln.
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   982
            xT := self xOfStringLevel:((listOfNodes at:anIndex) level).
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   983
            x0 := xT - textInset.
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   984
            self paint:bgColor.
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   985
            self fillRectangleX:x0 y:y width:(width - x0) height:fontHeight.
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   986
            self redrawLabelAt:xT y:y index:anIndex
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   987
        ]
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   988
    ]
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   989
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   990
!
de7a2459bd3b faster drawing of select/unselect changes
ca
parents: 900
diff changeset
   991
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
   992
redrawLabelAt:x y:yTop index:anIndex
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   993
    |isSel y0 x0 w label node value xV wV|
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   994
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   995
    node  := listOfNodes at:anIndex.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   996
    label := node name.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   997
    isSel := self isInSelection:anIndex.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   998
    xV    := 0.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
   999
    wV    := 0.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1000
    y0    := yTop + (fontHeight // 2) + labelOffsetY.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1001
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1002
    (value := node printableEditValue) notNil ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1003
        xV := (self xOfValueNode:node) - SelectionInset
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1004
    ].
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1005
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1006
    highlightMode == #label ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1007
        x0 := x + 4.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1008
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1009
        isSel ifTrue:[
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1010
            w  := (label notNil ifTrue:[label widthOn:self] ifFalse:[60]) + 8.
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1011
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1012
            self hasFocus ifTrue:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1013
                self paint:hilightBgColor.
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1014
            ] ifFalse:[
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1015
                self paint:hilightBgColorNoFocus.
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1016
            ].                
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1017
            self fillRectangleX:x y:yTop width:w height:fontHeight.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1018
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1019
            (value notNil and:[(editorWidget isNil or:[editorIndex ~~ anIndex])]) ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1020
                wV := SelectionInset + SelectionInset + (value widthOn:self).
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1021
                self fillRectangleX:xV y:yTop width:wV height:fontHeight.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1022
            ]
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1023
        ]
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1024
    ] ifFalse:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1025
        x0 := x
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1026
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1027
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1028
    label notNil ifTrue:[
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1029
        self paintOnIsSelected:isSel.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1030
        self displayOpaqueString:label x:x0 y:y0.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1031
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1032
        value notNil ifTrue:[
1175
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1033
            isSel ifFalse:[
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1034
                self paint:editValueFgColor on:bgColor
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1035
            ].
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1036
            self displayOpaqueString:value x:(xV + SelectionInset) y:y0
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1037
        ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1038
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1039
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1040
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1041
    (isSel and:[highlightMode == #label]) ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1042
        self redrawSelFrameAtX:x y:yTop toX:(x + w).
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1043
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1044
        wV ~~ 0 ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1045
            self redrawSelFrameAtX:xV y:yTop toX:(xV + wV)
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1046
        ].
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1047
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1048
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1049
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1050
redrawLinesX:x0 y:y0 toX:x1 start:start stop:stop
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1051
    "redraw from line to line without clearing the background
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1052
    "
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1053
    |node prevNode parent icon showIndc showIcon showText nxtPrnt
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1054
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1055
     end      "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1056
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1057
     yBot     "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1058
     yCtr     "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1059
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1060
     xIndc    "{ Class:SmallInteger }"
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1061
     xIcon    "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1062
     xText    "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1063
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1064
     widthLvl "{ Class:SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1065
     insetTxt "{ Class:SmallInteger }"
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1066
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1067
     offIndcX "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1068
     offIndcY "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1069
     offIconX "{ Class:SmallInteger }"
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1070
    |
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1071
    (end := stop min:(listOfNodes size)) < start ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1072
        ^ self
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1073
    ].
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1074
    yBot     := y0.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1075
    yCtr     := yBot - (fontHeight // 2).
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1076
    widthLvl := imageInset + imageWidth.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1077
    insetTxt := imageWidth + textInset.
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1078
    offIconX := self xOfFigureLevel:0.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1079
    showIndc := false.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1080
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1081
    showDirectoryIndicator ifTrue:[
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1082
        offIndcX := imageWidth // 2 - widthLvl.
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1083
        offIndcY := 0.
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1084
        openIndicator notNil ifTrue:[
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1085
            icon     := openIndicator extent // 2.
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1086
            offIndcX := offIndcX - icon x.
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1087
            offIndcY := icon y.
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1088
        ]
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1089
    ].
785
ca
parents: 782
diff changeset
  1090
ca
parents: 782
diff changeset
  1091
    showLines ifTrue:[
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1092
        self drawVHLinesX:x0 y:y0 toX:x1 start:start stop:end
785
ca
parents: 782
diff changeset
  1093
    ].
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
  1094
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1095
    parent   := 4711.                           "/ to force a recompute
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1096
    prevNode := 4711.                           "/ to force a recomputation of the level
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1097
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1098
    start to:end do:[:anIndex|
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1099
        node := listOfNodes at:anIndex.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1100
        yBot := yBot + fontHeight.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1101
        yCtr := yCtr + fontHeight.
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
  1102
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1103
        (nxtPrnt := node parent) ~~ parent ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1104
            parent := nxtPrnt.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1105
            xIcon  := prevNode == parent ifTrue:[xIcon + widthLvl]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1106
                                        ifFalse:[node level * widthLvl + offIconX].
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
  1107
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1108
            xText    := xIcon + insetTxt.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1109
            showIcon := xIcon < x1 and:[xText > x0].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1110
            showText := xText < x1.
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1111
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1112
            showDirectoryIndicator ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1113
                xIndc := xIcon + offIndcX.
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
  1114
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1115
                showIndc := (      (parent notNil or:[showDirectoryIndicatorForRoot])
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1116
                              and:[(xIcon > x0 and:[xIndc < x1])]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1117
                            )
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1118
            ]
785
ca
parents: 782
diff changeset
  1119
        ].
481
91b3f1788cea redraw mechanism
ca
parents: 480
diff changeset
  1120
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1121
        (showIcon and:[(icon := self figureFor:node) notNil]) ifTrue:[
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1122
            self displayForm:icon x:xIcon y:(yCtr - (icon height // 2))
770
f197d1f5a246 fix clipping
ca
parents: 769
diff changeset
  1123
        ].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1124
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1125
        showText ifTrue:[
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1126
            self redrawLabelAt:xText y:(yBot - fontHeight) index:anIndex
485
26e87be7210f showDirectoryIndicator
ca
parents: 483
diff changeset
  1127
        ].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1128
        (showIndc and:[node showIndicator]) ifTrue:[
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1129
            icon := node isCollapsable ifTrue:[openIndicator] ifFalse:[closeIndicator].
1091
2e86163cfb17 care for non-existing icon image
Claus Gittinger <cg@exept.de>
parents: 1072
diff changeset
  1130
            icon notNil ifTrue:[
2e86163cfb17 care for non-existing icon image
Claus Gittinger <cg@exept.de>
parents: 1072
diff changeset
  1131
                self displayForm:icon x:xIndc y:(yCtr - offIndcY)
2e86163cfb17 care for non-existing icon image
Claus Gittinger <cg@exept.de>
parents: 1072
diff changeset
  1132
            ]
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1133
        ].
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1134
        prevNode := node.
769
15fafccfed86 optimize redraw routine
ca
parents: 764
diff changeset
  1135
    ]
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1136
1091
2e86163cfb17 care for non-existing icon image
Claus Gittinger <cg@exept.de>
parents: 1072
diff changeset
  1137
    "Modified: / 22.8.1998 / 12:56:50 / cg"
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1138
!
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1139
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1140
redrawSelFrameAtX:x0 y:y0 toX:x1
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1141
    "redraw selection frame for a line
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1142
    "
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1143
    |
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1144
     w   "{ Class: SmallInteger }"
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1145
     y   "{ Class: SmallInteger }" 
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1146
     x   "{ Class: SmallInteger }" 
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1147
    |
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1148
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1149
    hilightFrameColor notNil ifTrue:[
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1150
        hilightLevel == 0 ifTrue:[
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1151
            self paint:hilightFrameColor.
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1152
1105
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1153
            highlightMode == #line ifTrue:[
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1154
                self displayLineFromX:x0 y:y0 toX:x1 y:y0.
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1155
                y := y0 + fontHeight - 1.
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1156
                self displayLineFromX:x0 y:y toX:x1 y:y.
1105
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1157
            ] ifFalse:[
3176
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1158
                self displayRectangleX:x0 y:y0 width:x1 - x0 height:fontHeight.
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1159
            ].
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1160
            ^ self
4785f8b58e64 support focus highlighting
ca
parents: 2689
diff changeset
  1161
        ].
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1162
    ] ifFalse:[
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1163
        hilightStyle == #motif ifTrue:[
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1164
            self paint:bgColor.
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1165
            y := y0 + 1.
1105
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1166
            highlightMode == #line ifTrue:[
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1167
                self displayLineFromX:x0 y:y toX:x1 y:y.
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1168
                y := y0 + fontHeight - 2.
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1169
                self displayLineFromX:x0 y:y toX:x1 y:y.
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1170
            ] ifFalse:[
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1171
                self displayRectangleX:x0 + 1 y:y width:x1 - x0 - 2 height:fontHeight - 2
c79bb5824b74 draw closed frames around selections if highlightMode ~~ #line
tz
parents: 1091
diff changeset
  1172
            ]
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1173
        ]
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1174
    ].
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1175
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1176
    hilightLevel ~~ 0 ifTrue:[
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1177
        "/ draw edge
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1178
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1179
        highlightMode == #line ifTrue:[
2015
5a83ee792cc3 eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2014
diff changeset
  1180
            w := ((width - (2 * margin)) max:(self widthOfContents)) + viewOrigin x.
5a83ee792cc3 eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2014
diff changeset
  1181
            x := margin - viewOrigin x.
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1182
        ] ifFalse:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1183
            w := x1 - x0.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1184
            x := x0.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1185
        ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1186
        self drawEdgesForX:x y:y0 width:w height:fontHeight level:hilightLevel.
792
5a0af910519e bug fix:
ca
parents: 785
diff changeset
  1187
    ]
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1188
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1189
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1190
redrawX:x y:y width:w height:h
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1191
    "a region must be redrawn"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1192
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1193
    |savClip startLn sel
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1194
     y0       "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1195
     y1       "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1196
     visStart "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1197
     visEnd   "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1198
     stopLn   "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1199
     maxY     "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1200
     maxX     "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1201
     dltLine  "{ Class:SmallInteger }"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1202
     startY   "{ Class:SmallInteger }"|
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1203
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1204
    shown ifFalse:[^ self].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1205
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1206
    visStart := self visibleLineOfY:(y + 1).
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1207
    startLn  := self visibleLineToAbsoluteLine:visStart.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1208
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1209
    self paint:bgColor.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1210
    self fillRectangleX:x y:y width:w height:h.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1211
    startLn isNil ifTrue:[ ^ self ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1212
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1213
    sel     := nil.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1214
    maxX    := x + w.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1215
    maxY    := y + h.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1216
    visEnd  := self visibleLineOfY:maxY.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1217
    startY  := self yOfVisibleLine:visStart.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1218
    dltLine := startLn - visStart.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1219
    stopLn  := dltLine + visEnd.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1220
    savClip := clipRect.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1221
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1222
    self clippingRectangle:(Rectangle left:x top:y width:w height:h).
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1223
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1224
    (highlightMode == #line and:[self hasSelection]) ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1225
        "/ redraw the background for all selected lines in the invalid range
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1226
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1227
        self selectionDo:[:lnNr|
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1228
            (lnNr between:startLn and:stopLn) ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1229
                sel isNil ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1230
                    sel := OrderedCollection new.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1231
                    self paint:hilightBgColor.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1232
                ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1233
                sel add:(y0 := self yOfVisibleLine:(lnNr - dltLine)).
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1234
                y1 := y0 + fontHeight min:maxY.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1235
                y0 := y0 max:y.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1236
                self fillRectangleX:x y:y0 width:w height:y1 - y0.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1237
            ]
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1238
        ]
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1239
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1240
    self redrawLinesX:x y:startY toX:maxX start:startLn stop:stopLn.
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1241
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1242
    "/ draw selection frames
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1243
    sel notNil ifTrue:[
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1244
        sel do:[:y0| self redrawSelFrameAtX:x y:y0 toX:maxX]
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1245
    ].
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1246
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1247
    self clippingRectangle:savClip.
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1248
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1249
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1250
!SelectionInTreeView methodsFor:'enumerating'!
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1251
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1252
detectNode:aOneArgBlock
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1253
    "evaluate the argument, aBlock for each node in the list until
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1254
     the block returns true; in this case return the node which caused
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1255
     the true evaluation. If none node is detected, nil is returned.
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1256
    "
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1257
  ^ listOfNodes detect:aOneArgBlock ifNone:nil
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1258
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1259
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1260
selectedNodesDo:aOneArgBlock
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1261
    "evaluate the block on each node selected
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1262
    "
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  1263
    self selectionDo:[:i| aOneArgBlock value:(listOfNodes at:i) ]
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1264
! !
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1265
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1266
!SelectionInTreeView methodsFor:'event handling'!
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1267
3744
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1268
activateMenu
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1269
    |node menu|
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1270
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1271
    node := self selectedNode.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1272
    node notNil ifTrue:[
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1273
        menu := node middleButtonMenu.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1274
        menu notNil ifTrue:[
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1275
            menu isCollection ifTrue:[
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1276
                |appl|
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1277
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1278
                menu := Menu decodeFromLiteralArray:menu.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1279
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1280
                (appl := self application) notNil ifTrue:[
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1281
                    menu findGuiResourcesIn:appl
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1282
                ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1283
                "/ menu receiver:appl. -- now done in findGuiResources ...
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1284
            ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1285
            self startUpMenu:menu.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1286
            ^ self.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1287
        ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1288
    ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1289
    super activateMenu
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1290
!
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1291
639
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1292
buttonMotion:buttonMask x:x y:y
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1293
    "mouse-move while button was pressed - handle selection changes"
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1294
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1295
    discardMotionEvents ifFalse:[
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1296
        super buttonMotion:buttonMask x:x y:y
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1297
    ]
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1298
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1299
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1300
!
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1301
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1302
buttonMultiPress:button x:x y:y
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1303
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1304
    (self indicatiorLineForButton:button atX:x y:y) == 0 ifTrue:[
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1305
        ^ super buttonMultiPress:button x:x y:y
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1306
    ].
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1307
    "/ discard doubleClick on indicator
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1308
!
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1309
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1310
buttonPress:button x:x y:y
3744
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1311
    "handle button press event"
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1312
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1313
    |node|
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1314
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1315
    (button == 1) ifTrue:[
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1316
        self handleSelectButtonAtX:x y:y.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1317
3744
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1318
        (editorWidget isNil
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1319
         and:[(node := self selectedNode) notNil
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1320
         and:[node canEdit
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1321
         and:[x >= (self xOfValueNode:node)]]]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1322
        ) ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1323
            self openEditor
3744
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1324
        ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1325
        ^ self.
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1326
    ].
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1327
    super buttonPress:button x:x y:y
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1328
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1329
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1330
buttonRelease:button x:x y:y
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1331
    "stop any autoscroll"
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1332
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1333
    discardMotionEvents ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1334
        clickPosition := nil.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1335
        discardMotionEvents := false.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1336
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1337
    super buttonRelease:button x:x y:y
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1338
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1339
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1340
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1341
doubleClicked
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1342
    "handle a double click; collapse or expand selected entry
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1343
     in case of having children
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1344
    "
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
  1345
    |node |
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1346
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1347
    (node := self selectedNode) notNil ifTrue:[
1202
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1348
        (validateDoubleClickBlock isNil
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1349
         or:[(validateDoubleClickBlock value:node) ~~ false]) ifTrue:[
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1350
            (validateExpandabilityBlock isNil
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1351
             or:[(validateExpandabilityBlock value:node) ~~ false]) ifTrue:[
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1352
                self selectedNodeExpand:(node isExpandable).
b9a3beb20ca7 added an extra validateExpandability block,
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1353
            ].
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
  1354
            node hasChildren ifFalse:[
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
  1355
                super doubleClicked
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
  1356
            ]
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1357
        ]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1358
    ]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1359
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1360
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1361
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1362
handleSelectButtonAtX:x y:y
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1363
    "handle a select button click
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1364
    "
1268
37066c039eb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  1365
    |node lineNr sensor isExpd|
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1366
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1367
    lineNr := self indicatiorLineForButton:#select atX:x y:y.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1368
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1369
    lineNr == 0 ifTrue:[
3744
b956bec8751b cleanup
Claus Gittinger <cg@exept.de>
parents: 3739
diff changeset
  1370
        ^ super buttonPress:1 x:x y:y
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1371
    ].
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1372
    node := listOfNodes at:lineNr.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1373
639
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1374
    discardMotionEvents := true.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1375
    dragIsActive  := false.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1376
    clickPosition := nil.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1377
639
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1378
    self hasSelection ifTrue:[
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1379
        (selectConditionBlock isNil or:[selectConditionBlock value:lineNr]) ifTrue:[
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1380
            self selection:lineNr
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1381
        ] ifFalse:[
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1382
            self selection:nil
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1383
        ]
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1384
    ].
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1385
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1386
    isExpd := node isExpandable.
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1387
2483
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
  1388
    (supportsExpandAll
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
  1389
     and:[(sensor := self sensor) ctrlDown or:[sensor shiftDown]]
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1390
    ) ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1391
        isExpd ifTrue:[model doExpandAll:node]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1392
              ifFalse:[model doCollapseAll:node]
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1393
    ] ifFalse:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1394
        isExpd ifTrue:[model doExpand:node]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1395
              ifFalse:[model doCollapse:node].
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1396
    ].
639
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1397
!
663a913ec30b discard motion events if +/- is pressed
ca
parents: 623
diff changeset
  1398
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1399
indicatiorLineForButton:aButton atX:x y:y
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1400
    "returns linenumber assigned to indicator at x/y or 0
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1401
    "
1268
37066c039eb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  1402
    |nr x0 node|
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1403
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1404
    (     enabled
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1405
     and:[showDirectoryIndicator
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1406
     and:[aButton == 1 or:[aButton == #select]]]
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1407
    ) ifTrue:[
2014
3052fe815bcb use #lineAtY:
Claus Gittinger <cg@exept.de>
parents: 1972
diff changeset
  1408
        nr := self lineAtY:y. "/ self visibleLineToListLine:(self visibleLineOfY:y).
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1409
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1410
        nr notNil ifTrue:[
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1411
            node := listOfNodes at:nr.
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1412
            node hasChildren ifTrue:[
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1413
                x0   := self xOfFigureLevel:(node level - 1).
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1414
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1415
                (x > x0 and:[(x0 + imageWidth) > x and:[node children notEmpty]]) ifTrue:[
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1416
                    ^ nr
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1417
                ]
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1418
            ]
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1419
        ]
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1420
    ].            
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1421
    ^ 0
756
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1422
!
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1423
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1424
isCtrlMetaAltOrShiftPressed
2483
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
  1425
    "returns true if CTRL, META, ALT or SHIFT is pressed"
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
  1426
1589203d52f3 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2333
diff changeset
  1427
    ^ self sensor anyModifierKeyDown.
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1428
!
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1429
756
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1430
key:key select:index x:x y:y
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1431
    "select an entry by a keyboard action. This is treated like a doubleClick
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1432
     on that entry.
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1433
     Add on: In case that the entry is not selectable, scroll to the entry
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1434
    "
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1435
    (enabled and:[keyActionStyle notNil]) ifFalse:[
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1436
        ^ self
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1437
    ].
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1438
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1439
    (selectConditionBlock isNil or:[selectConditionBlock value:index]) ifTrue:[
1887
b47b3cb2515b does not inherit #key:select:x:y:
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
  1440
        ^ super keyPress:key x:x y:y
b47b3cb2515b does not inherit #key:select:x:y:
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
  1441
        "/ ^ super key:key select:index x:x y:y
756
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1442
    ].
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1443
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1444
    keyActionStyle == #pass ifTrue:[
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1445
        ^ self
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1446
    ].
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1447
204971de9150 key:key select:index x:x y:y
ca
parents: 695
diff changeset
  1448
    self gotoLine:index
785
ca
parents: 782
diff changeset
  1449
!
ca
parents: 782
diff changeset
  1450
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1451
keyPress:key x:x y:y
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1452
    "handle keyboard input"
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1453
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1454
    <resource: #keyboard ( #CursorLeft #CursorRight ) >
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1455
4253
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  1456
    |node|     
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1457
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1458
    enabled ifFalse:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1459
        ^ self
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1460
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1461
2065
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1462
    "/ cg: its nicer to expand/collaps on these keys
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1463
    key == #CursorRight ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1464
        (node := self selectedNode) notNil ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1465
            model doExpand:node.
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1466
            ^ self.
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1467
        ].
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1468
    ].
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1469
    key == #CursorLeft ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1470
        (node := self selectedNode) notNil ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1471
            model doCollapse:node.
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1472
            ^ self.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1473
        ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1474
    ].
2065
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1475
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1476
    "/ search fwd/bwd for a node with children
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1477
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1478
"/    (key == #CursorLeft or:[key == #CursorRight]) ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1479
"/        (idx := self selectedIndex) == 0 ifTrue:[ ^ self ].
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1480
"/
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1481
"/        (key == #CursorLeft) ifTrue:[ inc := -1. end := 0 ]
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1482
"/                            ifFalse:[ inc :=  1. end := 1 + listOfNodes size ].
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1483
"/
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1484
"/        [(idx := idx + inc) ~~ end] whileTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1485
"/            node := listOfNodes at:idx.
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1486
"/            node hasChildren ifTrue:[
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1487
"/                ^ self key:key select:idx x:x y:y
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1488
"/            ]
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1489
"/        ].
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1490
"/        ^ self
845bd5d2523c crsrLeft/right behavior changed
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1491
"/    ].
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1492
    ^ super keyPress:key x:x y:y
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1493
! !
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1494
2501
832cbac295b8 method category rename
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
  1495
!SelectionInTreeView methodsFor:'initialization & release'!
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1496
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1497
create
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1498
    super create.
695
3e5240577e37 dont use Image>>on: -> use Image>>onDevice:
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  1499
    lineMask := lineMask onDevice:device.
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1500
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1501
    lineColor := lineColor isNil ifTrue:[fgColor]
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1502
                                ifFalse:[lineColor onDevice:device].
1175
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1503
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1504
    editValueFgColor := editValueFgColor onDevice:device.
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1505
!
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1506
785
ca
parents: 782
diff changeset
  1507
fetchDefaultImages
ca
parents: 782
diff changeset
  1508
    "returns a directory with default keys and images; could be
ca
parents: 782
diff changeset
  1509
     redefined by subclass.
ca
parents: 782
diff changeset
  1510
    "
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1511
    ^ itemClass notNil ifTrue:[itemClass keysAndIcons]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1512
                      ifFalse:[nil]
785
ca
parents: 782
diff changeset
  1513
!
ca
parents: 782
diff changeset
  1514
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1515
fetchDeviceResources
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1516
    "initialize heavily used device resources - to avoid rendering
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1517
     images again and again later"
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1518
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1519
    super fetchDeviceResources.
478
ca
parents: 471
diff changeset
  1520
    self refetchDeviceResources
448
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1521
!
7f9f3531660c cache device images for fast drawing
Claus Gittinger <cg@exept.de>
parents: 446
diff changeset
  1522
478
ca
parents: 471
diff changeset
  1523
fetchImageResources
ca
parents: 471
diff changeset
  1524
    "initialize heavily used device resources - to avoid rendering
ca
parents: 471
diff changeset
  1525
     images again and again later; returns maximum extent of the images used.
ca
parents: 471
diff changeset
  1526
     Could be redefined by subclass
471
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
  1527
    "
785
ca
parents: 782
diff changeset
  1528
    |img x y keysAndIcons|
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1529
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1530
    x := y := 0.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1531
    imageOpened isNil ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1532
        imageOpened := self imageOnMyDevice:(self class imageOpened)
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1533
    ].
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1534
    imageOpened notNil ifTrue:[
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1535
        x := x max:(imageOpened width).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1536
        y := y max:(imageOpened height).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1537
    ].
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1538
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1539
    imageClosed isNil ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1540
        imageClosed := self imageOnMyDevice:(self class imageClosed)
533
d7867efb6f60 #fetchImageResources returned the max extent only on the first invocation
Stefan Vogel <sv@exept.de>
parents: 532
diff changeset
  1541
    ].
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1542
    imageClosed notNil ifTrue:[
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1543
        x := x max:(imageClosed width).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1544
        y := y max:(imageClosed height).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1545
    ].
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1546
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1547
    imageItem isNil ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1548
        imageItem := self imageOnMyDevice:(self class imageItem)
533
d7867efb6f60 #fetchImageResources returned the max extent only on the first invocation
Stefan Vogel <sv@exept.de>
parents: 532
diff changeset
  1549
    ].
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1550
    imageItem notNil ifTrue:[
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1551
        x := x max:(imageItem width).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1552
        y := y max:(imageItem height).
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1553
    ].
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
  1554
785
ca
parents: 782
diff changeset
  1555
    (keysAndIcons := self fetchDefaultImages) notNil ifTrue:[
ca
parents: 782
diff changeset
  1556
        keysAndIcons keysAndValuesDo:[:aKey :anIcon|
ca
parents: 782
diff changeset
  1557
            (anIcon isImage and:[aKey notNil]) ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1558
                registeredImages at:aKey put:(self imageOnMyDevice:anIcon)
785
ca
parents: 782
diff changeset
  1559
            ]
ca
parents: 782
diff changeset
  1560
        ]
ca
parents: 782
diff changeset
  1561
    ].
ca
parents: 782
diff changeset
  1562
    registeredImages keysAndValuesDo:[:k :img|
ca
parents: 782
diff changeset
  1563
        x := (img width)  max:x.
ca
parents: 782
diff changeset
  1564
        y := (img height) max:y.
ca
parents: 782
diff changeset
  1565
    ].
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
  1566
785
ca
parents: 782
diff changeset
  1567
    (listOfNodes size > 0 and:[(img := listOfNodes first icon) isImage]) ifTrue:[
ca
parents: 782
diff changeset
  1568
        x := (img width)  max:x.
ca
parents: 782
diff changeset
  1569
        y := (img height) max:y.
ca
parents: 782
diff changeset
  1570
    ].
ca
parents: 782
diff changeset
  1571
    ^ x @ y
1070
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1572
856d037fe133 care for non-existing images.
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  1573
    "Modified: / 12.8.1998 / 12:45:53 / cg"
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1574
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1575
480
982c2ad4f6a2 getFontParameters
ca
parents: 478
diff changeset
  1576
getFontParameters
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1577
    "save old computed height derived from images
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1578
    "
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1579
    |lineHeight|
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1580
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1581
    lineHeight := fontHeight ? 0.
480
982c2ad4f6a2 getFontParameters
ca
parents: 478
diff changeset
  1582
    super getFontParameters.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1583
    labelOffsetY := fontAscent - (fontHeight - lineSpacing // 2).
480
982c2ad4f6a2 getFontParameters
ca
parents: 478
diff changeset
  1584
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1585
    lineHeight > fontHeight ifTrue:[
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1586
        fontHeight := lineHeight
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1587
    ].
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1588
    fontHeight odd ifTrue:[
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1589
        fontHeight := fontHeight + 1
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1590
    ]
480
982c2ad4f6a2 getFontParameters
ca
parents: 478
diff changeset
  1591
!
982c2ad4f6a2 getFontParameters
ca
parents: 478
diff changeset
  1592
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1593
initStyle
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1594
    "setup viewStyle specifics"
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1595
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1596
    super initStyle.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1597
    highlightMode := DefaultHilightMode ? #label.
900
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1598
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1599
!
cd74dcab7e3f support hightlightMode
ca
parents: 860
diff changeset
  1600
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1601
initialize
471
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
  1602
    "setup instance attributes
6fe41e3caca1 add showLines;
ca
parents: 470
diff changeset
  1603
    "
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1604
    super initialize.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1605
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1606
    itemClass isNil ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1607
        itemClass := TreeItem
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1608
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1609
835
36202285352f support of expandAll/collapseAll if the indicator
ca
parents: 825
diff changeset
  1610
    supportsExpandAll := true.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1611
    self bitGravity:#NorthWest.
773
b3596157f97d register the icons and put them into a caching dict
tz
parents: 771
diff changeset
  1612
    showRoot := showDirectoryIndicatorForRoot      := showLines := computeResources := true.
1815
a5f2bd36e179 double click on expandable item does not perform
Claus Gittinger <cg@exept.de>
parents: 1813
diff changeset
  1613
    showDirectoryIndicator := discardMotionEvents := showLinesForRoot := false.
1275
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
  1614
    leftMargin := 2.
cc62615ed032 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1268
diff changeset
  1615
    lineMask   := Form width:2 height:2 fromArray:#[16rAA 16r55].
773
b3596157f97d register the icons and put them into a caching dict
tz
parents: 771
diff changeset
  1616
    registeredImages := IdentityDictionary new.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1617
    drawVLinesFromLevel := 1.
659
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  1618
    textInset  := 4.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1619
    imageInset := 0.    "/ set during indication enabled
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1620
    imageWidth := 8.    "/ default: will change during startup
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1621
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1622
    buildInArray := Array new:50.       "/ used for temporary calculation
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1623
                                        "/ suppress garbage collection
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1624
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1625
    self model:nil.     "/ creates a default model.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1626
    highlightMode := #label.
1175
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1627
    editValueFgColor := Color blue.
478
ca
parents: 471
diff changeset
  1628
!
ca
parents: 471
diff changeset
  1629
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1630
realize
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1631
    super realize.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1632
    self  refetchDeviceResources.
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1633
!
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1634
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1635
recomputeDirectoryIndicator
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1636
    "setup attributes used by directory indicator
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1637
    "
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1638
    |x w|
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1639
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1640
    imageInset := 0.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1641
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1642
    (showDirectoryIndicator and:[computeResources not]) ifFalse:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1643
        ^ self
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1644
    ].
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1645
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1646
    x := 0.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1647
    openIndicator isNil ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1648
        openIndicator  := self imageOnMyDevice:(self class openIndicator)
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1649
    ].
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1650
    openIndicator notNil ifTrue:[
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1651
        x := openIndicator width
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1652
    ].
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1653
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1654
    closeIndicator isNil ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  1655
        closeIndicator := self imageOnMyDevice:(self class closeIndicator)
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1656
    ].
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1657
    closeIndicator notNil ifTrue:[
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1658
        x := x max:(closeIndicator width)
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1659
    ].
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1660
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1661
    x := x // 2.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1662
    w := imageWidth // 2.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1663
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1664
    (x := x + self class minImageInset) > w ifTrue:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1665
        imageInset := x - w.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1666
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1667
1072
1888703adc18 care for non-existing open/close indicators.
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  1668
    "Modified: / 13.8.1998 / 12:02:04 / cg"
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1669
!
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1670
478
ca
parents: 471
diff changeset
  1671
refetchDeviceResources
ca
parents: 471
diff changeset
  1672
    "reinitialize heavily used device resources - to avoid rendering
ca
parents: 471
diff changeset
  1673
     images again and again later
ca
parents: 471
diff changeset
  1674
    "
551
b9d3ddbc3365 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  1675
    |extent|
478
ca
parents: 471
diff changeset
  1676
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1677
    (realized and:[computeResources and:[listOfNodes size ~~ 0]]) ifTrue:[
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1678
        computeResources := false.
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1679
        extent := self fetchImageResources.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1680
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1681
        extent y >= fontHeight ifTrue:[
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1682
            fontHeight := 1 + extent y.
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1683
        ].
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1684
        fontHeight odd ifTrue:[
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1685
            fontHeight := fontHeight + 1
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1686
        ].
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1687
        "/ round and not odd: because of line drawing
685
80751cda3340 lines as point
ca
parents: 659
diff changeset
  1688
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1689
        imageWidth := (extent x) // 2.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1690
        imageWidth odd ifTrue:[imageWidth := imageWidth + 1].
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1691
        imageWidth := imageWidth * 2.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1692
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1693
        self recomputeDirectoryIndicator.
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1694
        self computeNumberOfLinesShown.
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1695
    ]
2156
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1696
!
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1697
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1698
release
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1699
    "remove dependencies
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1700
    "
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1701
    rootHolder removeDependent:self.
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1702
    selectionHolder removeDependent:self.
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1703
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1704
    model notNil ifTrue:[
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1705
        model stopRunningTasks
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1706
    ].
e16dc409ecf2 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2065
diff changeset
  1707
    super release.
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1708
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1709
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1710
!SelectionInTreeView methodsFor:'model'!
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1711
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1712
getListFromModel
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1713
    "if I have a model, get my list from it using the listMessage.
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1714
     If listMessage is nil, try aspectMessage for backward compatibilty.
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1715
    "
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1716
    super list:(self listFromModel) keepSelection:true
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1717
!
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1718
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1719
listFromModel
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1720
    "get list from model and return the new list.
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1721
     If listMessage is nil, try aspectMessage for backward compatibilty.
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  1722
    "
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1723
    |msg|
838
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  1724
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1725
    widthOfWidestLine := nil.
847
8395a2d05464 recompute image height whenever list changed
ca
parents: 846
diff changeset
  1726
    list := listOfNodes := (msg := listMsg ? aspectMsg) notNil ifTrue:[model perform:msg] ifFalse:[#()].
8395a2d05464 recompute image height whenever list changed
ca
parents: 846
diff changeset
  1727
    self refetchDeviceResources.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1728
  ^ listOfNodes
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1729
!
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1730
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  1731
model:aModel
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1732
    "check whether model is nil; than a default model is created
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1733
    "
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1734
    |model root|
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1735
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1736
    model notNil ifTrue:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1737
        model stopRunningTasks
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1738
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1739
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1740
    model := aModel ? (self class defaultModelClass new).
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1741
    self itemClass:(model class defaultItemClass).
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1742
    root  := model root.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1743
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1744
    model showRoot:showRoot.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1745
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1746
    root notNil ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1747
        root expand
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1748
    ].
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1749
    super model:model.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1750
    self getListFromModel
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1751
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1752
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1753
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1754
rootFromModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1755
    "update hierarchical list from root model; 'rootHolder'
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1756
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1757
    |root|
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1758
585
5a0ed2305998 bug fixes:
ca
parents: 569
diff changeset
  1759
    root := rootHolder root.
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1760
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1761
    self root == root ifFalse:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1762
        self selection:nil.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1763
        self root:root.
585
5a0ed2305998 bug fixes:
ca
parents: 569
diff changeset
  1764
    ].
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1765
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1766
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1767
selectionFromModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1768
    "set the selection derived from the selectionHolder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1769
    "
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  1770
    |coll value size idx|
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1771
4246
b2aeabea341b class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1772
    (value := selectionHolder value) notNil ifTrue:[
1214
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1773
        (multipleSelectOk and:[value isCollection]) ifFalse:[
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  1774
            ^ self selectNode:value withNotify:false.
860
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  1775
        ].
1214
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1776
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1777
        (size := value size) ~~ 0 ifTrue:[
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1778
            size == 1 ifTrue:[
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  1779
                ^ self selectNode:(value at:1) withNotify:false
1214
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1780
            ].
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1781
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1782
            model doMakeVisible:value.
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1783
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1784
            coll := OrderedCollection new:size.
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1785
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1786
            value do:[:el|
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1787
                idx := el isNumber ifTrue:[el] ifFalse:[self indexOfNode:el].
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1788
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1789
                idx ~~ 0 ifTrue:[
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1790
                    coll add:idx
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1791
                ].
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1792
            ].
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1793
4272
7372fb880713 class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  1794
            coll := coll asNilIfEmpty.
1214
6aa740fb636c code cleanup.
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  1795
        ].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1796
    ].
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  1797
    self setSelection:coll
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1798
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1799
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1800
selectionToModel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1801
    "write selection to selection holder
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1802
    "
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1803
    |newSel oldSel|
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1804
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1805
    oldSel := selectionHolder value.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1806
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1807
    multipleSelectOk ifFalse:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1808
        (newSel := self selectedNode) ~~ oldSel ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1809
            selectionHolder value:newSel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1810
        ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1811
    ] ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1812
        selection size == 0 ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1813
            oldSel notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1814
                selectionHolder value:nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1815
            ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1816
        ] ifFalse:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1817
            newSel := selection collect:[:i| listOfNodes at:i].
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1818
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1819
            newSel size ~~ oldSel size ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1820
                selectionHolder value:newSel.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1821
            ] ifFalse:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1822
                newSel do:[:aNode|
785
ca
parents: 782
diff changeset
  1823
                    (oldSel includesIdentical:aNode) ifFalse:[
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1824
                        ^ selectionHolder value:newSel
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1825
                    ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1826
                ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1827
            ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1828
        ]
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  1829
    ]
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1830
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  1831
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1832
!SelectionInTreeView methodsFor:'private'!
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1833
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1834
closeEditor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1835
    "close the editor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1836
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1837
    editorWidget notNil ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1838
        editorWidget destroy.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1839
        editorIndex  := 0.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1840
        editorWidget := nil.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1841
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1842
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1843
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1844
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1845
list:aList keepSelection:keepSelection
585
5a0ed2305998 bug fixes:
ca
parents: 569
diff changeset
  1846
    "setup new list; keep selection dependent on the boolean state
5a0ed2305998 bug fixes:
ca
parents: 569
diff changeset
  1847
     keepSelection
5a0ed2305998 bug fixes:
ca
parents: 569
diff changeset
  1848
    "
1268
37066c039eb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  1849
    |list|
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1850
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1851
    list := (aList size == 0) ifTrue:[#()] ifFalse:[aList].
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1852
    super list:list keepSelection:keepSelection.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1853
    self refetchDeviceResources.
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1854
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1855
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1856
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1857
openEditor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1858
    "open an editor on selection
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1859
    "
1175
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1860
    |node x0 x1 y0|
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1861
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1862
    editorWidget notNil ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1863
        ^ self
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1864
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1865
    editorIndex := self selectedIndex.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1866
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1867
    (    (node         := listOfNodes at:editorIndex ifAbsent:nil) isNil
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1868
     or:[(y0           := self listLineToVisibleLine:editorIndex) isNil
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1869
     or:[(editorWidget := node editor) isNil]]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1870
    ) ifTrue:[   
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1871
        ^ self
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1872
    ].
1175
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1873
    editorWidget withAllSubViewsDo:[:v| v font:font ].
1fa0de353686 add new color used by editValue
ca
parents: 1171
diff changeset
  1874
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1875
    y0 := self yOfVisibleLine:y0.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1876
    x0 := self xOfValueNode:node.
3423
5870494fda6b added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  1877
    x1 := (editorWidget preferredWidth) max:50.
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1878
    x1 := (x0 + x1) min:(self width - 5).
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1879
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1880
    editorWidget geometryLayout:(Rectangle left:x0 right:x1 top:y0 bottom:y0 + fontHeight).
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1881
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1882
    self addComponent:editorWidget.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1883
    editorWidget realize.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1884
    self paint:bgColor.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1885
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1886
    self fillRectangleX:(x0 - SelectionInset)
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1887
                      y:y0
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1888
                  width:SelectionInset + SelectionInset + (x1 - x0)
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  1889
                 height:fontHeight.
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1890
! !
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1891
2494
87ae868b836a method category rename
Claus Gittinger <cg@exept.de>
parents: 2488
diff changeset
  1892
!SelectionInTreeView methodsFor:'private-drag and drop'!
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1893
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1894
collectionOfDragObjects
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1895
    "returns collection of dragable objects assigned to selection
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1896
     Here, by default, a collection of text-dragObjects is generated;
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1897
     however, if a dragObjectConverter is defined, that one gets a chance
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1898
     to convert as appropriate."
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1899
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1900
    |collection converted selection dLbl dObj node|
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1901
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1902
    selection  := self selectionAsCollection.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1903
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1904
    collection := selection collect:[:nr|
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1905
        node := listOfNodes at:nr.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1906
        dObj := self dragObjectForNode:node.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1907
        dObj theObject:(node contents).
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1908
        dLbl := LabelAndIcon icon:(self figureFor:node) string:(node name).
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1909
        dObj displayObject:dLbl.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1910
        dObj
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1911
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1912
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1913
    dragObjectConverter notNil ifTrue:[
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1914
        converted := OrderedCollection new.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1915
        collection keysAndValuesDo:[:nr :obj | 
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1916
            (dObj := dragObjectConverter value:obj) notNil ifTrue:[
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1917
                node := listOfNodes at:nr.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1918
                dLbl := LabelAndIcon icon:(self figureFor:node) string:(node name).
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1919
                converted displayObject:dLbl.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1920
                converted add:dObj
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1921
            ]
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1922
        ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1923
        collection := converted
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1924
    ].
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1925
    ^ collection.
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1926
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1927
569
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1928
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1929
!
2a1014d6697c checkin from browser
ca
parents: 552
diff changeset
  1930
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1931
dragObjectForNode:aNode
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1932
    "returns the dragable object for a node; could be redefined in subclass
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1933
    "
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1934
    ^ DropObject new:aNode.
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1935
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1936
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1937
!
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1938
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1939
startDragX:x y:y
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1940
    "start drag
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1941
    "
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1942
    dragIsActive := true.
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1943
811
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1944
    DragAndDropManager startDrag:(self collectionOfDragObjects)
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1945
                            from:self
a688e8f11bc6 async. reading of directory indicators
ca
parents: 792
diff changeset
  1946
                           atEnd:endDragAction
546
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1947
8d274d70c2c3 fetch resources only if list of nodes not nil otherwise
ca
parents: 545
diff changeset
  1948
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1949
! !
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  1950
2494
87ae868b836a method category rename
Claus Gittinger <cg@exept.de>
parents: 2488
diff changeset
  1951
!SelectionInTreeView methodsFor:'private-queries'!
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1952
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1953
lengthOfLongestLineBetween:firstLine and:lastLine
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1954
    "return the length (in characters) of the longest line in a line-range
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1955
    "
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  1956
    ^ self widthOfContents // fontWidth + 1
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1957
!
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  1958
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1959
smallestLevelOfNodesBetween:start and:stop
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1960
    "returns the smallest level of the nodes in a line range
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1961
    "
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1962
    |prevNode currParent nextParent
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1963
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1964
     lvl "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1965
     min "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1966
     end "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1967
     beg "{ Class:SmallInteger }"
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1968
    |
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1969
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1970
    (end := stop min:(listOfNodes size)) < start ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1971
        ^ 0
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1972
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1973
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1974
    prevNode   := listOfNodes at:start.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1975
    currParent := prevNode parent.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1976
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1977
    currParent isNil ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1978
        ^ 1
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1979
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1980
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1981
    (min := prevNode level) == 2 ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1982
        ^ min
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1983
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1984
    beg := start + 1.
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1985
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1986
    listOfNodes from:beg to:end do:[:currNode|
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1987
        (nextParent := currNode parent) == currParent ifFalse:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1988
            (currParent := nextParent) == prevNode ifFalse:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1989
                (lvl := currNode level) == 2 ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1990
                    ^ 2
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1991
                ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1992
                min := min min:lvl
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1993
            ]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1994
        ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1995
        prevNode := currNode
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1996
    ].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1997
    ^ min
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1998
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  1999
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2000
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2001
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2002
!
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2003
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2004
widthOfContents
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2005
    "return the width of the contents in pixels
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2006
     - used for scrollbar interface"
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2007
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2008
    listOfNodes isNil ifTrue:[^ 0].
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2009
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2010
    (widthOfWidestLine isNil or:[widthOfWidestLine == 0]) ifTrue:[
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2011
        widthOfWidestLine := self widthOfLongestLine
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2012
    ].
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2013
  ^ widthOfWidestLine + (leftMargin * 2)
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2014
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2015
!
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2016
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2017
widthOfLongestLine
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2018
    "return the width of the longest line in pixels
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2019
    "
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2020
    |parent pItem p
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2021
     startX   "{ Class: SmallInteger }"
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2022
     deltaX   "{ Class: SmallInteger }"
838
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2023
     level    "{ Class: SmallInteger }"
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2024
     width    "{ Class: SmallInteger }"
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2025
     maxSz    "{ Class: SmallInteger }"|
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2026
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2027
    buildInArray atAllPut:0.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2028
    parent := nil.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2029
    maxSz  := 1.
838
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2030
    level  := 1.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2031
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2032
    listOfNodes do:[:anItem|
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2033
        (p := anItem parent) ~~ parent ifTrue:[
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2034
            buildInArray at:level put:maxSz.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2035
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2036
            (parent := p) == pItem ifTrue:[level := level + 1]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2037
                                  ifFalse:[level := anItem level].
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2038
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2039
            maxSz := buildInArray at:level.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2040
        ].
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2041
        pItem := anItem.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2042
        maxSz := maxSz max:(anItem name size).
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2043
    ].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2044
    buildInArray at:level put:maxSz.
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2045
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2046
    startX := self xOfStringLevel:1.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2047
    deltaX := imageInset + imageWidth.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2048
    width  := '1' widthOn:self.
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2049
    maxSz  := 0.
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2050
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2051
    buildInArray do:[:el|
2015
5a83ee792cc3 eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2014
diff changeset
  2052
        el == 0 ifTrue:[ ^ maxSz + viewOrigin x ].
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2053
        maxSz  := maxSz max:(el * width + startX).
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2054
        startX := startX + deltaX.
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2055
    ].
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2056
! !
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2057
2494
87ae868b836a method category rename
Claus Gittinger <cg@exept.de>
parents: 2488
diff changeset
  2058
!SelectionInTreeView methodsFor:'private-redefinitions'!
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2059
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2060
expandTabs
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2061
    "nothing to do
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2062
    "
838
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2063
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2064
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2065
!
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2066
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2067
list:aCollection expandTabs:expand scanForNonStrings:scan
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2068
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2069
    includesNonStrings := false.
4380
0c043b8a8b4b class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 4272
diff changeset
  2070
    self list:aCollection expandTabs:false scanForNonStrings:false includesNonStrings:nil
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2071
!
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2072
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2073
withoutRedrawAt:anIndex put:aString
1813
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
  2074
    "change a line without redisplay and WITHOUT any sizeChange notifications.
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
  2075
     Somewhat dangerous, since scrollBars will not be informed about contents-changes.
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
  2076
     Use only if multiple lines are to be changed, and a sizeChanged is invoked by some other
c25b1a3476b2 comment only
Claus Gittinger <cg@exept.de>
parents: 1624
diff changeset
  2077
     means at the end."
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2078
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2079
    |width|
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2080
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2081
    width := widthOfWidestLine.
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2082
    widthOfWidestLine := nil.
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2083
    super withoutRedrawAt:anIndex put:aString.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2084
    widthOfWidestLine := width.
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2085
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2086
    (widthOfWidestLine notNil and:[aString size ~~ 0]) ifTrue:[
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2087
        width := self xOfStringNode:(listOfNodes at:anIndex)
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2088
               + (aString widthOn:self)
2015
5a83ee792cc3 eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2014
diff changeset
  2089
               + viewOrigin x.
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2090
838
d15daece0c54 optimize algorithm to get list from model and to
ca
parents: 835
diff changeset
  2091
        widthOfWidestLine := widthOfWidestLine max:width.
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2092
    ].
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2093
! !
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2094
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2095
!SelectionInTreeView methodsFor:'queries'!
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2096
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2097
figureFor:aNode
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2098
    "return a (bitmap) figure for a node"
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2099
785
ca
parents: 782
diff changeset
  2100
    |icon img|
ca
parents: 782
diff changeset
  2101
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2102
    "/ the item may provide an icon
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2103
    "/ (it knows for itself if its open or closed)
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2104
785
ca
parents: 782
diff changeset
  2105
    (icon := aNode icon) notNil ifTrue:[
ca
parents: 782
diff changeset
  2106
        img := registeredImages at:icon ifAbsent:nil.
ca
parents: 782
diff changeset
  2107
        img notNil ifTrue:[
ca
parents: 782
diff changeset
  2108
            ^ img
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
  2109
        ].
785
ca
parents: 782
diff changeset
  2110
        icon isImage ifTrue:[
2488
74c81c1e30d7 imageOnDevice -> imageOnMyDevice
Claus Gittinger <cg@exept.de>
parents: 2483
diff changeset
  2111
            img := self imageOnMyDevice:icon.
785
ca
parents: 782
diff changeset
  2112
            registeredImages at:icon put:img.
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2113
            ^ img
785
ca
parents: 782
diff changeset
  2114
        ]
763
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
  2115
    ].
dd29c58e8ea6 supports dynamic read behavior for contents, label, children, and icon of tree items
tz
parents: 760
diff changeset
  2116
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2117
    "/ ok, node did not return an icon - use default.
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2118
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2119
    aNode hasChildren ifFalse:[
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2120
        "/ regular
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2121
        ^ imageItem 
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2122
    ].
1278
7083a9583174 comments
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
  2123
    "/ folder
846
368acc8d9258 optimize widthOfContents and drawing
ca
parents: 838
diff changeset
  2124
    ^ aNode hidden ifTrue:[imageClosed] ifFalse:[imageOpened]
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2125
!
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2126
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2127
indexOfNode:aNode
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2128
    "returns index of a node
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2129
    "
785
ca
parents: 782
diff changeset
  2130
    ^ listOfNodes identityIndexOf:aNode
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2131
!
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2132
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2133
xOfFigureLevel:aLevel
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2134
    "origin x where to draw the icon
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2135
    "
785
ca
parents: 782
diff changeset
  2136
    |l "{ Class:SmallInteger }"|
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2137
785
ca
parents: 782
diff changeset
  2138
    l := showRoot ifTrue:[aLevel] ifFalse:[aLevel - 1].
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2139
659
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2140
    showDirectoryIndicator ifFalse:[
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2141
        l := l - 1
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2142
    ] ifTrue:[
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2143
        showDirectoryIndicatorForRoot ifFalse:[
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2144
            l := l - 1
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2145
        ]
16bb1d26f658 add showDirectoryIndicatorForRoot
ca
parents: 639
diff changeset
  2146
    ].
2015
5a83ee792cc3 eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2014
diff changeset
  2147
  ^ (l * (imageInset + imageWidth)) + imageInset - viewOrigin x + leftMargin
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2148
!
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2149
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2150
xOfFigureNode:aNode
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2151
    "origin x where to draw the icon
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2152
    "
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2153
    ^ self xOfFigureLevel:(aNode level)
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2154
!
490
1129f3cf5cea add directory open/close indication
ca
parents: 485
diff changeset
  2155
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2156
xOfStringLevel:aLevel
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2157
    "origin x where to draw the text( label )
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2158
    "
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2159
    ^ (self xOfFigureLevel:aLevel) + imageWidth + textInset
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2160
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2161
!
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2162
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2163
xOfStringNode:aNode
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2164
    "origin x where to draw the text( label )
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2165
    "
494
76d8c4e0b612 directory indicator; set a path to be selected
ca
parents: 490
diff changeset
  2166
    ^ self xOfStringLevel:(aNode level)
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2167
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2168
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2169
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2170
xOfValueNode:aNode
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2171
    "returns the left x position of the start of the value
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2172
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2173
    |p x|
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2174
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2175
    p := aNode parent.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2176
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2177
    x := p notNil ifTrue:[30 + (p childrenWidthOn:self)]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2178
                 ifFalse:[0].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2179
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2180
    ^ x + (self xOfStringNode:aNode)
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2181
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2182
! !
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2183
1061
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2184
!SelectionInTreeView methodsFor:'scrolling'!
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2185
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2186
needScrollToMakeLine:aListLineNr
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2187
    "redefined to scroll whenever line is not in top half"
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2188
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2189
    (aListLineNr >= firstLineShown) ifTrue:[
1162
b1aee7c3fd98 no need of scrolling for one item if selecting an item
tz
parents: 1105
diff changeset
  2190
        (aListLineNr < (firstLineShown + nFullLinesShown)) ifTrue:[
1061
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2191
            ^ false
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2192
        ]
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2193
    ].
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2194
    ^ true
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2195
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2196
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2197
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2198
originChanged:delta
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2199
    "sent after scrolling - have to update origin of editor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2200
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2201
    super originChanged:delta.
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2202
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2203
    editorWidget notNil ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2204
        editorWidget origin:(editorWidget origin - delta)
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2205
    ]
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2206
1061
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2207
! !
8eba9d898259 scroll to bring selection into upper half of view
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2208
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2209
!SelectionInTreeView methodsFor:'selection'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2210
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2211
selectNode:aNode
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2212
    "change selection to a node
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2213
    "
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2214
    ^ self selectNode:aNode withNotify:true.
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2215
!
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2216
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2217
selectNode:aNode withNotify:withNotify
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2218
    "change selection to a node
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2219
    "
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2220
    |index|
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2221
860
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2222
    (index := aNode) notNil ifTrue:[
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2223
        index isNumber ifFalse:[
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2224
            (index := self indexOfNode:aNode) == 0 ifTrue:[
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2225
                model doMakeVisible:aNode.
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2226
                index := self indexOfNode:aNode.
64d52b8e3dbd bug fix in remove:
ca
parents: 855
diff changeset
  2227
            ]
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2228
        ].
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2229
        index == 0 ifTrue:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2230
            index := nil
848
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2231
        ]
29f1947578b8 expand selected nodes automatically
ca
parents: 847
diff changeset
  2232
    ].
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2233
    withNotify ifFalse:[
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2234
        self setSelection:index
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2235
    ] ifTrue:[
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2236
        self selection:index 
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2237
    ].
468
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2238
!
9c54016f159d support of vertical scrollbar
ca
parents: 456
diff changeset
  2239
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2240
selectNodes:aCollectionOfNodes
2689
c382886ddb08 bugfix: catch recursion if selection changed through to the model
ca
parents: 2688
diff changeset
  2241
    ^ self selectNodes:aCollectionOfNodes withNotify:true.
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2242
!
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2243
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2244
selectNodes:aCollectionOfNodes withNotify:withNotify
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2245
    |selIndexCollection|
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2246
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2247
    selIndexCollection := aCollectionOfNodes collect:[:eachNode | listOfNodes identityIndexOf:eachNode].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2248
    selIndexCollection := selIndexCollection reject:[:eachIndex | eachIndex == 0].
2688
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2249
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2250
    withNotify ifTrue:[
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2251
        self selection:selIndexCollection.
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2252
    ] ifFalse:[
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2253
        self setSelection:selIndexCollection.
2d853020325f bugfix: catch recursion if selection changed through to the model
ca
parents: 2659
diff changeset
  2254
    ].
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2255
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2256
"/    first := true.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2257
"/    aCollectionOfNodes do:[:eachNode |
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2258
"/        first ifTrue:[
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2259
"/            self selectNode:eachNode.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2260
"/            first := false.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2261
"/        ] ifFalse:[
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2262
"/            self selectedNodeAdd:eachNode
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2263
"/        ]
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2264
"/    ].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2265
"/
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2266
!
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2267
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2268
selectedIndex
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2269
    "get single selected index or 0
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2270
    "
483
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2271
    selection size == 1 ifTrue:[^ selection first].
1dad61b63e9d optimize doubleClicked & redrawing
ca
parents: 481
diff changeset
  2272
    selection isNumber  ifTrue:[^ selection].
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2273
  ^ 0
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2274
!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2275
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2276
selectedNode
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2277
    "get the single selected node or nil
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2278
    "
456
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2279
    |idx|
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2280
d46a10de4380 change model; supports multiple selection
ca
parents: 448
diff changeset
  2281
    (idx := self selectedIndex) ~~ 0 ifTrue:[
3985
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2282
        ^ listOfNodes at:idx ifAbsent:nil
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2283
    ].
3985
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2284
    ^ nil
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2285
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2286
    "Modified: / 19-01-2011 / 18:41:02 / cg"
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2287
!
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2288
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2289
selectedNodes
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2290
    "get a collection of selected nodes
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2291
    "
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2292
    |selIndexCollection|
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2293
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2294
    (selIndexCollection := self selection) size == 0 ifTrue:[^ #() ].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2295
    ^ selIndexCollection collect:[:eachIndex | listOfNodes at:eachIndex].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2296
!
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2297
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2298
selectionChangedFrom:oldSelection
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2299
    "update selectionHolder if not nil
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2300
    "
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2301
    self closeEditor.
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2302
623
4de870640523 first change selectionHolders value,
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
  2303
    "/ first change my selectionHolders value ...
514
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2304
    selectionHolder notNil ifTrue:[
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2305
        self selectionToModel.
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2306
    ].
c25e078ed84c add selectionHolder and hierarchical list holder
ca
parents: 507
diff changeset
  2307
623
4de870640523 first change selectionHolders value,
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
  2308
    "/ ... then make notifications.
4de870640523 first change selectionHolders value,
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
  2309
    super selectionChangedFrom:oldSelection.
4de870640523 first change selectionHolders value,
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
  2310
4de870640523 first change selectionHolders value,
Claus Gittinger <cg@exept.de>
parents: 589
diff changeset
  2311
1171
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2312
!
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2313
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2314
setSelection:aSelection
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2315
    "if no selection exists, close the editor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2316
    "
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2317
    (aSelection isNil or:[aSelection == 0]) ifTrue:[
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2318
        self closeEditor
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2319
    ].
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2320
    super setSelection:aSelection
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2321
0199f65bc8ce add editable value
ca
parents: 1162
diff changeset
  2322
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2323
! !
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2324
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2325
!SelectionInTreeView methodsFor:'selection actions'!
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2326
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2327
selectedNodeAdd:something
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2328
    "add a node or collection of nodes after selected node
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2329
    "
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2330
    |node|
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2331
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2332
    something notNil ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2333
        (node := self selectedNode) notNil ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2334
            node parent notNil ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2335
                node isCollapsable ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2336
                    model add:something beforeIndex:1 below:node
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2337
                ] ifFalse:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2338
                    model add:something after:node
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2339
                ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2340
            ] ifFalse:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2341
                model add:something beforeIndex:1 below:(self root)
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2342
            ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2343
        ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2344
    ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2345
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2346
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2347
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2348
selectedNodeBecomeChildOfNext
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2349
    "make the selected node a child of the next node
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2350
    "
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2351
    |idx node cprt nprt|
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2352
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2353
    ((node := self selectedNode) isNil or:[(cprt := node parent) isNil]) ifFalse:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2354
        idx := cprt indexOfChild:node.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2355
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2356
        idx == cprt children size ifFalse:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2357
            nprt := cprt childAt:(idx + 1).
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2358
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2359
            nprt notNil ifTrue:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2360
                self  setSelection:nil.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2361
                model remove:node.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2362
                model add:node beforeIndex:1 below:nprt.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2363
                self selectNode:node.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2364
            ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2365
        ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2366
    ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2367
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2368
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2369
selectedNodeBecomeChildOfPrevious
4253
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  2370
    "make the selected node a child of the previous node"
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  2371
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2372
    |idx node cprt nprt|
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2373
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2374
    ((node := self selectedNode) isNil or:[(cprt := node parent) isNil]) ifFalse:[
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2375
        idx := cprt indexOfChild:node.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2376
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2377
        idx == cprt children size ifFalse:[
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2378
            nprt := cprt childAt:(idx - 1).
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2379
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2380
            nprt notNil ifTrue:[
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2381
                self  setSelection:nil.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2382
                model remove:node.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2383
                model add:node below:nprt.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2384
                self selectNode:node.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2385
            ]
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2386
        ]
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2387
    ]
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2388
!
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2389
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2390
selectedNodeBecomeSisterOfParent
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2391
    "become node a sister of its current parent
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2392
    "
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2393
    |node cprt nprt|
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2394
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2395
    (    (node := self selectedNode) isNil
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2396
     or:[(cprt := node parent) isNil
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2397
     or:[(nprt := cprt parent) isNil]]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2398
    ) ifFalse:[
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2399
        self  setSelection:nil.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2400
        model remove:node.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2401
        model add:node afterIndex:(nprt indexOfChild:cprt) below:nprt.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2402
        self  selectNode:node.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2403
    ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2404
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2405
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2406
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2407
selectedNodeChangeSequenceOrder:anOffset
3690
867272f708bc comment
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2408
    "move child 'anOffset' forward or backward in list of children"
867272f708bc comment
Claus Gittinger <cg@exept.de>
parents: 3456
diff changeset
  2409
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2410
    |idx node size parent|
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2411
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2412
    (      (node   := self selectedNode) notNil
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2413
      and:[(parent := node parent) notNil
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2414
      and:[(size   := parent children size) > 1]]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2415
    ) ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2416
        idx := parent indexOfChild:node.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2417
        self setSelection:nil.
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2418
        model remove:node.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2419
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2420
        (idx := idx + anOffset) < 1 ifTrue:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2421
            idx := size
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2422
        ] ifFalse:[
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2423
            idx > size ifTrue:[idx := 1]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2424
        ].
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2425
        model add:node beforeIndex:idx below:parent.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2426
        self selectNode:node.
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2427
    ]
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2428
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2429
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2430
selectedNodeExpand:doExpand
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2431
    "collapse or expand selected node
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2432
    "
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2433
    |node|
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2434
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2435
    (node := self selectedNode) notNil ifTrue:[
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2436
        doExpand ifTrue:[model doExpand:node]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2437
                ifFalse:[model doCollapse:node]
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2438
    ]
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2439
!
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2440
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2441
selectedNodesBecomeChildrenOfNext
4253
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  2442
    "make the selected nodes children of the next node"
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  2443
85c181bb2c96 class: SelectionInTreeView
Stefan Vogel <sv@exept.de>
parents: 4246
diff changeset
  2444
    |indices maxIndex nodes newParent|
1972
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2445
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2446
    nodes := self selectedNodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2447
    nodes size == 0 ifTrue:[^ self].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2448
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2449
    indices := nodes collect:[:eachNode | listOfNodes identityIndexOf:eachNode].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2450
    maxIndex := indices max.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2451
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2452
    newParent := listOfNodes at:(maxIndex + 1) ifAbsent:nil.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2453
    newParent isNil ifTrue:[^ self].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2454
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2455
    indices sortWith:nodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2456
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2457
    nodes reverseDo:[:eachNodeToMove |
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2458
        model remove:eachNodeToMove.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2459
        model add:eachNodeToMove beforeIndex:1 below:newParent.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2460
    ].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2461
    self selectNodes:nodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2462
!
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2463
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2464
selectedNodesBecomeSistersOfParent
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2465
    "move selected nodes up (out of their parent to their grandparent).
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2466
     I.e. nodes become sisters of their current parent
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2467
    "
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2468
    |nodes parent grandParent indices|
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2469
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2470
    nodes := self selectedNodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2471
    nodes size == 0 ifTrue:[^ self].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2472
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2473
    "/ common parent ?
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2474
    parent := nodes first parent.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2475
    (nodes conform:[:eachNode | eachNode parent == parent]) ifFalse:[^ self].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2476
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2477
    "/ is there a grandparent ?
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2478
    grandParent := parent parent.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2479
    grandParent isNil ifTrue:[^ self].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2480
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2481
    self  setSelection:nil.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2482
    indices := nodes collect:[:eachNode | listOfNodes identityIndexOf:eachNode].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2483
    indices sortWith:nodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2484
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2485
    nodes reverseDo:[:eachNodeToMove |
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2486
        model remove:eachNodeToMove.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2487
        model add:eachNodeToMove afterIndex:(grandParent indexOfChild:parent) below:grandParent.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2488
    ].
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2489
    self selectNodes:nodes.
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2490
!
d88252f4c668 group-move (for menuEditor)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
  2491
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2492
selectedNodesRemove
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2493
    "remove selected nodes
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2494
    "
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2495
    |selection|
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2496
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2497
    selection := self selection.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2498
    self selection:nil.
855
1714ba38f374 add/remove item operation are moved to the model
ca
parents: 850
diff changeset
  2499
    model remove:selection.
507
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2500
! !
546f43d75275 add more functionality based on selection
ca
parents: 497
diff changeset
  2501
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2502
!SelectionInTreeView class methodsFor:'documentation'!
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2503
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2504
version
4380
0c043b8a8b4b class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 4272
diff changeset
  2505
    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.119 2013-09-06 12:24:53 cg Exp $'
3985
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2506
!
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2507
4638e9fbb842 changed: #selectedNode
Claus Gittinger <cg@exept.de>
parents: 3744
diff changeset
  2508
version_CVS
4380
0c043b8a8b4b class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 4272
diff changeset
  2509
    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.119 2013-09-06 12:24:53 cg Exp $'
444
6d40e2c4ed53 intitial checkin
ca
parents:
diff changeset
  2510
! !
4246
b2aeabea341b class: SelectionInTreeView
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  2511