SmalltalkInspectorView.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 08 Sep 2020 11:20:32 +0100
branchjv
changeset 19593 005c34e357bc
parent 18532 cccb41254edf
child 19607 f9108fde4972
permissions -rw-r--r--
Improve support for filing-out packages to Tonel repositories When filing-out package to Tonel repo, pre-select last directory or directory returned by `TonelRepository discoverPackage:`. This should be what user wants most of the time. Will see, though :-)
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: 15950
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: 15950
diff changeset
     2
6507
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
 COPYRIGHT (c) 2006 by eXept Software AG
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
              All Rights Reserved
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libtool' }"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
15950
23be8cf85415 Bugfix in merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12431
diff changeset
    16
"{ NameSpace: Smalltalk }"
23be8cf85415 Bugfix in merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12431
diff changeset
    17
6507
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
DictionaryInspectorView subclass:#SmalltalkInspectorView
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Interface-Inspector'
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!SmalltalkInspectorView class methodsFor:'documentation'!
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
copyright
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 COPYRIGHT (c) 2006 by eXept Software AG
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
              All Rights Reserved
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 This software is furnished under a license and may be used
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 hereby transferred.
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    same as a dictionary inspector - separate subclass to allow for a different menu.
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    [author:]
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
        Claus Gittinger
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
"
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
! !
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
8404
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    50
!SmalltalkInspectorView methodsFor:'initialization & release'!
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    51
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    52
initialize
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    53
    super initialize.
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    54
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    55
    hideNilValues := true.
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    56
! !
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    57
6509
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    58
!SmalltalkInspectorView methodsFor:'private'!
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    59
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    60
indexList
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    61
    "redefined to not show class variables"
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    62
8404
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    63
^ super indexList.
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    64
"/    keys := OrderedCollection new.
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    65
"/    inspectedObject keysDo:[:k |
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    66
"/                                (Smalltalk keyIsClassVariableNameKey:k) ifFalse:[
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    67
"/                                    keys add:k
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    68
"/                                ]
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    69
"/                           ].
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    70
"/    keys := keys asSortedCollection:[:a :b | a displayString < b displayString].
d44520bb049b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6509
diff changeset
    71
"/    ^ keys
6509
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    72
! !
bcaae26df254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6507
diff changeset
    73
6507
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
!SmalltalkInspectorView class methodsFor:'documentation'!
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
a3081301426e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
version
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    77
    ^ '$Id: SmalltalkInspectorView.st 7854 2012-01-30 17:49:41Z vranyj1 $'
9377
0f4ac22d542c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8404
diff changeset
    78
!
0f4ac22d542c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8404
diff changeset
    79
0f4ac22d542c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8404
diff changeset
    80
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: 15950
diff changeset
    81
    ^ '§Header: /cvs/stx/stx/libtool/SmalltalkInspectorView.st,v 1.4 2010/03/03 11:16:38 cg Exp §'
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    82
!
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    83
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    84
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    85
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    86
    ^ '$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
    87
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    88
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    89
version_SVN
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    90
    ^ '$Id: SmalltalkInspectorView.st 7854 2012-01-30 17:49:41Z vranyj1 $'
12125
0c49a3b13e43 Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    91
! !
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    92