AbstractDirectoryBrowser.st
author Claus Gittinger <cg@exept.de>
Tue, 01 Apr 2003 16:46:26 +0200
changeset 4754 e8ff80bb18ea
parent 4745 8082c278087d
child 4770 c5c5e793bf3f
permissions -rw-r--r--
oops - dropLeave has a side effect.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4712
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libtool' }"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
AbstractFileBrowser subclass:#AbstractDirectoryBrowser
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:'inDropMode canDropItem browser updateToExternFileHolderLock'
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Interface-Tools-File'
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!AbstractDirectoryBrowser class methodsFor:'documentation'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
documentation
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    Abstract class containing the common code from DirectoryTreeBrowser and
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
    DirectoryContentsBrowser applications.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!AbstractDirectoryBrowser methodsFor:'accessing'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
updateToExternFileHolderLock
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
    "return the value of the instance variable 'updateToExternFileHolder' (automatically generated)"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
    updateToExternFileHolderLock isNil ifTrue:[
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
        updateToExternFileHolderLock := self class newLock.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
    ].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
    ^ updateToExternFileHolderLock
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
!AbstractDirectoryBrowser methodsFor:'drag & drop'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
autoScrollDownForDrop:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
    aDropContext saveDraw:[
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
        browser scrollDown
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
    ]
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
autoScrollUpForDrop:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    aDropContext saveDraw:[
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
        browser scrollUp
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    ]
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
canDrop:aContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    ^ inDropMode and:[canDropItem]
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
4745
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    49
doDrop:aContext 
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    50
    |col destinationPath receiver didDrop|
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    51
4754
e8ff80bb18ea oops - dropLeave has a side effect.
Claus Gittinger <cg@exept.de>
parents: 4745
diff changeset
    52
    destinationPath := self dropDestinationPath.
e8ff80bb18ea oops - dropLeave has a side effect.
Claus Gittinger <cg@exept.de>
parents: 4745
diff changeset
    53
4745
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    54
    self dropLeave:aContext.
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    55
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    56
    destinationPath ifNil:[^ self].
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    57
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    58
    aContext dropSource argument == #archivApplication ifTrue:[
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    59
        receiver := aContext dropSource receiver.
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    60
        receiver extractSelectedFilesTo:destinationPath askForExtractOptions:true.
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    61
        ^ self
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    62
    ].
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    63
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    64
    col := aContext dropObjects collect:[:obj | obj theObject].
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    65
    didDrop := self copyOrMoveFiles:col to:destinationPath.
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    66
    didDrop ifFalse:[
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    67
        aContext clearHasDroppedToSuppressFeedBack
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    68
    ].
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    69
!
8082c278087d drop handling
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
    70
4712
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
dropEnter:aContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
    |dropedObjects|
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    self dropTargetItemChangedTo:nil in:aContext.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    inDropMode := false.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
"/    self directory isNil ifTrue:[^ self].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
    dropedObjects := aContext dropObjects.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    dropedObjects do:[:aObject| 
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
        |checkObject checkObjectString|
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
        aObject isFileObject ifFalse:[^ self].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
        checkObject := aObject theObject.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
        checkObject isFilename not ifTrue:[^ self].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
        ((aContext dropSource argument == #archivApplication) not) ifTrue:[
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
            checkObject isSpecialFile ifTrue:[^ self].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
            checkObject isReadable ifFalse:[^ self].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
        ].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    ].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    inDropMode := true.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
dropLeave:aDropContext 
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
    "send the last time, when leaving the widget
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    "
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
    inDropMode ifFalse:[ ^ self ].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    self dropTargetItemChangedTo:nil in:aDropContext.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
    self removeExpandItemTimedBlock.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    inDropMode := false.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
getDropObjects:anArgument
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
    ^ self selectedFiles collect:[:file| DropObject newFile:file].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
getLineNumberFor:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
    | yVisible|
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
    yVisible := (aDropContext targetPoint y).
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    ^ browser yVisibleToRowNr:yVisible.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
initiateAutoScrollDownFor:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
    self window sensor pushUserEvent:#autoScrollDownForDrop: for:self withArgument:aDropContext.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
initiateAutoScrollUpFor:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
    self window sensor pushUserEvent:#autoScrollUpForDrop: for:self withArgument:aDropContext
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
!AbstractDirectoryBrowser methodsFor:'file actions'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
doCopy
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "copy current selected files/directories
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    "
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
    self copyFilesToClipBoard:(self selectedFiles).
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
doCut
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    "cut current selected files/directories"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
    self cutFilesToClipBoard:(self selectedFiles).
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
doDelete
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
    "delete current selected files/directories
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
    "
4742
972a9d30ec47 enumerate copies of the selection in delete & rename
Claus Gittinger <cg@exept.de>
parents: 4712
diff changeset
   144
    self deleteFiles:(self selectedFiles copy).
4712
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
!AbstractDirectoryBrowser methodsFor:'selection'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
selectedFiles
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
    ^ self selectedItems collect:[:item| item fileName].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
!AbstractDirectoryBrowser methodsFor:'startup & release'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
initialize
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
    inDropMode := false.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
    ^ super initialize.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
postOpenAsSubcanvasWith:aBuilder
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
    super postOpenAsSubcanvasWith:aBuilder.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
    self postOpen.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
postOpenWith:aBuilder
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
    "only invoked if the application not started from a master"
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
    super postOpenWith:aBuilder.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    self postOpen.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
preBuildWith:aBuilder
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
    self masterApplication isNil ifTrue:[
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
        self masterApplication:nil.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
    ].
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
    ^ super preBuildWith:aBuilder.
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
! !
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
!AbstractDirectoryBrowser class methodsFor:'documentation'!
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
version
4754
e8ff80bb18ea oops - dropLeave has a side effect.
Claus Gittinger <cg@exept.de>
parents: 4745
diff changeset
   186
    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.4 2003-04-01 14:46:26 cg Exp $'
4712
da798b51457b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
! !