Tools__SendersBrowslet.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Jul 2017 09:42:32 +0200
branchjv
changeset 17619 edb119820fcb
parent 12431 9f0c59c742d5
child 18532 cccb41254edf
permissions -rw-r--r--
Issue #154: Set window style using `#beToolWindow` to indicate that the minirunner window is kind of support tool rather than some X11 specific code (which does not work on Windows of course) See https://swing.fit.cvut.cz/projects/stx-jv/ticket/154
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
10045
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
10045
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     6
 obtaining a copy of this software and associated documentation
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     7
 files (the 'Software'), to deal in the Software without
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     8
 restriction, including without limitation the rights to use,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    10
 copies of the Software, and to permit persons to whom the
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    11
 Software is furnished to do so, subject to the following
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    12
 conditions:
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    13
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    14
 The above copyright notice and this permission notice shall be
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    15
 included in all copies or substantial portions of the Software.
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    16
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"{ Package: 'stx:libtool' }"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"{ NameSpace: Tools }"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
Browslet subclass:#SendersBrowslet
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
	instanceVariableNames:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
	classVariableNames:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
	poolDictionaries:''
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
	category:'Interface-Browsers-Browslets'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!SendersBrowslet class methodsFor:'documentation'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
copyright
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
10045
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    43
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    45
 obtaining a copy of this software and associated documentation
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    46
 files (the 'Software'), to deal in the Software without
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    47
 restriction, including without limitation the rights to use,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    49
 copies of the Software, and to permit persons to whom the
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    50
 Software is furnished to do so, subject to the following
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    51
 conditions:
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
10045
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    53
 The above copyright notice and this permission notice shall be
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    54
 included in all copies or substantial portions of the Software.
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    55
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bb79b3ab14d1 copyright
Claus Gittinger <cg@exept.de>
parents: 9964
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!SendersBrowslet class methodsFor:'accessing'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
description
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "superclass Browslet class says that I am responsible to implement this method"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    ^ 'Shows a list of senders of currently selected method'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    "Modified: / 04-10-2010 / 22:58:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
label
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
    "superclass Browslet class says that I am responsible to implement this method"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
    ^ 'Senders'
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
    "Modified: / 04-10-2010 / 22:57:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
! !
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
!SendersBrowslet class methodsFor:'documentation'!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
version_CVS
12123
4bde08cebd48 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 10045
diff changeset
    88
    ^ '§Header: /cvs/stx/stx/libtool/Tools__SendersBrowslet.st,v 1.2 2011/07/03 13:40:50 cg Exp §'
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
!
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    91
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    92
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    93
    ^ '$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
    94
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    95
9964
a44d7951711d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
version_SVN
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    97
    ^ '$Id: Tools__SendersBrowslet.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
    98
! !
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    99