BookmarkEditor.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Jan 2020 21:02:47 +0100
changeset 19422 c6ca1c3e0fd7
parent 10082 bdb956e8e195
child 12123 4bde08cebd48
permissions -rw-r--r--
#REFACTORING by exept class: MultiViewToolApplication added: #askForFile:default:forSave:thenDo: changed: #askForFile:default:thenDo: #askForFile:thenDo: #menuSaveAllAs #menuSaveAs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     6
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     7
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     8
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    10
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    11
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    12
 conditions:
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    13
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    14
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    15
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    16
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"{ Package: 'stx:libtool' }"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
SimpleDialog subclass:#BookmarkEditor
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
	instanceVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	classVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
	poolDictionaries:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
	category:'Interface-Bookmarks'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
copyright
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    39
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    40
 Copyright (c) 2009-2010 eXept Software AG
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    41
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    42
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    43
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    44
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    45
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    46
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    47
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    48
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    49
 conditions:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    51
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    52
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    53
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    54
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    55
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    56
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    57
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    58
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    59
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    60
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    61
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
version_CVS
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    68
    ^ '$Header: /cvs/stx/stx/libtool/BookmarkEditor.st,v 1.2 2011-07-03 18:00:45 cg Exp $'
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
version_SVN
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    ^ '§Id§'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
! !