BookmarkEditor.st
author Jan Vrany <jan.vrany@labware.com>
Sat, 30 Sep 2023 22:55:25 +0100
branchjv
changeset 19648 5df52d354504
parent 18532 cccb41254edf
permissions -rw-r--r--
`TestRunner2`: do not use `#keysAndValuesCollect:` ...as semantics differ among smalltalk dialects. This is normally not a problem until we use code that adds this as a "compatibility" method. So to stay on a safe side, avoid using this method.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18532
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
     1
"{ Encoding: utf8 }"
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
     2
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     4
 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
     5
 Copyright (c) 2009-2010 eXept Software AG
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     7
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     8
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     9
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    10
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    11
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    12
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    13
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    14
 conditions:
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    15
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    16
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    17
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    18
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    19
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    20
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    21
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    22
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    23
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    24
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    25
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    26
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"{ Package: 'stx:libtool' }"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
SimpleDialog subclass:#BookmarkEditor
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
	instanceVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
	classVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
	poolDictionaries:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
	category:'Interface-Bookmarks'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
copyright
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    41
 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
    42
 Copyright (c) 2009-2010 eXept Software AG
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    43
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    45
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    46
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    47
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    49
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    50
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    51
 conditions:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    53
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    54
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    55
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
version_CVS
18532
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
    70
    ^ '§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
    71
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    73
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    74
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    75
    ^ '$Changeset: <not expanded> $'
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    76
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    77
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
version_SVN
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    79
    ^ '$Id: BookmarkEditor.st 7854 2012-01-30 17:49:41Z vranyj1 $'
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    80
! !
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    81