Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- 1 participants
- 144619 messages
Re: [Pharo-dev] consideration of Smalltalk "DoIt"
by Ron Teitelbaum
Hi All,
Smalltalkers do it with style. As a member of the it fan club I would like to send my support for all the its. Could be that I just got used to the syntax but there has never been any doubt as to what the methods do. The purpose of a language is to be clear and useful. I donât find any fault in the clarity, or the ability to learn and remember its.
All the best,
Ron Teitelbaum
From: Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] On Behalf Of Santiago Bragagnolo
Sent: Wednesday, July 16, 2014 10:24 AM
To: Pharo Development List
Subject: Re: [Pharo-dev] consideration of Smalltalk "DoIt"
I think that the difference is in every language. You do not just debug a c program executing it or compiling it for release, the same with c++ and java or python. I never debugged haskell, but when you execute something in the console you are even implicitly using print-it. instead of do it. Profiling is not different neither, is not that you there is all the time something profiling your applications.
I think that real difference is that is not usual to find a language that let you execute what ever you want almost everywhere, because the meaning of what execution is, is slightly different. Then, in other languages it just do not makes sense.
You may want to change the menu to be different when you have something selected, i feel it will be more bureau, but it can be cool to try a prototype.
2014-07-15 22:50 GMT+02:00 Esteban A. Maringolo <emaringolo(a)gmail.com>:
2014-07-15 17:30 GMT-03:00 Nicolas Cellier <nicolas.cellier.aka.nice(a)gmail.com>:
> 2014-07-15 20:27 GMT+02:00 Esteban A. Maringolo <emaringolo(a)gmail.com>:
>
>> I find the "... it" suffix obsolete. "Delete it", "Do it", "Print it",
>> etc.
>>
>> Maybe it made sense in the past, but today it feels weird.
>> There is no "Cut it", "Paste it", etc... nor similar in other software.
>> IMO, if the menu is contextual, the context already applies the "it"
>> (subject).
> Did you notice "it" is only mentionned when you will evaluate (do it / print
> it / debug it / ... )?
> Otherwise, if it's just text editing there is no it.
> So there is a sort of logic. IMO that makes sense, because evaluating is a
> special action.
I did notice.
And I believe the "print-it", "do-it" and similar are there because of
historical reasons I don't know, but were carried over without
questioning it, maybe since ST-80 . :)
Why make a distinction between copying text and
evaluating/profiling/debugging it? I only saw this in Smalltalk.
Esteban A. Maringolo
July 16, 2014
Athens and AntiAliasing
by Thierry Goubier
Hi,
I'm trying to see if I can switch on antialiasing when using Athens (for
Roassal in particular) but it seems partially implemented?
i.e. AthensCairoCanvas>>setAA: is a nop (just comments) even if the Cairo
AA constants are initialized.
Can I just write the NB cairo_set_alias call myself or is there a reason
for having it disabled?
Thanks,
Thierry
July 16, 2014
Debugger variable display - poor wrapping of collections
by Ben Coman
I have a minor irritation that when displaying a variable in the
debugger, collections wrap like this...
an OrderedCollection(a
MyObject a
MyObject a
MyObject a....
I'd like to see something like this...
an-OrderedCollection(
a-MyObject
a-MyObject
a-MyObject ....
Using the dash has the lowest impact code-wise, but maybe the
visual-semantics is too great a change?
The required code change is shown below in comments...
Object>>printOn: aStream
| title |
title := self class name.
aStream
nextPutAll: (title first isVowel ifTrue: ['an '] ifFalse: ['a ']);
" nextPutAll: (title first isVowel ifTrue: ['an-'] ifFalse:
['a-']); "
nextPutAll: title
Collection>>printElementsOn: aStream
aStream nextPut: $( " ; space " .
self do: [:element | aStream print: element] separatedBy: [aStream
space].
aStream " space ; " nextPut: $)
cheers -ben
July 16, 2014
Re: [Pharo-dev] consideration of Smalltalk "DoIt"
by Torsten Bergmann
Hi Esteban,
I think the
Do/Evaluate it Print it Debug it
menu naming is a tribute to Smalltalk history as it was already part of ST80
(see http://www.cosc.canterbury.ac.nz/wolfgang.kreutzer/cosc205/images/stShot13.…)
In this case the text is seen not only as text but as a real expression - maybe
that's the reason for the "it" and also the reason for having this in a separate
menu group divided by a separator line.
I would not change it, even when it is not consistent or make some people feel
uncomfortable for three reasons:
1. The do it/print it/debug it is part of nearly any Smalltalk or Pharo tutorial/books
so this is what people would expect it to look like
2. The Cut/Copy/Paste is known from any other UI based operating system and application,
so this is what people would expect it to look like
and the strongest reason:
3. If you change "Print it" to just "Print" people would expect something
is coming out of their printer device! ;)
We can change anything in Pharo - but not so easy the expectation of users.
Bye
T.
> Gesendet: Mittwoch, 16. Juli 2014 um 16:01 Uhr
> Von: "Esteban A. Maringolo" <emaringolo(a)gmail.com>
> An: "Pharo Development List" <pharo-dev(a)lists.pharo.org>
> Betreff: Re: [Pharo-dev] consideration of Smalltalk "DoIt"
>
> 2014-07-15 23:32 GMT-03:00 Eliot Miranda <eliot.miranda(a)gmail.com>:
> > On Jul 15, 2014, at 1:50 PM, "Esteban A. Maringolo" <emaringolo(a)gmail.com> wrote:
>
> >> Why make a distinction between copying text and
> >> evaluating/profiling/debugging it? I only saw this in Smalltalk.
> >
> > ?? I'd be more than annoyed if copying the text "rm -rf *" evaluated it too...
>
> Well... it would be sending the object at the variable rm the message
> selector #- with rf as argument :)
>
> I'm not sure if I understood what you meant. But I'm talking about
> consistency, it is we use "verb + it" for everything, or we don't.
>
> Ej:
> A)
> Do/Evaluate it
> Print it
> Debug it
> Copy it
> Cut it
> Paste it
>
> B)
> Evaluate
> Print
> Debug
> Copy
> Cut
> Paste
>
> Certainly the latter feels better to me. And I haven't seen a single
> UI/UX guideline suggesting the naming of commands like A.
>
> But again, maybe i'm lost in translation here.
>
> Regards.
>
> Esteban A. Maringolo
>
>
July 16, 2014
Re: [Pharo-dev] [ANN] Ephestos - Using and Coding Blender from inside Pharo
by Sean P. DeNigris
kilon alios wrote
> The goal is to expose Blender coders to the power of Pharo and Pharo to
> the
> power of Blender
Cool! I want this :)
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/ANN-Ephestos-Using-and-Coding-Blender-from-inside-Pha…
Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
July 16, 2014
Re: [Pharo-dev] consideration of Smalltalk "DoIt"
by Santiago Bragagnolo
I think that the difference is in every language. You do not just debug a c
program executing it or compiling it for release, the same with c++ and
java or python. I never debugged haskell, but when you execute something in
the console you are even implicitly using print-it. instead of do
it. Profiling is not different neither, is not that you there is all the
time something profiling your applications.
I think that real difference is that is not usual to find a language that
let you execute what ever you want almost everywhere, because the meaning
of what execution is, is slightly different. Then, in other languages it
just do not makes sense.
You may want to change the menu to be different when you have something
selected, i feel it will be more bureau, but it can be cool to try a
prototype.
2014-07-15 22:50 GMT+02:00 Esteban A. Maringolo <emaringolo(a)gmail.com>:
> 2014-07-15 17:30 GMT-03:00 Nicolas Cellier <
> nicolas.cellier.aka.nice(a)gmail.com>:
> > 2014-07-15 20:27 GMT+02:00 Esteban A. Maringolo <emaringolo(a)gmail.com>:
> >
> >> I find the "... it" suffix obsolete. "Delete it", "Do it", "Print it",
> >> etc.
> >>
> >> Maybe it made sense in the past, but today it feels weird.
> >> There is no "Cut it", "Paste it", etc... nor similar in other software.
> >> IMO, if the menu is contextual, the context already applies the "it"
> >> (subject).
>
> > Did you notice "it" is only mentionned when you will evaluate (do it /
> print
> > it / debug it / ... )?
> > Otherwise, if it's just text editing there is no it.
> > So there is a sort of logic. IMO that makes sense, because evaluating is
> a
> > special action.
>
> I did notice.
>
> And I believe the "print-it", "do-it" and similar are there because of
> historical reasons I don't know, but were carried over without
> questioning it, maybe since ST-80 . :)
>
> Why make a distinction between copying text and
> evaluating/profiling/debugging it? I only saw this in Smalltalk.
>
> Esteban A. Maringolo
>
>
July 16, 2014
Re: [Pharo-dev] consideration of Smalltalk "DoIt"
by Esteban A. Maringolo
2014-07-15 23:32 GMT-03:00 Eliot Miranda <eliot.miranda(a)gmail.com>:
> On Jul 15, 2014, at 1:50 PM, "Esteban A. Maringolo" <emaringolo(a)gmail.com> wrote:
>> Why make a distinction between copying text and
>> evaluating/profiling/debugging it? I only saw this in Smalltalk.
>
> ?? I'd be more than annoyed if copying the text "rm -rf *" evaluated it too...
Well... it would be sending the object at the variable rm the message
selector #- with rf as argument :)
I'm not sure if I understood what you meant. But I'm talking about
consistency, it is we use "verb + it" for everything, or we don't.
Ej:
A)
Do/Evaluate it
Print it
Debug it
Copy it
Cut it
Paste it
B)
Evaluate
Print
Debug
Copy
Cut
Paste
Certainly the latter feels better to me. And I haven't seen a single
UI/UX guideline suggesting the naming of commands like A.
But again, maybe i'm lost in translation here.
Regards.
Esteban A. Maringolo
July 16, 2014
[pharo-project/pharo-core]
by GitHub
Branch: refs/tags/40091
Home: https://github.com/pharo-project/pharo-core
July 16, 2014
[pharo-project/pharo-core] 539695: 40091
by GitHub
Branch: refs/heads/4.0
Home: https://github.com/pharo-project/pharo-core
Commit: 5396956789dcb64bde2357c9107a96adbdd4e529
https://github.com/pharo-project/pharo-core/commit/5396956789dcb64bde2357c9…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2014-07-16 (Wed, 16 Jul 2014)
Changed paths:
A Morphic-Base.package/extension/SVColorSelectorMorph/instance/borderWidth_.st
M NautilusRefactoring.package/NautilusRefactoring.class/instance/private-method/privateRenameMethodFor_.st
A Polymorph-Widgets.package/ComposableMorph.class/instance/accessing/defaultTitle.st
R Polymorph-Widgets.package/ComposableMorph.class/instance/as yet unclassified/defaultBorderColor.st
R Polymorph-Widgets.package/ComposableMorph.class/instance/as yet unclassified/defaultBorderWidth.st
R Polymorph-Widgets.package/ComposableMorph.class/instance/as yet unclassified/defaultTitle.st
R Polymorph-Widgets.package/ComposableMorph.class/instance/as yet unclassified/newWindow.st
A Polymorph-Widgets.package/ComposableMorph.class/instance/initialization/defaultBorderColor.st
A Polymorph-Widgets.package/ComposableMorph.class/instance/initialization/defaultBorderWidth.st
A Polymorph-Widgets.package/ComposableMorph.class/instance/instance creation/newWindow.st
A Polymorph-Widgets.package/DropListMorph.class/instance/accessing/focusBounds.st
A Polymorph-Widgets.package/DropListMorph.class/instance/accessing/focusIndicatorCornerRadius.st
A Polymorph-Widgets.package/DropListMorph.class/instance/accessing/roundedCorners_.st
R Polymorph-Widgets.package/DropListMorph.class/instance/as yet unclassified/listFont.st
R Polymorph-Widgets.package/DropListMorph.class/instance/as yet unclassified/listFont_.st
R Polymorph-Widgets.package/DropListMorph.class/instance/as yet unclassified/wantsKeyboardFocus.st
A Polymorph-Widgets.package/DropListMorph.class/instance/font accessing/listFont.st
A Polymorph-Widgets.package/DropListMorph.class/instance/font creation/listFont_.st
A Polymorph-Widgets.package/DropListMorph.class/instance/protocol/takesKeyboardFocus.st
A Polymorph-Widgets.package/DropListMorph.class/instance/testing/wantsKeyboardFocus.st
A Polymorph-Widgets.package/DropListMorph.class/instance/updating/themeChanged.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/accessing/expanded.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/accessing/expanded_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/accessing/font.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/accessing/font_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/addedMorph_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/announce_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/defaultTitleMorph.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/expanded.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/expandedSizingRigid.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/expanded_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/fixLayout.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/font.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/font_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/showMorphs_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/titleText_.st
R Polymorph-Widgets.package/ExpanderMorph.class/instance/as yet unclassified/update_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/initialization/defaultTitleMorph.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/addedMorph_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/announce_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/expandedSizingRigid.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/fixLayout.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/showMorphs_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/operations/titleText_.st
A Polymorph-Widgets.package/ExpanderMorph.class/instance/updating/update_.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/accessing/adoptPaneColor_.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/accessing/defaultBorderStyle.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/accessing/font.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/accessing/font_.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/buttonWidth.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/defaultBorderStyle.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/expandLabel.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/extent_.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/font.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/font_.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/newExpandButtonMorph.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/newLabelMorph.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/normalFillStyle.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/themeChanged.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/titleText.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/titleText_.st
R Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/as yet unclassified/toggleExpanded.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/geometry/extent_.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/instance creation/newExpandButtonMorph.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/instance creation/newLabelMorph.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/operations/expandLabel.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/operations/titleText_.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/operations/toggleExpanded.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/private/buttonWidth.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/protocol/titleText.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/style/normalFillStyle.st
A Polymorph-Widgets.package/ExpanderTitleMorph.class/instance/style/themeChanged.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/adoptPaneColor_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/contentFromModel.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/initialColorInSystemWindow_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/label.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/label_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/paneColorOrNil.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/roundedCorners_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/accessing/selectedTab.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/adding/addContentMorph_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/addContentMorph_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/containsPoint_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/contentFromModel.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/cornerStyle_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/initialColorInSystemWindow_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/label.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/label_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/minExtent.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/newContentMorph.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/newLabelMorph.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/paneColorOrNil.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/replaceContentMorph_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/roundedCorners_.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/selectedTab.st
R Polymorph-Widgets.package/GroupboxMorph.class/instance/as yet unclassified/update_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/geometry testing/containsPoint_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/geometry testing/minExtent.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/instance creation/newContentMorph.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/instance creation/newLabelMorph.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/rounding/cornerStyle_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/updating/replaceContentMorph_.st
A Polymorph-Widgets.package/GroupboxMorph.class/instance/updating/update_.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/accessing/alphaSelected_.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/accessing/colorSelected_.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/accessing/defaultColor.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/alphaSelected_.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/colorSelected_.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/defaultColor.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/newAColorMorph.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/newHSVColorMorph.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/selectedColor.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/selectedColor_.st
R Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/as yet unclassified/triggerSelectedColor.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/operations/newAColorMorph.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/operations/newHSVColorMorph.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/operations/selectedColor.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/operations/selectedColor_.st
A Polymorph-Widgets.package/HSVAColorSelectorMorph.class/instance/operations/triggerSelectedColor.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/accessing/colorSelected_.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/accessing/defaultColor.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/accessing/hue_.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/colorSelected_.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/defaultColor.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/hue_.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/newHColorMorph.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/newSVColorMorph.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/selectedColor.st
R Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/as yet unclassified/selectedColor_.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/operations/newHColorMorph.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/operations/newSVColorMorph.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/operations/selectedColor.st
A Polymorph-Widgets.package/HSVColorSelectorMorph.class/instance/operations/selectedColor_.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/accessing/font.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/accessing/font_.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/font.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/font_.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/listMorphClass.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/newContentMorph.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/updateContentColor_.st
R Polymorph-Widgets.package/MorphDropListMorph.class/instance/as yet unclassified/updateContents.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/drawing/newContentMorph.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/private/listMorphClass.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/testing/updateContents.st
A Polymorph-Widgets.package/MorphDropListMorph.class/instance/updating/updateContentColor_.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/accessing/adoptPaneColor_.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/buttonWidth.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/extent_.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/newMoreButton.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/newPotentialMorph.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/outOfWorld_.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/step.st
R Polymorph-Widgets.package/OverflowRowMorph.class/instance/as yet unclassified/stepTime.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/geometry/extent_.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/initialize/outOfWorld_.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/instance creation/newMoreButton.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/instance creation/newPotentialMorph.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/private/buttonWidth.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/stepping and presenter/step.st
A Polymorph-Widgets.package/OverflowRowMorph.class/instance/stepping/stepTime.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsLeftOrTopFrom_size_.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkMorphsRightOrBottomFrom_.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/checkSplitters.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/isResizeableMorph_forSplitter_.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newHSplitter.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newHSplitterAt_.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newVSplitter.st
A Polymorph-Widgets.package/PanelMorph.class/instance/protocol/newVSplitterAt_.st
A Polymorph-Widgets.package/PlainGroupboxMorph.class/instance/accessing/adoptPaneColor_.st
A Polymorph-Widgets.package/PlainGroupboxMorph.class/instance/accessing/paneColorOrNil.st
R Polymorph-Widgets.package/PlainGroupboxMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/PlainGroupboxMorph.class/instance/as yet unclassified/paneColorOrNil.st
R Polymorph-Widgets.package/PluggableTextFieldMorph.class/instance/Polymorph-Widgets-override/acceptTextInModel.st
A Polymorph-Widgets.package/PluggableTextFieldMorph.class/instance/model access/acceptTextInModel.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/accessing/adoptPaneColor_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/accessing/color_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/borderWidth_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/colorAt_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/color_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/extent_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/fillStyle_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/handlesMouseDown_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/handlesMouseOverDragging_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/layoutBounds_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/mouseDown_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/mouseEnterDragging_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/mouseLeaveDragging_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/mouseMove_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/mouseUp_.st
R Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/as yet unclassified/newLocationMorph.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/handlesMouseDown_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/handlesMouseOverDragging_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/mouseDown_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/mouseEnterDragging_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/mouseLeaveDragging_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/mouseMove_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/event handling/mouseUp_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/geometry/extent_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/instance creation/newLocationMorph.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/layout/layoutBounds_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/pixel access/colorAt_.st
A Polymorph-Widgets.package/SVColorSelectorMorph.class/instance/visual properties/fillStyle_.st
A Polymorph-Widgets.package/SearchMorph.class/instance/protocol/takeKeyboardFocus.st
A Polymorph-Widgets.package/SeparatorMorph.class/instance/accessing/adoptPaneColor_.st
R Polymorph-Widgets.package/SeparatorMorph.class/instance/as yet unclassified/adoptPaneColor_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/font.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/font_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/page.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/pageMorph.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/page_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/pages.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/paneColorOrNil.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/accessing/selectedTab.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/adding/addPage_label_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/adding/addPage_label_selected_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/adding/removePage_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/addPage_label_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/addPage_label_selected_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/font.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/font_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/labelsAndPages_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/newContentMorph.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/newTabSelectorMorph.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/page.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/pageMorph.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/page_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/pages.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/relabelPage_with_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/removePageIndex_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/removePage_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/selectedPageIndex.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/selectedPageIndex_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/selectedTab.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/tabOfPage_.st
R Polymorph-Widgets.package/TabGroupMorph.class/instance/as yet unclassified/updatePageIndex_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/building/newContentMorph.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/building/newTabSelectorMorph.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/drawing/minExtent.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/labelsAndPages_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/relabelPage_with_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/removePageIndex_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/selectedPageIndex.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/selectedPageIndex_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/tabOfPage_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/page/updatePageIndex_.st
A Polymorph-Widgets.package/TabGroupMorph.class/instance/updating/themeChanged.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/adoptPaneColor_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/borderStyleToUse.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/fillStyleToUse.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/font_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/label.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/label_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/label_selected_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/accessing/selected_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/borderStyleToUse.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/extent_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/fillStyleToUse.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/focusBounds.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/font_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/isSelected.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/isVisible.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/label.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/label_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/label_selected_.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/minWidth.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/normalFillStyle.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/selectedFillStyle.st
R Polymorph-Widgets.package/TabLabelMorph.class/instance/as yet unclassified/selected_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/geometry/extent_.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/layout/minWidth.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/style/normalFillStyle.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/style/selectedFillStyle.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/testing/isSelected.st
A Polymorph-Widgets.package/TabLabelMorph.class/instance/testing/isVisible.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/accessing/focusBounds.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/adding/addTab_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/adding/addTab_selected_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/addTab_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/addTab_selected_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/basicMinExtent.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/calculateVisibleTabs.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/controlButtonWidth.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/controlsExtent.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/ensureSelectedTabIsVisible.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/leftButtonEnabled.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/leftButtonLabel.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newControls.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newEndSpacer.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newLabelMorph_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newLabelMorph_selected_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newLeftButton.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newRightButton.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/newSpacer.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/nonVisibleTabs.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/relabelTab_with_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/removeTabIndex_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/rightButtonEnabled.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/rightButtonLabel.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/scrollTabsLeft.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/scrollTabsRight.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/selectNextTab.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/selectPreviousTab.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/selectedTab.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/tabClicked_with_.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/tabsAndControls.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/updateFont.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/updateTabs.st
R Polymorph-Widgets.package/TabSelectorMorph.class/instance/as yet unclassified/visibleTabs.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/geometry/basicMinExtent.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/geometry/minExtent.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/activate.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/controlButtonWidth.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/controlsExtent.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/ensureSelectedTabIsVisible.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/leftButtonEnabled.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/leftButtonLabel.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newControls.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newEndSpacer.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newLabelMorph_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newLabelMorph_selected_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newLeftButton.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newRightButton.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/newSpacer.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/passivate.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/removeTabIndex_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/rightButtonEnabled.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/rightButtonLabel.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/scrollTabsLeft.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/scrollTabsRight.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/selectNextTab.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/tabClicked_with_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/takesKeyboardFocus.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/operations/updateFont.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/calculateVisibleTabs.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/nonVisibleTabs.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/relabelTab_with_.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/selectPreviousTab.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/selectedTab.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/tabsAndControls.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/updateTabs.st
A Polymorph-Widgets.package/TabSelectorMorph.class/instance/tabs/visibleTabs.st
A Polymorph-Widgets.package/TaskListMorph.class/instance/open%2Fclose/takesKeyboardFocus.st
R Polymorph-Widgets.package/TaskListMorph.class/instance/stepping and presenter/step.st
A Polymorph-Widgets.package/TaskListMorph.class/instance/stepping/step.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/buttonForMorph_.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/indicateModalChildForMorph_.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/removeFromWorld.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/taskButtonOf_.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/taskOf_.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/updateTasks.st
R Polymorph-Widgets.package/TaskbarMorph.class/instance/as yet unclassified/worldMorphs.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/buttonForMorph_.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/indicateModalChildForMorph_.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/removeFromWorld.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/taskButtonOf_.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/taskOf_.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/updateTasks.st
A Polymorph-Widgets.package/TaskbarMorph.class/instance/taskbar/worldMorphs.st
A Polymorph-Widgets.package/TextHighlightByBounds.class/instance/accessing/position.st
A Polymorph-Widgets.package/TextHighlightByBounds.class/instance/accessing/position_.st
R Polymorph-Widgets.package/TextHighlightByBounds.class/instance/as yet unclassified/clicked_.st
R Polymorph-Widgets.package/TextHighlightByBounds.class/instance/as yet unclassified/containsPoint_in_.st
R Polymorph-Widgets.package/TextHighlightByBounds.class/instance/as yet unclassified/drawOn_in_offset_.st
R Polymorph-Widgets.package/TextHighlightByBounds.class/instance/as yet unclassified/position.st
R Polymorph-Widgets.package/TextHighlightByBounds.class/instance/as yet unclassified/position_.st
A Polymorph-Widgets.package/TextHighlightByBounds.class/instance/drawing/clicked_.st
A Polymorph-Widgets.package/TextHighlightByBounds.class/instance/drawing/drawOn_in_offset_.st
A Polymorph-Widgets.package/TextHighlightByBounds.class/instance/testing/containsPoint_in_.st
R Polymorph-Widgets.package/TextMorphForEditorView.class/instance/as yet unclassified/editorClass.st
A Polymorph-Widgets.package/TextMorphForEditorView.class/instance/private/editorClass.st
A Polymorph-Widgets.package/WorkAreaMorph.class/instance/accessing/adoptPaneColor_.st
R Polymorph-Widgets.package/WorkAreaMorph.class/instance/as yet unclassified/adoptPaneColor_.st
R Polymorph-Widgets.package/WorkAreaMorph.class/instance/as yet unclassified/layoutChanged.st
A Polymorph-Widgets.package/WorkAreaMorph.class/instance/recategorized/layoutChanged.st
M Refactoring-Core.package/RBExtractToTemporaryRefactoring.class/instance/transforming/insertTemporary.st
A Refactoring-Tests-Core.package/RBExtractToTemporaryTest.class/instance/tests/testExtractToTemporaryWithDuplicates.st
A Refactoring-Tests-Core.package/RBRefactoryTestDataApp.class/instance/as yet unclassified/demoRenameMethod_PermuteArgs_.st
A Refactoring-Tests-Core.package/RBRefactoryTestDataApp.class/instance/test/demoExampleCall.st
A Refactoring-Tests-Core.package/RBRefactoryTestDataApp.class/instance/test/demoMethodWithDuplicates.st
A Refactoring-Tests-Core.package/RBRenameMethodTest.class/instance/tests/testRenameMethodPermuteArgs.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - scripts/script91.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - updates/update40091.st
M ScriptLoader40.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/checkMorphsLeftOrTopFrom_.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/checkMorphsLeftOrTopFrom_size_.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/checkMorphsRightOrBottomFrom_.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/checkSplitters.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/isResizeableMorph_forSplitter_.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/newHSplitter.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/newHSplitterAt_.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/newVSplitter.st
R Spec-MorphicAdapters.package/extension/PanelMorph/instance/newVSplitterAt_.st
Log Message:
-----------
40091
6765 Refactoring Extract into Temporary should modify all duplicates
https://pharo.fogbugz.com/f/cases/6765
13565 extensions of Polymorph on Polymorph class should be folded in these classes
https://pharo.fogbugz.com/f/cases/13565
5618 Refactoring: Cannot permutate arguments
https://pharo.fogbugz.com/f/cases/5618
13540 Debugger: method refactoring option
https://pharo.fogbugz.com/f/cases/13540
http://files.pharo.org/image/40/40091.zip
July 16, 2014
Re: [Pharo-dev] The article "How to use this issue tracker?" has been changed in FogBugz.
by Ben Coman
Hey Tim, Thanks for you help with the wiki.
cheers -ben
Pharo Issue Tracker wrote:
> An article you are subscribed to, "How to use this issue tracker?", has been edited in FogBugz by Tim Mackinnon.
>
> Change: Simplified the text and made it read more naturaly
>
> To see the latest version, go to https://pharo.fogbugz.com/default.asp?W46
> To see a visual summary of the changes, go to https://pharo.fogbugz.com/default.asp?pg=pgWikiDiff&ixWikiPage=46&nRevision…
>
> You are subscribed to this article. If you do not want to receive automatic notifications in the future, unsubscribe (https://pharo.fogbugz.com/default.asp?pre=preUnsubscribe&pg=pgWiki&ixWikiPa…) from this article.
>
>
July 16, 2014