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