HierarchicalListEditor.st
author tz
Thu, 05 Feb 1998 16:13:20 +0100
changeset 591 efb80a288277
parent 581 399646a86258
child 602 5bf03bf611c8
permissions -rw-r--r--
labels inseted
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     1
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     3
              All Rights Reserved
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     4
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     5
 This software is furnished under a license and may be used
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
2a35cb573365 intitial checkin
ca
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    10
 hereby transferred.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    11
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    12
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    13
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    14
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    15
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
    16
ToolApplicationModel subclass:#HierarchicalListEditor
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
    17
	instanceVariableNames:'isModified didInstall treeView specClass specSelector'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
    18
	classVariableNames:'CopyBuffer'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    19
	poolDictionaries:''
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    20
	category:'Interface-UIPainter'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    21
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    22
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    23
!HierarchicalListEditor class methodsFor:'documentation'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    24
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    25
copyright
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    26
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    27
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    28
              All Rights Reserved
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    29
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    30
 This software is furnished under a license and may be used
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    35
 hereby transferred.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    36
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    37
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    38
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    39
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    40
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    41
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    42
documentation
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    43
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    44
    HierarchicalListEditor is used by the UIPainter to
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    45
    create or maintain a hierarchical list.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    46
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    47
    [start with:]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    48
        HierarchicalListEditor open
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    49
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    50
    [see also:]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    51
        UIPainter
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    52
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    53
    [author:]
546
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
    54
        Claus Atzkern, eXept Software AG
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    55
"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    56
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    57
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    58
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    59
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    60
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    61
!HierarchicalListEditor class methodsFor:'help specs'!
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    62
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    63
helpSpec
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    64
    "return a dictionary filled with helpKey -> helptext associations.
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    65
     These are used by the activeHelp tool."
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    66
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    67
    "
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    68
    UIHelpTool openOnClass:HierarchicalListEditor    
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    69
    "
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    70
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    71
  ^ super helpSpec addPairsFrom:#(
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    72
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    73
#addChild
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    74
'Adds a new child item.'
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    75
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    76
#addSister
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    77
'Adds a new sister item.'
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    78
581
399646a86258 help texts added
tz
parents: 566
diff changeset
    79
#contents
399646a86258 help texts added
tz
parents: 566
diff changeset
    80
'Contents of the tree item.'
399646a86258 help texts added
tz
parents: 566
diff changeset
    81
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    82
#fileNew
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    83
'Creates a new hierarchical list.'
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    84
552
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    85
#fileReload
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    86
'Reload hierarchical list from current class and selector.'
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    87
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    88
#fileSave
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    89
'Saves current hierarchical list.'
8597d3786b09 help texts added
tz
parents: 551
diff changeset
    90
581
399646a86258 help texts added
tz
parents: 566
diff changeset
    91
#label
399646a86258 help texts added
tz
parents: 566
diff changeset
    92
'Label of the tree item.'
399646a86258 help texts added
tz
parents: 566
diff changeset
    93
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    94
)
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    95
! !
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
    96
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    97
!HierarchicalListEditor class methodsFor:'interface specs'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    98
2a35cb573365 intitial checkin
ca
parents:
diff changeset
    99
classAndMethodSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   100
    "this window spec was automatically generated by the ST/X UIPainter"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   101
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   102
    "do not manually edit this - the painter/builder may not be able to
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   103
     handle the specification if its corrupted."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   104
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   105
    "
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   106
     UIPainter new openOnClass:HierarchicalListEditor andSelector:#classAndMethodSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   107
     HierarchicalListEditor new openInterface:#classAndMethodSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   108
    "
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   109
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   110
    <resource: #canvas>
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   111
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   112
    ^
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   113
     
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   114
       #(#FullSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   115
          #'window:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   116
           #(#WindowSpec
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   117
              #'name:' 'Hierarchical List Editor'
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   118
              #'layout:' #(#LayoutFrame 213 0 373 0 513 0 501 0)
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   119
              #'label:' 'Hierarchical List Editor'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   120
              #'min:' #(#Point 10 10)
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   121
              #'max:' #(#Point 1160 870)
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   122
              #'bounds:' #(#Rectangle 213 373 514 502)
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   123
              #'usePreferredExtent:' false
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   124
          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   125
          #'component:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   126
           #(#SpecCollection
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   127
              #'collection:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   128
               #(
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   129
                 #(#FramedBoxSpec
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   130
                    #'name:' 'framedBox1'
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   131
                    #'layout:' #(#LayoutFrame 0 0.0 3 0.0 0 1.0 -33 1.0)
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   132
                    #'label:' 'Class and selector for code'
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   133
                    #'labelPosition:' #topLeft
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   134
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   135
                 #(#LabelSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   136
                    #'name:' 'classLabel'
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   137
                    #'layout:' #(#AlignmentOrigin 53 0.11 39 0 1 0.5)
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   138
                    #'label:' 'Class:'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   139
                    #'adjust:' #right
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   140
                    #'resizeForLabel:' true
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   141
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   142
                 #(#InputFieldSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   143
                    #'name:' 'classField'
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   144
                    #'layout:' #(#LayoutFrame 57 0.11 27 0 -19 1.0 49 0)
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   145
                    #'enableChannel:' #canChangeClassName
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   146
                    #'tabable:' true
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   147
                    #'model:' #specClassChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   148
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   149
                 #(#LabelSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   150
                    #'name:' 'methodLabel'
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   151
                    #'layout:' #(#AlignmentOrigin 53 0.11 64 0 1 0.5)
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   152
                    #'label:' 'Selector:'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   153
                    #'adjust:' #right
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   154
                    #'resizeForLabel:' true
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   155
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   156
                 #(#InputFieldSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   157
                    #'name:' 'methodField'
529
2e77c060bc12 dialog style revised
tz
parents: 522
diff changeset
   158
                    #'layout:' #(#LayoutFrame 57 0.11 52 0 -19 1.0 74 0)
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   159
                    #'tabable:' true
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   160
                    #'model:' #specSelectorChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   161
                    #'type:' #string
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   162
                )
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   163
                 #(#UISubSpecification
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   164
                    #'name:' 'SubSpecification'
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   165
                    #'layout:' #(#LayoutFrame 0 0.0 -29 1 0 1.0 -5 1.0)
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   166
                    #'majorKey:' #ToolApplicationModel
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   167
                    #'minorKey:' #windowSpecForCommitWithoutChannels
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   168
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   169
              )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   170
          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   171
      )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   172
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   173
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   174
windowSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   175
    "this window spec was automatically generated by the ST/X UIPainter"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   176
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   177
    "do not manually edit this - the painter/builder may not be able to
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   178
     handle the specification if its corrupted."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   179
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   180
    "
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   181
     UIPainter new openOnClass:HierarchicalListEditor andSelector:#windowSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   182
     HierarchicalListEditor new openInterface:#windowSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   183
    "
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   184
    "HierarchicalListEditor open"
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   185
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   186
    <resource: #canvas>
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   187
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   188
    ^
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   189
     
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   190
       #(#FullSpec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   191
          #'window:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   192
           #(#WindowSpec
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   193
              #'name:' 'Hierarchical List Editor'
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   194
              #'layout:' #(#LayoutFrame 92 0 328 0 566 0 640 0)
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   195
              #'label:' 'Hierarchical List Editor'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   196
              #'min:' #(#Point 10 10)
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   197
              #'max:' #(#Point 1160 870)
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   198
              #'bounds:' #(#Rectangle 92 328 567 641)
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   199
              #'menu:' #menu
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   200
              #'usePreferredExtent:' false
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   201
          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   202
          #'component:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   203
           #(#SpecCollection
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   204
              #'collection:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   205
               #(
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   206
                 #(#MenuPanelSpec
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   207
                    #'name:' 'menuToolbarView'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   208
                    #'layout:' #(#LayoutFrame 0 0.0 0 0.0 0 1.0 32 0)
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   209
                    #'menu:' #menuToolbar
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   210
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   211
                 #(#VariableHorizontalPanelSpec
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   212
                    #'name:' 'variableHorizontalPanel'
566
58b18ffe959c info bar layout changed
tz
parents: 562
diff changeset
   213
                    #'layout:' #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   214
                    #'component:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   215
                     #(#SpecCollection
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   216
                        #'collection:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   217
                         #(
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   218
                           #(#ArbitraryComponentSpec
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   219
                              #'name:' 'treeView'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   220
                              #'menu:' #menuEdit
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   221
                              #'hasHorizontalScrollBar:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   222
                              #'hasVerticalScrollBar:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   223
                              #'miniScrollerHorizontal:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   224
                              #'miniScrollerVertical:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   225
                              #'component:' #treeView
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   226
                              #'hasBorder:' false
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   227
                          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   228
                           #(#ViewSpec
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   229
                              #'name:' 'specView'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   230
                              #'component:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   231
                               #(#SpecCollection
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   232
                                  #'collection:' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   233
                                   #(
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   234
                                     #(#LabelSpec
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   235
                                        #'name:' 'nameLabel'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   236
                                        #'layout:' #(#AlignmentOrigin 107 0 25 0 1 0.5)
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   237
                                        #'label:' 'Label:'
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   238
                                        #'resizeForLabel:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   239
                                    )
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   240
                                     #(#InputFieldSpec
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   241
                                        #'name:' 'labelInputField'
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   242
                                        #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   243
                                        #'activeHelpKey:' #label
469
28bcb1982ef9 tabs added
tz
parents: 443
diff changeset
   244
                                        #'tabable:' true
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   245
                                        #'model:' #itemName
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   246
                                    )
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   247
                                     #(#LabelSpec
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   248
                                        #'name:' 'valueLabel'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   249
                                        #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   250
                                        #'activeHelpKey:' #contents
399646a86258 help texts added
tz
parents: 566
diff changeset
   251
                                        #'label:' 'Contents:'
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   252
                                        #'resizeForLabel:' true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   253
                                    )
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   254
                                     #(#InputFieldSpec
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   255
                                        #'name:' 'valueInputField'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   256
                                        #'layout:' #(#LayoutFrame 110 0 41 0 -5 1.0 63 0)
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   257
                                        #'activeHelpKey:' #contents
469
28bcb1982ef9 tabs added
tz
parents: 443
diff changeset
   258
                                        #'tabable:' true
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   259
                                        #'model:' #itemValue
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   260
                                        #'type:' #symbolOrNil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   261
                                    )
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   262
                                     #(#UISubSpecification
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   263
                                        #'name:' 'SubSpecification'
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   264
                                        #'layout:' #(#LayoutFrame 2 0.0 -26 1.0 -2 1.0 -2 1.0)
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   265
                                        #'majorKey:' #ToolApplicationModel
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   266
                                        #'minorKey:' #windowSpecForCommit
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   267
                                    )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   268
                                  )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   269
                              )
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   270
                              #'level:' -1
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   271
                          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   272
                        )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   273
                    )
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   274
                    #'handles:' #(#Any 0.368421 1.0)
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   275
                )
484
ab3d54531432 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 469
diff changeset
   276
                 #(#UISubSpecification
ab3d54531432 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 469
diff changeset
   277
                    #'name:' 'infoBarSubSpec'
566
58b18ffe959c info bar layout changed
tz
parents: 562
diff changeset
   278
                    #'layout:' #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
484
ab3d54531432 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 469
diff changeset
   279
                    #'majorKey:' #ToolApplicationModel
ab3d54531432 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 469
diff changeset
   280
                    #'minorKey:' #windowSpecForInfoBar
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   281
                )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   282
              )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   283
          )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   284
      )
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   285
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   286
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   287
!HierarchicalListEditor class methodsFor:'menu specs'!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   288
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   289
menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   290
    "this window spec was automatically generated by the ST/X MenuEditor"
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   291
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   292
    "do not manually edit this - the builder may not be able to
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   293
     handle the specification if its corrupted."
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   294
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   295
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   296
     MenuEditor new openOnClass:HierarchicalListEditor andSelector:#menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   297
     (Menu new fromLiteralArrayEncoding:(HierarchicalListEditor menu)) startUp
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   298
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   299
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   300
    <resource: #menu>
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   301
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   302
    ^
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   303
     
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   304
       #(#Menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   305
          
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   306
           #(
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   307
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   308
                #'label:' 'About'
546
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
   309
                #'labelImage:' #(#ResourceRetriever nil #menuIcon)
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   310
                #'submenuChannel:' #menuAbout
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   311
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   312
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   313
                #'label:' 'File'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   314
                #'submenu:' 
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   315
                 #(#Menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   316
                    
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   317
                     #(
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   318
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   319
                          #'label:' 'New'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   320
                          #'value:' #doNew
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   321
                          #'activeHelpKey:' #fileNew
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   322
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   323
                       #(#MenuItem
522
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   324
                          #'label:' '-'
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   325
                      )
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   326
                       #(#MenuItem
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   327
                          #'label:' 'Reload'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   328
                          #'value:' #doReload
552
8597d3786b09 help texts added
tz
parents: 551
diff changeset
   329
                          #'activeHelpKey:' #fileReload
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   330
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   331
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   332
                          #'label:' '-'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   333
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   334
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   335
                          #'label:' 'Save'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   336
                          #'value:' #doInstall
552
8597d3786b09 help texts added
tz
parents: 551
diff changeset
   337
                          #'activeHelpKey:' #fileSave
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   338
                          #'enabled:' #hasValidClass
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   339
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   340
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   341
                          #'label:' '-'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   342
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   343
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   344
                          #'label:' 'Define Class And Selector...'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   345
                          #'value:' #doDefineClass
552
8597d3786b09 help texts added
tz
parents: 551
diff changeset
   346
                          #'activeHelpKey:' #fileDefineClassAndSelector
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   347
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   348
                       #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   349
                          #'label:' '-'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   350
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   351
                       #(#MenuItem
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   352
                          #'label:' 'Browse Class'
399646a86258 help texts added
tz
parents: 566
diff changeset
   353
                          #'value:' #doBrowse
399646a86258 help texts added
tz
parents: 566
diff changeset
   354
                          #'activeHelpKey:' #fileBrowseClass
399646a86258 help texts added
tz
parents: 566
diff changeset
   355
                          #'enabled:' #hasValidClass
399646a86258 help texts added
tz
parents: 566
diff changeset
   356
                      )
399646a86258 help texts added
tz
parents: 566
diff changeset
   357
                       #(#MenuItem
399646a86258 help texts added
tz
parents: 566
diff changeset
   358
                          #'label:' '-'
399646a86258 help texts added
tz
parents: 566
diff changeset
   359
                      )
399646a86258 help texts added
tz
parents: 566
diff changeset
   360
                       #(#MenuItem
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   361
                          #'label:' 'Exit'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   362
                          #'value:' #closeRequest
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   363
                          #'activeHelpKey:' #fileExit
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   364
                      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   365
                    ) nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   366
                    nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   367
                )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   368
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   369
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   370
                #'label:' 'Edit'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   371
                #'submenuChannel:' #menuEdit
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   372
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   373
             #(#MenuItem
522
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   374
                #'label:' 'Add'
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   375
                #'submenu:' 
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   376
                 #(#Menu
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   377
                    
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   378
                     #(
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   379
                       #(#MenuItem
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   380
                          #'label:' 'Child'
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   381
                          #'value:' #doCreateChild
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   382
                          #'activeHelpKey:' #addChild
522
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   383
                          #'enabled:' #canCreateChildChannel
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   384
                          #'labelImage:' #(#ResourceRetriever #HierarchicalListEditor #createChildIcon 'Child')
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   385
                      )
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   386
                       #(#MenuItem
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   387
                          #'label:' 'Sister'
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   388
                          #'value:' #doCreateSister
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   389
                          #'activeHelpKey:' #addSister
522
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   390
                          #'enabled:' #canCreateSisterChannel
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   391
                          #'labelImage:' #(#ResourceRetriever #HierarchicalListEditor #createSisterIcon 'Sister')
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   392
                      )
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   393
                    ) nil
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   394
                    nil
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   395
                )
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   396
            )
06bef91cb861 menu rearranged
tz
parents: 506
diff changeset
   397
             #(#MenuItem
546
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
   398
                #'label:' 'Help'
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
   399
                #'startGroup:' #right
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
   400
                #'submenuChannel:' #menuHelp
aac3f3c9383f help menu item aligned to the right
tz
parents: 529
diff changeset
   401
            )
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   402
          ) nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   403
          nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   404
      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   405
!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   406
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   407
menuEdit
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   408
    "this window spec was automatically generated by the ST/X MenuEditor"
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   409
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   410
    "do not manually edit this - the builder may not be able to
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   411
     handle the specification if its corrupted."
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   412
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   413
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   414
     MenuEditor new openOnClass:HierarchicalListEditor andSelector:#menuEdit
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   415
     (Menu new fromLiteralArrayEncoding:(HierarchicalListEditor menuEdit)) startUp
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   416
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   417
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   418
    <resource: #menu>
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   419
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   420
    ^
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   421
     
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   422
       #(#Menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   423
          
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   424
           #(
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   425
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   426
                #'label:' 'Cut'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   427
                #'value:' #doCut
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   428
                #'activeHelpKey:' #editCut
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   429
                #'enabled:' #canCut
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   430
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   431
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   432
                #'label:' 'Copy'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   433
                #'value:' #doCopy
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   434
                #'activeHelpKey:' #editCopy
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   435
                #'enabled:' #canCopy
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   436
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   437
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   438
                #'label:' 'Paste'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   439
                #'value:' #doPaste
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   440
                #'activeHelpKey:' #editPaste
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   441
                #'enabled:' #canPaste
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   442
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   443
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   444
                #'label:' '-'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   445
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   446
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   447
                #'label:' 'Move Up'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   448
                #'value:' #doStepUp
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   449
                #'activeHelpKey:' #editMoveUp
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   450
                #'enabled:' #canStepOverChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   451
                #'labelImage:' #(#ResourceRetriever #ToolApplicationModel #upIcon 'Move Up')
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   452
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   453
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   454
                #'label:' 'Move Down'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   455
                #'value:' #doStepDown
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   456
                #'activeHelpKey:' #editMoveDown
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   457
                #'enabled:' #canStepOverChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   458
                #'labelImage:' #(#ResourceRetriever #ToolApplicationModel #downIcon 'Move Down')
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   459
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   460
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   461
                #'label:' 'Move In'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   462
                #'value:' #doStepIn
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   463
                #'activeHelpKey:' #editMoveIn
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   464
                #'enabled:' #canStepInChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   465
                #'labelImage:' #(#ResourceRetriever #ToolApplicationModel #downRightIcon 'Move In')
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   466
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   467
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   468
                #'label:' 'Move Out'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   469
                #'value:' #doStepOut
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   470
                #'activeHelpKey:' #editMoveOut
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   471
                #'enabled:' #canStepOutChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   472
                #'labelImage:' #(#ResourceRetriever #ToolApplicationModel #leftDownIcon 'Move Out')
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   473
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   474
          ) nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   475
          nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   476
      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   477
!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   478
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   479
menuToolbar
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   480
    "this window spec was automatically generated by the ST/X MenuEditor"
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   481
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   482
    "do not manually edit this - the builder may not be able to
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   483
     handle the specification if its corrupted."
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   484
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   485
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   486
     MenuEditor new openOnClass:HierarchicalListEditor andSelector:#menuToolbar
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   487
     (Menu new fromLiteralArrayEncoding:(HierarchicalListEditor menuToolbar)) startUp
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   488
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   489
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   490
    <resource: #menu>
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   491
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   492
    ^
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   493
     
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   494
       #(#Menu
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   495
          
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   496
           #(
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   497
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   498
                #'label:' 'New'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   499
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   500
                #'value:' #doNew
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   501
                #'activeHelpKey:' #fileNew
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   502
                #'labelImage:' #(#ResourceRetriever nil #newIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   503
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   504
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   505
                #'label:' 'Save'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   506
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   507
                #'value:' #doInstall
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
   508
                #'activeHelpKey:' #fileSave
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   509
                #'enabled:' #hasValidClass
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   510
                #'labelImage:' #(#ResourceRetriever nil #saveIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   511
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   512
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   513
                #'label:' ''
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   514
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   515
             #(#MenuItem
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   516
                #'label:' 'Add Child'
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   517
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   518
                #'value:' #doCreateChild
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   519
                #'activeHelpKey:' #addChild
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   520
                #'enabled:' #canCreateChildChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   521
                #'labelImage:' #(#ResourceRetriever nil #createChildIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   522
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   523
             #(#MenuItem
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   524
                #'label:' 'Add Sister'
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   525
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   526
                #'value:' #doCreateSister
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   527
                #'activeHelpKey:' #addSister
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   528
                #'enabled:' #canCreateSisterChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   529
                #'labelImage:' #(#ResourceRetriever nil #createSisterIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   530
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   531
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   532
                #'label:' ''
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   533
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   534
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   535
                #'label:' 'Move Up'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   536
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   537
                #'value:' #doStepUp
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   538
                #'activeHelpKey:' #editMoveUp
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   539
                #'enabled:' #canStepOverChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   540
                #'labelImage:' #(#ResourceRetriever nil #upIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   541
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   542
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   543
                #'label:' 'Move Down'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   544
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   545
                #'value:' #doStepDown
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   546
                #'activeHelpKey:' #editMoveDown
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   547
                #'enabled:' #canStepOverChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   548
                #'labelImage:' #(#ResourceRetriever nil #downIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   549
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   550
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   551
                #'label:' 'Move In'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   552
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   553
                #'value:' #doStepIn
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   554
                #'activeHelpKey:' #editMoveIn
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   555
                #'enabled:' #canStepInChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   556
                #'labelImage:' #(#ResourceRetriever nil #downRightIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   557
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   558
             #(#MenuItem
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   559
                #'label:' 'Move Out'
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   560
                #'isButton:' true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   561
                #'value:' #doStepOut
551
f0c726d56ee6 help texts added
tz
parents: 546
diff changeset
   562
                #'activeHelpKey:' #editMoveOut
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   563
                #'enabled:' #canStepOutChannel
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   564
                #'labelImage:' #(#ResourceRetriever nil #leftDownIcon)
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   565
            )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   566
          ) nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   567
          nil
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   568
      )
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   569
! !
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   570
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   571
!HierarchicalListEditor class methodsFor:'printing'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   572
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   573
prettyPrintArray:anArray on:aStream indent:anIndent
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   574
    "print a literal array in a nice format
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   575
    "
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   576
    |arg sol|
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   577
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   578
    sol := aStream position.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   579
    aStream spaces:anIndent.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   580
    aStream nextPutAll:'#('.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   581
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   582
    anArray first isSymbol ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   583
        arg := anArray first.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   584
        aStream nextPut:$#.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   585
        aStream nextPutAll:anArray first.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   586
        aStream cr.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   587
        anArray size == 2 ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   588
            self prettyPrintArray:(anArray last)
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   589
                               on:aStream
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   590
                           indent:(anIndent + 4).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   591
        ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   592
        aStream spaces:anIndent.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   593
        aStream nextPut:$).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   594
      ^ self  
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   595
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   596
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   597
    aStream nextPut:$'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   598
    aStream nextPutAll:(anArray at:1).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   599
    aStream nextPut:$'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   600
    arg := anArray at:2 ifAbsent:nil.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   601
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   602
    arg isString ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   603
        aStream spaces:((50 - (aStream position - sol)) max:4).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   604
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   605
        arg isSymbol ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   606
            aStream nextPut:$#.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   607
        ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   608
        aStream nextPut:$'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   609
        aStream nextPutAll:arg.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   610
        aStream nextPut:$'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   611
        arg := anArray at:3 ifAbsent:nil.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   612
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   613
    arg isArray ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   614
        aStream nextPutAll:' #('.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   615
        aStream cr.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   616
        arg do:[:e|self prettyPrintArray:e on:aStream indent:(anIndent + 4)].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   617
        aStream spaces:anIndent.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   618
        aStream nextPut:$).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   619
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   620
    aStream nextPut:$).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   621
    aStream cr.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   622
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   623
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   624
!HierarchicalListEditor class methodsFor:'resources'!
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   625
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   626
createChildIcon
489
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   627
    "Generated by the Image Editor"
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   628
    "
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   629
    ImageEditor openOnClass:self andSelector:#createChildIcon
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   630
    "
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   631
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   632
    <resource: #image>
489
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   633
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   634
    ^Icon
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   635
        constantNamed:#'HierarchicalListEditor createChildIcon'
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   636
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@AUUUUP@@A????2@@A????2 @A????0@@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A<3L308@A33L33H@A30L33H@A33L33H@A<3L008@A?????8@C*****(@@@@@@@@@'); colorMap:(((Array new:4) at:1 put:((Color black)); at:2 put:((Color white)); at:3 put:((Color grey:49.9962)); at:4 put:((Color grey:66.9978)); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8'); yourself); yourself]!
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   637
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   638
createSisterIcon
489
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   639
    "Generated by the Image Editor"
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   640
    "
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   641
    ImageEditor openOnClass:self andSelector:#createSisterIcon
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   642
    "
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   643
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   644
    <resource: #image>
489
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   645
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   646
    ^Icon
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   647
        constantNamed:#'HierarchicalListEditor createSisterIcon'
d5f942ce5c94 new icon method format applied
tz
parents: 484
diff changeset
   648
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@AUUUUP@@A????2@@A????2 @A????0@@A?????8@A?????8@A?????8@A<L<O?8@A3<3??8@A<<<<C8@A?L?O?8@A0<0??8@A?????8@A0LCC?8@A<<?L?8@A<<CC?8@A<<?L?8@A<<CL?8@A?????8@C*****(@@@@@@@@@'); colorMap:(((Array new:4) at:1 put:((Color black)); at:2 put:((Color white)); at:3 put:((Color grey:49.9962)); at:4 put:((Color grey:66.9978)); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8'); yourself); yourself]! !
430
fa18d386b936 commit buttons replaced by subSpec in ToolApplicationModel + new button icons
tz
parents: 423
diff changeset
   649
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   650
!HierarchicalListEditor methodsFor:'accessing'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   651
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   652
didInstall
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   653
    "returns true if spec was installed by operator"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   654
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   655
    ^didInstall ? false
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   656
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   657
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   658
selectorName
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   659
    "returns current spec. selector"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   660
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   661
    ^specSelector
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   662
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   663
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   664
!HierarchicalListEditor methodsFor:'aspects'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   665
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   666
canCreateChildChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   667
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   668
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   669
    ^builder booleanValueAspectFor:#canCreateChildChannel
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   670
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   671
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   672
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   673
canCreateSisterChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   674
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   675
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   676
    ^builder booleanValueAspectFor:#canCreateSisterChannel
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   677
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   678
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   679
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   680
canStepInChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   681
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   682
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   683
    ^builder booleanValueAspectFor:#canStepInChannel
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   684
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   685
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   686
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   687
canStepOutChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   688
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   689
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   690
    ^builder booleanValueAspectFor:#canStepOutChannel
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   691
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   692
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   693
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   694
canStepOverChannel
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   695
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   696
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   697
    ^builder booleanValueAspectFor:#canStepOverChannel
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   698
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   699
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   700
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   701
hasValidClass
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   702
    "automatically generated by UIPainter ..."
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   703
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   704
    ^builder booleanValueAspectFor:#hasValidClass
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   705
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   706
!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   707
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   708
itemName
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   709
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   710
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   711
    |holder|
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   712
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   713
    (holder := builder bindingAt:#itemName) isNil ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   714
        builder aspectAt:#itemName put:(holder :=  ValueHolder new).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   715
        holder addDependent:self.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   716
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   717
    ^ holder
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   718
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   719
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   720
itemValue
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   721
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   722
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   723
    |holder|
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   724
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   725
    (holder := builder bindingAt:#itemValue) isNil ifTrue:[
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   726
        builder aspectAt:#itemValue put:(holder :=  ValueHolder new).
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   727
        holder addDependent:self.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   728
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   729
    ^ holder
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   730
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   731
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   732
treeView
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   733
    "automatically generated by UIPainter ..."
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   734
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   735
    ^treeView
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   736
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   737
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   738
!HierarchicalListEditor methodsFor:'change & update'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   739
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   740
update:something with:aParameter from:someObject
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   741
    "one of my models changed"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   742
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   743
    self valueOfEnablingCommitButtons value: true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   744
! !
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   745
581
399646a86258 help texts added
tz
parents: 566
diff changeset
   746
!HierarchicalListEditor methodsFor:'help'!
399646a86258 help texts added
tz
parents: 566
diff changeset
   747
399646a86258 help texts added
tz
parents: 566
diff changeset
   748
defaultInfoLabel
399646a86258 help texts added
tz
parents: 566
diff changeset
   749
399646a86258 help texts added
tz
parents: 566
diff changeset
   750
    specClass isNil ifTrue: [^'No hierarchical list class defined'].
399646a86258 help texts added
tz
parents: 566
diff changeset
   751
    ^specClass name, ' >> ', specSelector printString
399646a86258 help texts added
tz
parents: 566
diff changeset
   752
399646a86258 help texts added
tz
parents: 566
diff changeset
   753
! !
399646a86258 help texts added
tz
parents: 566
diff changeset
   754
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   755
!HierarchicalListEditor methodsFor:'private'!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   756
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   757
checkMenuItemModified
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   758
    "check item modification"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   759
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   760
    self valueOfEnablingCommitButtons value
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   761
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   762
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   763
        ((YesNoBox title:'Item was modified!!\Save it?\' withCRs)        
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   764
            noText:'No';
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   765
            yesText:'Yes';
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   766
            showAtPointer;
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   767
            accepted) ifFalse: [self valueOfEnablingCommitButtons value: false. ^true].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   768
        self accept
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   769
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   770
    ^true
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   771
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   772
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   773
checkModified
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   774
    "check menu modification
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   775
    "
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   776
    isModified
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   777
    ifTrue:
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   778
    [
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   779
        ((YesNoBox title:'Hierarchical list was modified!!')        
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   780
            noText:'Cancel';
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   781
            yesText:'Waste it and proceed';
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   782
            showAtPointer;
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   783
            accepted) ifFalse: [^false].
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   784
        isModified := false
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   785
    ].
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   786
    ^true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   787
!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   788
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   789
newItem
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   790
    "creates and returns a new default item"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   791
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
   792
    ^TreeItem name: 'Item' contents: nil
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   793
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   794
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   795
updateChannels
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   796
    "update channels"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   797
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   798
    |node parent chnStepIn chnStepOut chnStepOvr chnChild chnSister|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   799
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   800
    chnStepIn := chnStepOut := chnStepOvr := chnChild := chnSister := false.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   801
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   802
    (node := treeView selectedNode) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   803
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   804
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   805
        (builder componentAt: #specView) beVisible.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   806
        chnChild := true.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   807
        (parent := node parent) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   808
        ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   809
        [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   810
            chnSister  := true.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   811
            chnStepOvr := parent numberOfChildren > 1.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   812
            chnStepOut := parent parent notNil.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   813
            chnStepIn  := node ~~ parent lastChild
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   814
        ]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   815
    ]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   816
    ifFalse:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   817
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   818
        (builder componentAt: #specView) beInvisible
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   819
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   820
    self canCreateChildChannel  value:chnChild.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   821
    self canCreateSisterChannel value:chnSister.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   822
    self canStepOverChannel     value:chnStepOvr.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   823
    self canStepOutChannel      value:chnStepOut.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   824
    self canStepInChannel       value:chnStepIn.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   825
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   826
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   827
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   828
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   829
updateInputFields
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   830
    "reload item value into input fields"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   831
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   832
    |node|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   833
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   834
    (node := treeView selectedNode) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   835
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   836
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   837
        self itemName  value:node name.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   838
        self itemValue value:node contents
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   839
    ] 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   840
    ifFalse:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   841
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   842
        self itemName  value:''.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   843
        self itemValue value:nil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   844
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   845
    self valueOfEnablingCommitButtons value: false
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   846
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
   847
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   848
!HierarchicalListEditor methodsFor:'queries'!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   849
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   850
canChangeClassName
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   851
    "returns true if current class could be changed which is dependent on
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   852
     the mode: standalone or started by UIPainter"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   853
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   854
    ^masterApplication isNil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   855
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   856
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   857
canCopy
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   858
    "returns true if any selection exists"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   859
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   860
    ^treeView selection notNil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   861
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   862
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   863
canCut
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   864
    "returns true if any selection exists and not includes
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   865
     the anchor (first element into list)."
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   866
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   867
    treeView selection notNil ifTrue:[^(treeView isInSelection:1) not].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   868
    ^false
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   869
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   870
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   871
canPaste
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   872
    "returns true if something to be paste exists and a
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   873
     single selection exists"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   874
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   875
    ^CopyBuffer notNil and:[treeView selectedNode notNil]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   876
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   877
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   878
hasValidMethodSelector
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   879
    "returns true if the class and the instance selector defined
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   880
     allready exists."
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   881
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   882
    (specSelector notNil and:[self hasValidClass]) 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   883
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   884
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   885
        ^(specClass compiledMethodAt:specSelector) notNil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   886
    ].    
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   887
    ^false
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   888
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   889
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   890
hasValidSpecSelector
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   891
    "returns true if the class and the class selector defined
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   892
     allready exists."
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   893
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   894
    (specSelector notNil and:[self hasValidClass])
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   895
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   896
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   897
        ^(specClass class compiledMethodAt:specSelector) notNil
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   898
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   899
    ^false
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   900
! !
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   901
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   902
!HierarchicalListEditor methodsFor:'startup / release'!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   903
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   904
buildFrom:aClass andSelector:aSelector
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   905
    "rebuild window from a class and selector"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   906
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   907
    |sel anchor|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   908
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   909
    specClass := self resolveName:aClass.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   910
    specSelector := nil.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   911
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   912
    aSelector size ~~ 0 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   913
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   914
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   915
        sel := aSelector asString withoutSeparators.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   916
        sel size ~~ 0 ifTrue:[specSelector := sel asSymbol]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   917
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   918
    treeView selection:nil.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   919
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   920
    (specSelector notNil and:[specClass notNil]) 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   921
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   922
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   923
        (specClass respondsTo:specSelector) 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   924
        ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   925
        [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   926
            anchor := specClass perform:specSelector.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   927
            anchor isArray ifTrue:[anchor := anchor decodeAsLiteralArray]
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   928
        ].
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   929
        self hasValidClass value: true
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   930
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   931
    anchor notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   932
        ifTrue: [anchor expand. treeView root:anchor] 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   933
        ifFalse:[self doNew]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   934
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   935
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   936
closeRequest
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   937
    "close request"
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   938
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   939
    (self checkMenuItemModified and: [self checkModified]) ifTrue: [super closeRequest]
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   940
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   941
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   942
!
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   943
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   944
initialize
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   945
    "setup default values"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   946
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   947
    super initialize.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   948
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   949
    treeView := SelectionInTreeView new.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   950
    treeView multipleSelectOk: true.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   951
    treeView showDirectoryIndicator: true.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   952
    treeView showDirectoryIndicatorForRoot: false.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   953
    treeView action:[:aNr| self updateChannels. self updateInputFields].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   954
    treeView selectConditionBlock: [:i|self checkMenuItemModified].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   955
    treeView validateDoubleClickBlock: [:node| node ~~ treeView model list first].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   956
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   957
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   958
openModalOnClass:aClass andSelector:aSelector
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   959
    "open modal on class and selector"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   960
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   961
    specClass := Association key:aClass value:aSelector.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   962
    super openInterfaceModal.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   963
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   964
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   965
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   966
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   967
openOnClass:aClass andSelector:aSelector
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   968
    "open on class and selector"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   969
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   970
    specClass := Association key:aClass value:aSelector.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   971
    super openInterface.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   972
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   973
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   974
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   975
postBuildWith:builder
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   976
    "setup view"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   977
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   978
    |cls sel|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   979
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   980
    specClass isAssociation ifTrue:[
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   981
        cls := specClass key.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   982
        sel := specClass value.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   983
    ].
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   984
    self buildFrom:cls andSelector:sel.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   985
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   986
    isModified := false
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
   987
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   988
! !
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   989
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   990
!HierarchicalListEditor methodsFor:'user actions'!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   991
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   992
accept
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   993
    "invoked by button 'OK'"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   994
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   995
    |node index|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   996
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   997
    (index := treeView selectedIndex) ~~ 0 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   998
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
   999
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1000
        node := treeView nodeAtIndex:index.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1001
        node name: self itemName value.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1002
        node contents: self itemValue value.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1003
        treeView redrawLine:index.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1004
    ].
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1005
    isModified := true.
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1006
    self valueOfEnablingCommitButtons value: false
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1007
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1008
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1009
cancel
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1010
    "invoked by button 'Cancel'"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1011
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1012
    self updateInputFields.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1013
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1014
    isModified := false.
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1015
    self valueOfEnablingCommitButtons value: false
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1016
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1017
581
399646a86258 help texts added
tz
parents: 566
diff changeset
  1018
doBrowse
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1019
    "open a system browser"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1020
581
399646a86258 help texts added
tz
parents: 566
diff changeset
  1021
    SystemBrowser openInClass: specClass class selector: specSelector
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1022
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1023
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1024
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1025
doCopy
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1026
    "copy current selected nodes into copy buffer"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1027
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1028
    CopyBuffer := OrderedCollection new.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1029
    treeView selectedNodesDo:[:aNode| CopyBuffer add: aNode copy]
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1030
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1031
!
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1032
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1033
doCreateChild
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1034
    "create a child within selected parent"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1035
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1036
    |node newItem|
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1037
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1038
    (node := treeView selectedNode) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1039
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1040
    [
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1041
        treeView model add: (newItem := self newItem) afterIndex: node children size below:node.
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1042
        newItem name: 'Child ', (self getDepthAndSistersNumberOfNode: newItem onParentNode: node).
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1043
        treeView selectedNodeExpand:true.
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1044
        treeView selectNode: newItem.
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1045
        self updateChannels.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1046
        isModified := true
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1047
    ]
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1048
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1049
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1050
doCreateSister
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1051
    "create a sister next to selected item
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1052
    "
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1053
    |node newItem|
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1054
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1055
    (node := treeView selectedNode) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1056
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1057
    [
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1058
        newItem := self newItem.
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1059
        node parent notNil 
562
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1060
            ifTrue: [treeView model add: newItem after:node] 
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1061
            ifFalse:[treeView model add: newItem beforeIndex:1 below:node].
562
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1062
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1063
        newItem name: 'Child ', (self getDepthAndSistersNumberOfNode: newItem onParentNode: node parent).
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1064
        treeView selectNode: newItem.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1065
        self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1066
        isModified := true
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1067
    ]
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1068
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1069
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1070
doCut
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1071
    "cut current selected nodes"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1072
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1073
    |selection|
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1074
    treeView hasSelection 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1075
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1076
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1077
        self doCopy.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1078
        selection := treeView selection asSortedCollection.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1079
        treeView selectedNodesRemove.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1080
        treeView selection: selection first - 1.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1081
        self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1082
        isModified := true
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1083
    ]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1084
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1085
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1086
doDefineClass
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1087
    "define class and selector"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1088
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1089
    |sel cls bindings accepted|
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1090
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1091
    accepted := true.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1092
    bindings := IdentityDictionary new.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1093
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1094
    specClass    notNil ifTrue:[cls := specClass name asString]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1095
                       ifFalse:[cls := ''].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1096
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1097
    specSelector notNil ifTrue:[sel := specSelector asString]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1098
                       ifFalse:[sel := ''].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1099
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1100
    bindings at:#specSelectorChannel put: sel asValue.
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1101
    bindings at:#specClassChannel    put: cls asValue.
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1102
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1103
    [accepted] 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1104
    whileTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1105
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1106
        (accepted := self openDialogInterface:#classAndMethodSpec withBindings:bindings)
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1107
        ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1108
        [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1109
            (cls := self resolveName:(bindings at:#specClassChannel) value) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1110
            ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1111
            [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1112
                (sel := (bindings at:#specSelectorChannel) value withoutSeparators) size ~~ 0 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1113
                ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1114
                [
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1115
                    specClass    := cls.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1116
                    specSelector := sel asSymbol.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1117
                    self hasValidClass value: true.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1118
                    isModified := true.
581
399646a86258 help texts added
tz
parents: 566
diff changeset
  1119
                    self updateInfoLabel.
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1120
                    ^self
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1121
                ]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1122
            ]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1123
        ]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1124
    ]
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1125
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1126
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1127
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1128
doInstall
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1129
    "install code"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1130
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1131
    |code spec category mthd stream|
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1132
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1133
    (specClass notNil and:[specSelector notNil])
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1134
    ifFalse:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1135
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1136
        ^self information:'No valid class and method defined!!'
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1137
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1138
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1139
    spec   := (treeView nodeAtIndex:1) literalArrayEncoding.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1140
    stream := WriteStream on:String new.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1141
    self class prettyPrintArray:spec on:stream indent:4.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1142
    spec       := stream contents.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1143
    category   := 'interface specs'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1144
    didInstall := true.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1145
    isModified := false.
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1146
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1147
    (mthd := specClass class compiledMethodAt:specSelector) notNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1148
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1149
    [
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1150
        category := mthd category
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1151
    ].
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1152
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1153
    code := Character excla asString 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1154
            , specClass name , ' class methodsFor:' , category storeString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1155
            , Character excla asString , '\\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1156
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1157
            , specSelector , '\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1158
            , '    "this window spec was automatically generated by the ST/X HierarchicalListEditor"\\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1159
            , '    "do not manually edit this - the builder may not be able to\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1160
            , '     handle the specification if its corrupted."\\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1161
            , '    "\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1162
            , '     HierarchicalListEditor new openOnClass:' , specClass name , ' andSelector:#' , specSelector , '\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1163
            , '    "\'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1164
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1165
    code := code 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1166
            , '\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1167
            , '    <resource: #hierarchicalList>\\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1168
            , '    ^\' 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1169
            , spec
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1170
            , ' decodeAsLiteralArray\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1171
            , Character excla asString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1172
            , ' '
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1173
            , Character excla asString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1174
            , '\\'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1175
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1176
    code := code withCRs.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1177
    (ReadStream on:code) fileIn.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1178
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1179
    (specClass compiledMethodAt:specSelector) isNil 
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1180
    ifTrue:
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1181
    [
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1182
        category := 'aspects'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1183
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1184
        code := Character excla asString 
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1185
                , specClass name , ' methodsFor:' , category storeString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1186
                , Character excla asString , '\\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1187
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1188
                , specSelector , '\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1189
                , '    "this window spec was automatically generated by the ST/X HierarchicalListEditor"\\'
306
e5e33576c3ad change install routine;
ca
parents: 300
diff changeset
  1190
                , '    ^ self class ', specSelector
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1191
                , '\'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1192
                , Character excla asString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1193
                , ' '
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1194
                , Character excla asString
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1195
                , '\\'.
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1196
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1197
        code := code withCRs.
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1198
        (ReadStream on:code) fileIn
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1199
    ]
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1200
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1201
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1202
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1203
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1204
doNew
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1205
    "remove all items; restart"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1206
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1207
    treeView root:(TreeItem name:'Root' contents:#anchor).
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1208
    treeView selection:1.
581
399646a86258 help texts added
tz
parents: 566
diff changeset
  1209
    isModified := true.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1210
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1211
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1212
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1213
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1214
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1215
doPaste
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1216
    "paste after current selected item"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1217
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1218
    treeView selectedNodeAdd:CopyBuffer.
559
33365ca6eb1d select items after pasting
tz
parents: 558
diff changeset
  1219
    CopyBuffer isCollection ifFalse: [treeView selectNode: CopyBuffer] ifTrue: [treeView selection: (CopyBuffer collect: [:node| treeView indexOfNode: node])].
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1220
    self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1221
    isModified := true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1222
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1223
!
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1224
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1225
doReload
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1226
    "reload spec from current class and selector"
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1227
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1228
    self buildFrom:specClass andSelector:specSelector
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1229
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1230
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1231
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1232
doStepDown
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1233
    "move selected item after next item"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1234
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1235
    treeView selectedNodeChangeSequenceOrder:1.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1236
    self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1237
    isModified := true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1238
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1239
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1240
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1241
doStepIn
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1242
    "lets become the selected item a child of its next sister"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1243
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1244
    treeView selectedNodeBecomeChildOfNext.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1245
    self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1246
    isModified := true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1247
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1248
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1249
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1250
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1251
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1252
doStepOut
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1253
    "let selected node become a sister of its current parent"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1254
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1255
    treeView selectedNodeBecomeSisterOfParent.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1256
    self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1257
    isModified := true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1258
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1259
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1260
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1261
!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1262
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1263
doStepUp
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1264
    "move selected item before previous item"
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1265
423
ea6880a0e024 totally revised version; create icons will be changed next days
tz
parents: 372
diff changeset
  1266
    treeView selectedNodeChangeSequenceOrder:-1.
506
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1267
    self updateChannels.
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1268
    isModified := true
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1269
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1270
249e94fdeb94 looks for modified
tz
parents: 489
diff changeset
  1271
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1272
!
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1273
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1274
getDepthAndSistersNumberOfNode: aNode onParentNode: aParentNode
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1275
    "return depth of selected node"
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1276
562
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1277
    |parent childNode depthAndSistersNumbers str|
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1278
562
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1279
    depthAndSistersNumbers := OrderedCollection new.
558
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1280
    childNode := aNode.
5b5d08815af4 some revisions
tz
parents: 552
diff changeset
  1281
    parent := aParentNode.
562
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1282
    [parent notNil] 
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1283
    whileTrue: 
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1284
    [
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1285
        depthAndSistersNumbers add: (parent children indexOf: childNode). 
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1286
        childNode := parent. 
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1287
        parent := parent parent. 
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1288
    ].
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1289
    depthAndSistersNumbers removeFirst; addFirst: aParentNode children size.
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1290
    str := ''.
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1291
    depthAndSistersNumbers reverseDo: [:n| str := str, n printString, '.'].
f16b2ca2be5b numeration error fixed
tz
parents: 559
diff changeset
  1292
    ^str copyFrom: 1 to: str size - 1
300
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1293
! !
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1294
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1295
!HierarchicalListEditor class methodsFor:'documentation'!
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1296
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1297
version
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1298
    ^ '$Header$'
2a35cb573365 intitial checkin
ca
parents:
diff changeset
  1299
! !