sounds good!
STef
On Nov 12, 2010, at 11:01 PM, Tudor Girba wrote:
> Until someone raises an objection :), I created a baseline42 that does not include RB, and official build based on 1.1 is using this one for now.
>
> Cheers,
> Doru
>
>
> On 12 Nov 2010, at 18:43, Tudor Girba wrote:
>
>> Hi,
>>
>> As I said, the problem appears because right now the default configuration of Moose loads the latest RB code, which no longer works with the OB that is loaded in 1.1.
>>
>> The solution I propose goes like this: we release a 4.2 based on Pharo 1.1, and then we move the development to Pharo 1.2.
>>
>> Any objections?
>>
>> Cheers,
>> Doru
>>
>>
>> On 12 Nov 2010, at 16:38, Lukas Renggli wrote:
>>
>>> "Interactive*Change" were all merged with their superclass "*Change".
>>> Just change the refernces to their superclass and everything should
>>> continue to work.
>>>
>>> Lukas
>>>
>>> On Friday, November 12, 2010, Fabrizio Perin <perin(a)iam.unibe.ch> wrote:
>>>> Thanks Doru. Yep definitely the cause is some modification of RB. What it is not clear is if it is a bug or Moose just load an unstable version (since they are still migrating the system).
>>>>
>>>> Cheers,
>>>>
>>>> Fabrizio
>>>>
>>>>
>>>> On 12 Nov 2010, at 16:02, Tudor Girba wrote:
>>>>
>>>>> Hmm, I can reproduce it. I am not sure where it comes from. The cause that come to mind is the recent changes in RB that is moving to Pharo 1.2. We are now loading RB to make sure that it loads in the Core, and this means that when RB changes, it affects the default of Moose.
>>>>>
>>>>> Cheers,
>>>>> Doru
>>>>>
>>>>>
>>>>> On 12 Nov 2010, at 13:03, Fabrizio Perin wrote:
>>>>>
>>>>>> Hi,
>>>>>> I started to develop a new tool but i cannot create a new class. When i try save a modified class template i got an error. Apparently the class "Refactoring-Core-Changes>>>InteractiveAddClassChange" has been removed since the build 433 of the Moose.
>>>>>>
>>>>>> Can anyone reproduce the error?
>>>>>>
>>>>>> Cheers,
>>>>>>
>>>>>> Fabrizio
>>>>>> _______________________________________________
>>>>>> Moose-dev mailing list
>>>>>> Moose-dev(a)iam.unibe.ch
>>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>
>>>>> --
>>>>> www.tudorgirba.com
>>>>>
>>>>> "From an abstract enough point of view, any two things are similar."
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> Moose-dev(a)iam.unibe.ch
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>>
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> Moose-dev(a)iam.unibe.ch
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>
>>> --
>>> Lukas Renggli
>>> www.lukas-renggli.ch
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> Moose-dev(a)iam.unibe.ch
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> www.tudorgirba.com
>>
>> "Next time you see your life passing by, say 'hi' and get to know her."
>>
>>
>>
>
> --
> www.tudorgirba.com
>
> "Being happy is a matter of choice."
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> Moose-dev(a)iam.unibe.ch
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Hi,
I started to develop a new tool but i cannot create a new class. When i try save a modified class template i got an error. Apparently the class "Refactoring-Core-Changes>>>InteractiveAddClassChange" has been removed since the build 433 of the Moose.
Can anyone reproduce the error?
Cheers,
Fabrizio
I've been playing with PetitParser and I keep running into what seems like a
common case. I want to skip everything up to the first match of my second
parser.
For example, if I don't care about anything in a string that comes before
'dd', I write:
parser2 := 'dd' asParser negate plus, 'dd' asParser ==> [ :nodes | nodes
second ].
parser2 parse: 'kslkxjclkxjcdd'. "Returns 'dd'"
This gets the job done, but seems awkward. What's the most elegant way?
I thought maybe "'dd' asParser not plus, 'dd' asParser."
But the image just hangs.
Thanks.
Sean
--
View this message in context: http://forum.world.st/PetitParser-skip-everything-up-to-X-tp3038824p3038824…
Sent from the Moose mailing list archive at Nabble.com.
I'm flopping around trying to flatten an array. I can't seem to get it...
input := '...
Optical Drive Type: CD-ROM, CD-R, CD-RW, DVD-ROM, DVD-R, DVD-R DL,
DVD-RW, DVD+R, DVD+R DL, DVD+RW
Optical Media Type:...'
lineBreak := #cr asParser / #lf asParser.
driveTypeHeader := 'Optical Drive Type: ' asParser skipUntil.
driveType := (', ' asParser / lineBreak) negate plus flatten.
additionalDriveType := ', ' asParser, driveType ==> [ :nodes | nodes second
].
driveTypeList := (driveType, additionalDriveType star).
parser := driveTypeHeader, driveTypeList, lineBreak ==> [ :nodes | nodes
second ].
parser parse: input.
Returns: "#('CD-ROM' #('CD-R' 'CD-RW' 'DVD-ROM' 'DVD-R' 'DVD-R DL' 'DVD-RW'
'DVD+R' 'DVD+R DL' 'DVD+RW'))"
Makes sense so far, but if I change the above to:
...
driveTypeList := (driveType, additionalDriveType star) flatten.
...
Returns: "'CD-ROM, CD-R, CD-RW, DVD-ROM, DVD-R, DVD-R DL, DVD-RW, DVD+R,
DVD+R DL, DVD+RW'"
Instead of combining the arrays, it made one big string!?
How do I do this?
Thanks.
Sean
--
View this message in context: http://forum.world.st/PetitParser-problem-flattening-a-collection-tp3038980…
Sent from the Moose mailing list archive at Nabble.com.
On 11 nov. 2010, at 23:25, Tudor Girba wrote:
> Hi,
>
> It looks like the Fame tests decide to fail from time to time. I could not figure out what the problem is right now, but if you want to reproduce the problem, take the latest Moose and run the tests multiple times. Different tests crash in what appears to be a random order.
>
> I could use some help on this one :)
Would it be possible to hack SUnit so that the test suite is kept in case of failures? Then we could assess which test sequence fails the tests.
--
Simon
Hi,
It looks like the Fame tests decide to fail from time to time. I could not figure out what the problem is right now, but if you want to reproduce the problem, take the latest Moose and run the tests multiple times. Different tests crash in what appears to be a random order.
I could use some help on this one :)
Cheers,
Doru
--
www.tudorgirba.com
"Every successful trip needs a suitable vehicle."
I make changes to load Moose on pharo 1.2
here is the script:
=====
Gofer new
squeaksource: 'rb';
package: 'AST-Core';
package: 'Refactoring-Core';
package: 'Refactoring-Changes';
package: 'Refactoring-Critics';
package: 'Refactoring-Environment';
package: 'Refactoring-Spelling';
load.
(ConfigurationOfShout project version: '1.2') load.
Gofer new
squeaksource: 'Moose';
package: 'ConfigurationOfMoose';
load.
(Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault.
=====
It loads, with some deprecation due to FileSystem. I have not the right to change that.
But moose loads :)
---
Jannik Laval
Hi Sean,
I don't know if PetitParser works on Squeak, but it was ported without
changes to GST and VisualWorks.
The package PetitGui requires Glamour and Mondrian (these seem to be
the classes you are reporting as dependencies), the Metacello
configuration ConfigurationOfPetitParser should take care of that
automatically (maybe somebody can confirm?).
However you don't need to load the package PetitGui to use
PetitParser. PetitParser is all you need to write your parsers. To
test it also PetitTests. Both packages have no fancy dependencies.
Lukas
On 11 November 2010 12:59, <sean(a)clipperadams.com> wrote:
> Hey Lukas, how (if at all) can I load PetitParser in Squeak 4.1? Â No hits on the Squeak lists, and I tried to load via the Metacello configuration at http://source.lukas-renggli.ch/petit/ and got a bunch of dependency warnings:
> This package depends on the following classes:
> Â MorphTreeModel
> Â StandardWindow
> Â UIThemeWatery2
> Â AbstractTutorial
> Â MorphTreeNodeModel
> Â TabPanelBorder
> Â MorphTreeColumn
> Â Announcer
> Â ThemeIcons
> Â PluggableShoutMorph
> Â MultistateButtonMorph
> Â TabGroupMorph
> Â Announcement
> You must resolve these dependencies before you will be able to load these definitions:
> Â Announcer>>reset
> Â GLMAccumulator
> Â GLMAccumulator>>activeEntity
> Â GLMAccumulator>>activeEntity:
> Â GLMAccumulator>>addPaneFrom:
> Â GLMAccumulator>>entityToSelect
> Â GLMAccumulator>>entityToSelect:
> Â GLMAccumulator>>innerPortEvent:
> Â GLMAccumulator>>outerPortEvent:
> Â GLMAccumulator>>removePaneIndex:
> Â GLMAccumulator>>renderGlamorouslyOn:
> Â GLMAccumulator>>tryToSelectPaneFrom:
> Â GLMAction
> Â GLMAction>>actOn:
> Â GLMAction>>actOn:with:
> Â GLMAction>>action
> Â GLMAction>>action:
> Â GLMAction>>category
> Â GLMAction>>category:
> Â GLMAction>>hasIcon
> Â GLMAction>>hasShortcut
> Â GLMAction>>hasTitle
> Â GLMAction>>icon
> Â GLMAction>>icon:
> Â GLMAction>>isCategorized
> Â GLMAction>>position
> Â GLMAction>>position:
> Â GLMAction>>shortcut
> Â GLMAction>>shortcut:
> Â GLMAction>>title
> Â GLMAction>>title:
> Â GLMAction>>worksWithMorphic
> Â GLMAction>>worksWithSeaside
> Â GLMActionAnnouncement
> Â GLMActionAnnouncement classSide>>action:
> Â GLMActionAnnouncement>>action
> Â GLMActionAnnouncement>>action:
> Â GLMActionListPresentation
> Â GLMActionListPresentation>>beHorizontal
> Â GLMActionListPresentation>>isHorizontal
> Â GLMActionListPresentation>>isHorizontal:
> Â GLMActionListPresentation>>isVertical
> Â GLMActionListPresentation>>renderGlamorouslyOn:
> Â GLMAnnouncer
> Â GLMAnnouncer>>announce:
> Â GLMAnnouncer>>announcer
> Â GLMAnnouncer>>resetAnnouncer
> Â GLMAnnouncer>>suspendAll
> Â GLMAnnouncer>>suspendAllWhile:
> Â GLMAnnouncingCollection
> Â GLMAnnouncingCollection>>add:
> Â GLMAnnouncingCollection>>at:
> Â GLMAnnouncingCollection>>collect:
> Â GLMAnnouncingCollection>>do:
> Â GLMAnnouncingCollection>>includes:
> Â GLMAnnouncingCollection>>initialize
> Â GLMAnnouncingCollection>>isCollection
> Â GLMAnnouncingCollection>>printString
> Â GLMAnnouncingCollection>>remove:
> Â GLMAnnouncingCollection>>removeLast
> Â GLMAnnouncingCollection>>size
> Â GLMAnnouncingCollection>>withIndexDo:
> Â GLMBoundPort
> Â GLMBoundPort>>=
> Â GLMBoundPort>>hasPane
> Â GLMBoundPort>>hash
> Â GLMBoundPort>>notingPresentationChangeDo:
> Â GLMBoundPort>>pane
> Â GLMBoundPort>>validate:
> Â GLMBrowser
> Â GLMBrowser classSide>>defaultStatusbarPane
> Â GLMBrowser classSide>>withStatusbar
> Â GLMBrowser>>addDefaultStatusbarTransmissionFrom:
> Â GLMBrowser>>addPane:
> Â GLMBrowser>>addStatusbar
> Â GLMBrowser>>addTransmission:
> Â GLMBrowser>>context
> Â GLMBrowser>>custom:
> Â GLMBrowser>>defaultRenderer
> Â GLMBrowser>>hasStatusbar
> Â GLMBrowser>>hasStatusbar:
> Â GLMBrowser>>initialize
> Â GLMBrowser>>initializeScriptingDefaults
> Â GLMBrowser>>open
> Â GLMBrowser>>openOn:
> Â GLMBrowser>>openOn:with:
> Â GLMBrowser>>openWith:
> Â GLMBrowser>>outerPortEvent:
> Â GLMBrowser>>panes
> Â GLMBrowser>>postCopy
> Â GLMBrowser>>removeLastPane
> Â GLMBrowser>>removePane:
> Â GLMBrowser>>resolveDestinationPort:
> Â GLMBrowser>>resolveOriginPort:
> Â GLMBrowser>>resolvePort:defaultPortName:
> Â GLMBrowser>>screenshot:on:after:
> Â GLMBrowser>>startOn:
> Â GLMBrowser>>statusbarPane
> Â GLMBrowser>>statusbarPresentation
> Â GLMBrowser>>transmissions
> Â GLMBrowser>>transmit
> Â GLMBrowser>>unregisterFromAllAnnouncements
> Â GLMBrowser>>update
> Â GLMButtonModel
> Â GLMButtonModel>>buttonLabel
> Â GLMButtonModel>>execute
> Â GLMButtonModel>>glamourAction
> Â GLMButtonModel>>glamourAction:
> Â GLMCompositePresentation
> Â GLMCompositePresentation>>=
> Â GLMCompositePresentation>>accordionArrangement
> Â GLMCompositePresentation>>add:
> Â GLMCompositePresentation>>allSatisfy:
> Â GLMCompositePresentation>>anySatisfy:
> Â GLMCompositePresentation>>arrangement
> Â GLMCompositePresentation>>arrangement:
> Â GLMCompositePresentation>>at:
> Â GLMCompositePresentation>>clear
> Â GLMCompositePresentation>>collect:
> Â GLMCompositePresentation>>custom:
> Â GLMCompositePresentation>>do:
> Â GLMCompositePresentation>>first
> Â GLMCompositePresentation>>includes:
> Â GLMCompositePresentation>>isEmpty
> Â GLMCompositePresentation>>last
> Â GLMCompositePresentation>>matchingPresentations
> Â GLMCompositePresentation>>pane:
> Â GLMCompositePresentation>>postCopy
> Â GLMCompositePresentation>>presentations
> Â GLMCompositePresentation>>presentations:
> Â GLMCompositePresentation>>renderGlamorouslyOn:
> Â GLMCompositePresentation>>resetAnnouncer
> Â GLMCompositePresentation>>select:
> Â GLMCompositePresentation>>size
> Â GLMCompositePresentation>>stackedArrangement
> Â GLMCompositePresentation>>stackedVerticallyArrangement
> Â GLMCompositePresentation>>tabbedArrangement
> Â GLMCompositePresentation>>unregisterFromAllAnnouncements
> Â GLMCompositePresentation>>update
> Â GLMCompositePresentation>>verticallyStackedArrangement
> Â GLMCompositePresentation>>withAllDo:
> Â GLMContextChanged
> Â GLMContextChanged>>announcesNewSelection
> Â GLMContextChanged>>oldValue
> Â GLMContextChanged>>oldValue:
> Â GLMContextChanged>>presentation
> Â GLMContextChanged>>presentation:
> Â GLMContextChanged>>printOn:
> Â GLMContextChanged>>property
> Â GLMContextChanged>>property:
> Â GLMContextChanged>>value
> Â GLMContextChanged>>value:
> Â GLMDiffPresentation
> Â GLMDiffPresentation>>renderGlamorouslyOn:
> Â GLMDropDownListMorphSelectionChanged
> Â GLMDropDownListMorphSelectionChanged>>selectionValue
> Â GLMDropDownListMorphSelectionChanged>>selectionValue:
> Â GLMDropDownListPresentation
> Â GLMDropDownListPresentation>>defaultValidate:on:
> Â GLMDropDownListPresentation>>renderGlamorouslyOn:
> Â GLMDropDownListPresentation>>selectedIndex
> Â GLMDropDownListPresentation>>selectedIndex:
> Â GLMDynamicPresentation
> Â GLMDynamicPresentation>>currentPresentation
> Â GLMDynamicPresentation>>initialize
> Â GLMDynamicPresentation>>presentation:
> Â GLMDynamicPresentation>>presentationTransformation
> Â GLMDynamicPresentation>>presentationTransformation:
> Â GLMDynamicPresentation>>renderGlamorouslyOn:
> Â GLMDynamicPresentation>>with:
> Â GLMExpander
> Â GLMExpander>>innerPortEvent:
> Â GLMExpander>>outerPortEvent:
> Â GLMExplicitBrowser
> Â GLMExplicitBrowser>>addNewPane
> Â GLMExplicitBrowser>>addNewPaneNamed:
> Â GLMExplicitBrowser>>addTransmission:
> Â GLMExplicitBrowser>>custom:
> Â GLMExplicitBrowser>>from:
> Â GLMExplicitBrowser>>fromOutside:
> Â GLMExplicitBrowser>>innerPortEvent:
> Â GLMExplicitBrowser>>lastTransmission
> Â GLMExplicitBrowser>>paneNamed:
> Â GLMExplicitBrowser>>passivelyFrom:
> Â GLMExplicitBrowser>>sendTo:from:
> Â GLMExplicitBrowser>>sendTo:from:with:
> Â GLMExplicitBrowser>>sendTo:fromOutside:
> Â GLMExplicitBrowser>>sendToOutside:from:
> Â GLMExplicitBrowser>>showOn:
> Â GLMExplicitBrowser>>updateContextWith:
> Â GLMExplicitBrowser>>using:
> Â GLMFinder
> Â GLMFinder>>addPaneFrom:
> Â GLMFinder>>addPaneFromInner:
> Â GLMFinder>>fromPrevious:
> Â GLMFinder>>innerPortEvent:
> Â GLMFinder>>outerPortEvent:
> Â GLMFinder>>passivelyFromPrevious:
> Â GLMFinder>>renderGlamorouslyOn:
> Â GLMFinder>>using:
> Â GLMFlexiblePresentation
> Â GLMFlexiblePresentation>>currentPresentation
> Â GLMFlexiblePresentation>>renderGlamorouslyOn:
> Â GLMFormatedPresentation
> Â GLMFormatedPresentation>>format
> Â GLMFormatedPresentation>>format:
> Â GLMFormatedPresentation>>formatedDisplayValue
> Â GLMFormatedPresentation>>formatedDisplayValueOf:
> Â GLMFormatedPresentation>>icon
> Â GLMFormatedPresentation>>icon:
> Â GLMFormatedPresentation>>iconFor:
> Â GLMGenericAction
> Â GLMGenericAction>>worksWithMorphic
> Â GLMGenericAction>>worksWithSeaside
> Â GLMImplicitBrowser
> Â GLMImplicitBrowser>>addPresentation:
> Â GLMImplicitBrowser>>custom:
> Â GLMImplicitBrowser>>presentations
> Â GLMImplicitBrowser>>scriptTransmission
> Â GLMImplicitBrowser>>show:
> Â GLMInputPresentation
> Â GLMInputPresentation>>renderGlamorouslyOn:
> Â GLMItemAdded
> Â GLMItemRemoved
> Â GLMKeyStroke
> Â GLMLabelPresentation
> Â GLMLabelPresentation>>renderGlamorouslyOn:
> Â GLMListPresentation
> Â GLMListPresentation>>defaultValidate:on:
> Â GLMListPresentation>>renderGlamorouslyOn:
> Â GLMListingPresentation
> Â GLMListingPresentation>>allowDeselection
> Â GLMListingPresentation>>allowsDeselection
> Â GLMListingPresentation>>allowsDeselection:
> Â GLMListingPresentation>>allowsFilter
> Â GLMListingPresentation>>allowsInput
> Â GLMListingPresentation>>allowsSearch
> Â GLMListingPresentation>>amountToShow
> Â GLMListingPresentation>>beMultiple
> Â GLMListingPresentation>>beSingle
> Â GLMListingPresentation>>childrenValueOf:
> Â GLMListingPresentation>>childrenValueOf:atLevel:
> Â GLMListingPresentation>>columns
> Â GLMListingPresentation>>filterOn:
> Â GLMListingPresentation>>filterStrategy
> Â GLMListingPresentation>>grayRoundedTags
> Â GLMListingPresentation>>hasTags
> Â GLMListingPresentation>>hasTagsFilter
> Â GLMListingPresentation>>helpMessage
> Â GLMListingPresentation>>helpMessage:
> Â GLMListingPresentation>>isMultiple
> Â GLMListingPresentation>>isSingle
> Â GLMListingPresentation>>limitsAmount
> Â GLMListingPresentation>>searchOn:
> Â GLMListingPresentation>>searchStrategy
> Â GLMListingPresentation>>selectionPath
> Â GLMListingPresentation>>selectionPath:
> Â GLMListingPresentation>>showOnly:
> Â GLMListingPresentation>>tags:
> Â GLMListingPresentation>>tagsBlock
> Â GLMListingPresentation>>tagsBlock:
> Â GLMListingPresentation>>tagsFilter:
> Â GLMListingPresentation>>tagsFilterBlock
> Â GLMListingPresentation>>tagsFor:
> Â GLMListingPresentation>>tagsFor:to:
> Â GLMListingPresentation>>tagsStyle
> Â GLMListingPresentation>>whiteRectangledTags
> Â GLMLoggedObject
> Â GLMLoggedObject classSide>>initialize
> Â GLMLoggedObject classSide>>logger
> Â GLMLoggedObject classSide>>logger:
> Â GLMLoggedObject>>announce:
> Â GLMLoggedObject>>initialize
> Â GLMLoggedObject>>logger
> Â GLMLoggedObject>>logger:
> Â GLMMatchingPresentationsChanged
> Â GLMMatchingPresentationsChanged>>matchingPresentations
> Â GLMMatchingPresentationsChanged>>oldMatchingPresentations
> Â GLMMatchingPresentationsChanged>>oldMatchingPresentations:
> Â GLMMatchingPresentationsChanged>>pane
> Â GLMMatchingPresentationsChanged>>pane:
> Â GLMMatchingPresentationsChanged>>printOn:
> Â GLMMenuInvoked
> Â GLMMenuInvoked classSide>>action:on:
> Â GLMMenuInvoked>>initializeAction:on:
> Â GLMMenuInvoked>>menuMorph
> Â GLMMenuItemSelected
> Â GLMMockSimpleTransmission
> Â GLMMockSimpleTransmission classSide>>new
> Â GLMMockSimpleTransmission>>initialize
> Â GLMMockSimpleTransmission>>transmit
> Â GLMMockSimpleTransmission>>transmitIn:
> Â GLMMockSimpleTransmission>>wasTransmited
> Â GLMMondrianPresentation
> Â GLMMondrianPresentation>>painting
> Â GLMMondrianPresentation>>painting:
> Â GLMMondrianPresentation>>renderGlamorouslyOn:
> Â GLMMondrianPresentation>>renderOn:
> Â GLMMondrianPresentation>>view
> Â GLMMondrianPresentation>>view:
> Â GLMMorphPresentation
> Â GLMMorphPresentation>>renderGlamorouslyOn:
> Â GLMMorphTreeColumn
> Â GLMMorphTreeColumn>>glamourColumn:
> Â GLMMorphTreeColumn>>rowMorphFor:
> Â GLMMorphicAction
> Â GLMMorphicAction>>worksWithMorphic
> Â GLMMorphicAction>>worksWithSeaside
> Â GLMMorphicModel
> Â GLMMorphicModel>>allKeystrokeActions
> Â GLMMorphicModel>>allMenuActions
> Â GLMMorphicModel>>executeMenuAction:
> Â GLMMorphicModel>>glamourPresentation
> Â GLMMorphicModel>>glamourPresentation:
> Â GLMMorphicModel>>initialize
> Â GLMMorphicModel>>keystroke:from:
> Â GLMMorphicModel>>menu:
> Â GLMNoBrowser
> Â GLMNoBrowser classSide>>initialize
> Â GLMNoBrowser classSide>>initializeUniqueInstance
> Â GLMNoBrowser classSide>>new
> Â GLMNoBrowser classSide>>uniqueInstance
> Â GLMNoBrowser>>innerPortEvent:
> Â GLMPane
> Â GLMPane classSide>>in:
> Â GLMPane classSide>>named:
> Â GLMPane classSide>>named:in:
> Â GLMPane classSide>>portClass
> Â GLMPane>>addPresentation:
> Â GLMPane>>addPresentationSilently:
> Â GLMPane>>addPresentations:
> Â GLMPane>>asGlamorousPane
> Â GLMPane>>browser
> Â GLMPane>>browser:
> Â GLMPane>>clearIn:
> Â GLMPane>>defaultName
> Â GLMPane>>hasBrowser
> Â GLMPane>>initialize
> Â GLMPane>>initializeIn:
> Â GLMPane>>initializeNamed:
> Â GLMPane>>initializeNamed:in:
> Â GLMPane>>isAllowedToNotePresentationsChanged
> Â GLMPane>>lastActivePresentation
> Â GLMPane>>lastActivePresentation:
> Â GLMPane>>matchingPresentations
> Â GLMPane>>name
> Â GLMPane>>name:
> Â GLMPane>>notingPresentationChangeDo:
> Â GLMPane>>port:
> Â GLMPane>>portEvent:
> Â GLMPane>>ports
> Â GLMPane>>postCopy
> Â GLMPane>>presentations
> Â GLMPane>>presentations:
> Â GLMPane>>printOn:
> Â GLMPane>>renderGlamorouslyOn:
> Â GLMPane>>unregisterFromAllAnnouncements
> Â GLMPane>>update
> Â GLMPane>>whenMatchingPresentationsChanged:
> Â GLMPane>>whenPresentationsChanged:
> Â GLMPaneAdded
> Â GLMPaneAnnouncement
> Â GLMPaneAnnouncement classSide>>pane:atPosition:inBrowser:
> Â GLMPaneAnnouncement>>browser
> Â GLMPaneAnnouncement>>browser:
> Â GLMPaneAnnouncement>>pane
> Â GLMPaneAnnouncement>>pane:
> Â GLMPaneAnnouncement>>position
> Â GLMPaneAnnouncement>>position:
> Â GLMPanePort
> Â GLMPanePort>>basicValue:
> Â GLMPanePort>>changeValueTo:in:
> Â GLMPanePort>>copyAccordingToPaneMapping:inNewBrowser:
> Â GLMPanePort>>pane
> Â GLMPanePort>>pane:
> Â GLMPanePort>>printOn:
> Â GLMPanePort>>receive:in:
> Â GLMPanePort>>resetValue
> Â GLMPanePort>>value
> Â GLMPanePort>>value:in:
> Â GLMPaneRemoved
> Â GLMPaneRemoved classSide>>pane:fromBrowser:
> Â GLMPaneReplaced
> Â GLMPaneReplaced classSide>>oldPane:newPane:fromBrowser:
> Â GLMPaneReplaced>>newPane
> Â GLMPaneReplaced>>newPane:
> Â GLMPaneReplaced>>oldPane
> Â GLMPaneReplaced>>oldPane:
> Â GLMPaneSelected
> Â GLMPluggableShoutMorph
> Â GLMPluggableShoutMorph>>announcer
> Â GLMPluggableShoutMorph>>selectFrom:to:
> Â GLMPort
> Â GLMPort>>copyAccordingToPaneMapping:inNewBrowser:
> Â GLMPort>>hasPane
> Â GLMPort>>name
> Â GLMPort>>name:
> Â GLMPort>>notingPresentationChangeDo:
> Â GLMPort>>printOn:
> Â GLMPort>>receive:
> Â GLMPort>>receive:in:
> Â GLMPort>>validate:
> Â GLMPort>>value
> Â GLMPort>>value:
> Â GLMPort>>value:in:
> Â GLMPortEvent
> Â GLMPortEvent classSide>>on:previouslyValued:
> Â GLMPortEvent classSide>>on:previouslyValued:in:
> Â GLMPortEvent>>hasChanged
> Â GLMPortEvent>>initializeOn:previouslyValued:
> Â GLMPortEvent>>initializeOn:previouslyValued:in:
> Â GLMPortEvent>>oldValue
> Â GLMPortEvent>>pane
> Â GLMPortEvent>>port
> Â GLMPortEvent>>portName
> Â GLMPortEvent>>printOn:
> Â GLMPortEvent>>transmissionContext
> Â GLMPortEvent>>value
> Â GLMPresentation
> Â GLMPresentation>>=
> Â GLMPresentation>>acceptsSelection
> Â GLMPresentation>>acceptsSelection:
> Â GLMPresentation>>act:entitled:
> Â GLMPresentation>>act:entitled:categorized:
> Â GLMPresentation>>act:icon:entitled:
> Â GLMPresentation>>act:on:
> Â GLMPresentation>>act:on:entitled:
> Â GLMPresentation>>act:on:entitled:categorized:
> Â GLMPresentation>>actions
> Â GLMPresentation>>actions:
> Â GLMPresentation>>addAction:
> Â GLMPresentation>>allActions
> Â GLMPresentation>>allowNil
> Â GLMPresentation>>color
> Â GLMPresentation>>color:
> Â GLMPresentation>>colorValue
> Â GLMPresentation>>condition
> Â GLMPresentation>>condition:
> Â GLMPresentation>>copy
> Â GLMPresentation>>customValidation
> Â GLMPresentation>>customValidation:
> Â GLMPresentation>>defaultValidate:on:
> Â GLMPresentation>>display:
> Â GLMPresentation>>displayValue
> Â GLMPresentation>>doValidate:on:
> Â GLMPresentation>>dynamicActions
> Â GLMPresentation>>entity
> Â GLMPresentation>>entity:
> Â GLMPresentation>>hasTitle
> Â GLMPresentation>>hasTitleIcon
> Â GLMPresentation>>initialize
> Â GLMPresentation>>innerPortEvent:
> Â GLMPresentation>>matches
> Â GLMPresentation>>morphicAct:entitled:
> Â GLMPresentation>>morphicAct:on:entitled:
> Â GLMPresentation>>noSelection
> Â GLMPresentation>>noTitle
> Â GLMPresentation>>open:on:entitled:
> Â GLMPresentation>>outerPortEvent:
> Â GLMPresentation>>pane
> Â GLMPresentation>>pane:
> Â GLMPresentation>>parentPrototype
> Â GLMPresentation>>parentPrototype:
> Â GLMPresentation>>populate:icon:entitled:with:
> Â GLMPresentation>>populate:on:entitled:with:
> Â GLMPresentation>>populate:on:with:
> Â GLMPresentation>>postCopy
> Â GLMPresentation>>postTransformation
> Â GLMPresentation>>printOn:
> Â GLMPresentation>>registerAnnouncements
> Â GLMPresentation>>registeredAnnouncers
> Â GLMPresentation>>renderGlamorouslyOn:
> Â GLMPresentation>>rootPrototype
> Â GLMPresentation>>selection
> Â GLMPresentation>>selection:
> Â GLMPresentation>>selectionTransformation:
> Â GLMPresentation>>send:
> Â GLMPresentation>>shouldValidate
> Â GLMPresentation>>shouldValidate:
> Â GLMPresentation>>status:
> Â GLMPresentation>>strongSelection
> Â GLMPresentation>>strongSelection:
> Â GLMPresentation>>title
> Â GLMPresentation>>title:
> Â GLMPresentation>>titleIcon
> Â GLMPresentation>>titleIcon:
> Â GLMPresentation>>titleIconValue
> Â GLMPresentation>>titleValue
> Â GLMPresentation>>transformation
> Â GLMPresentation>>transformation:
> Â GLMPresentation>>unregisterFromAllAnnouncements
> Â GLMPresentation>>update
> Â GLMPresentation>>updateOn:from:
> Â GLMPresentation>>updateOn:from:when:
> Â GLMPresentation>>updateOn:fromAll:
> Â GLMPresentation>>useExplicitNotNil
> Â GLMPresentation>>useImplicitNotNil
> Â GLMPresentation>>usesExplicitNotNil
> Â GLMPresentation>>usesImplicitNotNil
> Â GLMPresentation>>validate:on:
> Â GLMPresentation>>when:
> Â GLMPresentation>>whenContextChanged:
> Â GLMPresentation>>whenKindOf:
> Â GLMPresentation>>withAllDo:
> Â GLMPresentationBoundPort
> Â GLMPresentationBoundPort>>copyAccordingToPaneMapping:inNewBrowser:
> Â GLMPresentationBoundPort>>hash
> Â GLMPresentationBoundPort>>pane
> Â GLMPresentationBoundPort>>port
> Â GLMPresentationBoundPort>>presentation
> Â GLMPresentationBoundPort>>presentation:
> Â GLMPresentationBoundPort>>receive:in:
> Â GLMPresentationBoundPort>>value
> Â GLMPresentationBoundPort>>value:in:
> Â GLMPresentationUpdated
> Â GLMPresentationUpdated>>presentation
> Â GLMPresentationUpdated>>presentation:
> Â GLMPresentationsChanged
> Â GLMPresentationsChanged>>oldPresentations
> Â GLMPresentationsChanged>>oldPresentations:
> Â GLMPresentationsChanged>>pane
> Â GLMPresentationsChanged>>pane:
> Â GLMPresentationsChanged>>presentations
> Â GLMPresentationsChanged>>printOn:
> Â GLMSelectedTextChanged
> Â GLMSelectedTextChanged>>end
> Â GLMSelectedTextChanged>>end:
> Â GLMSelectedTextChanged>>selectedText
> Â GLMSelectedTextChanged>>selectedText:
> Â GLMSelectedTextChanged>>start
> Â GLMSelectedTextChanged>>start:
> Â GLMSimplePort
> Â GLMSimplePort>>receive:in:
> Â GLMSimplePort>>value
> Â GLMSimplePort>>value:in:
> Â GLMStacker
> Â GLMStacker>>aPane:
> Â GLMStacker>>renderGlamorouslyOn:
> Â GLMSystemWindow
> Â GLMSystemWindow>>buildWindowMenu
> Â GLMSystemWindow>>delete
> Â GLMSystemWindow>>extent:
> Â GLMSystemWindow>>refreshHorizontalScollbars
> Â GLMTabPanelBorder
> Â GLMTabPanelBorder>>frameRectangle:on:
> Â GLMTablePresentation
> Â GLMTablePresentation>>addColumn:
> Â GLMTablePresentation>>column:evaluated:
> Â GLMTablePresentation>>column:valueFor:
> Â GLMTablePresentation>>columns
> Â GLMTablePresentation>>columns:
> Â GLMTablePresentation>>renderGlamorouslyOn:
> Â GLMTablePresentation>>titleValueOfColumn:
> Â GLMTabulator
> Â GLMTabulator>>addColumn:
> Â GLMTabulator>>addColumn:size:
> Â GLMTabulator>>addColumn:span:
> Â GLMTabulator>>addRow:
> Â GLMTabulator>>addRow:size:
> Â GLMTabulator>>addRow:span:
> Â GLMTabulator>>cell
> Â GLMTabulator>>cellOrColumn
> Â GLMTabulator>>cellOrRow
> Â GLMTabulator>>column:
> Â GLMTabulator>>column:size:
> Â GLMTabulator>>column:span:
> Â GLMTabulator>>initializeScriptingDefaults
> Â GLMTabulator>>renderGlamorouslyOn:
> Â GLMTabulator>>row:
> Â GLMTabulator>>row:size:
> Â GLMTabulator>>row:span:
> Â GLMTestPane
> Â GLMTestPane classSide>>new
> Â GLMTestPane classSide>>portClass
> Â GLMTestPane>>browser
> Â GLMTestPane>>browser:
> Â GLMTestPort
> Â GLMTestPort>>receive:
> Â GLMTestPort>>receive:in:
> Â GLMTestPort>>seenTransmissions
> Â GLMTextModel
> Â GLMTextModel>>accept:notifying:
> Â GLMTextModel>>highlightSmalltalk
> Â GLMTextModel>>highlightSmalltalk:
> Â GLMTextModel>>highlightSmalltalkContext
> Â GLMTextModel>>highlightSmalltalkContext:
> Â GLMTextModel>>keystroke:from:
> Â GLMTextModel>>menu:shifted:
> Â GLMTextModel>>selectSilently:
> Â GLMTextModel>>selection
> Â GLMTextModel>>shoutAboutToStyle:
> Â GLMTextModel>>text
> Â GLMTextModel>>text:
> Â GLMTextPresentation
> Â GLMTextPresentation>>forSmalltalk
> Â GLMTextPresentation>>forSmalltalk:
> Â GLMTextPresentation>>highlightSmalltalk
> Â GLMTextPresentation>>highlightSmalltalkContext
> Â GLMTextPresentation>>renderGlamorouslyOn:
> Â GLMTextPresentation>>selectedTextBlock
> Â GLMTextPresentation>>selectedTextBlock:
> Â GLMTextPresentation>>selectionInterval
> Â GLMTextPresentation>>selectionInterval:
> Â GLMTextPresentation>>textBlock
> Â GLMTextPresentation>>textBlock:
> Â GLMTextualPresentation
> Â GLMTextualPresentation>>cursorPosition
> Â GLMTextualPresentation>>cursorPosition:
> Â GLMTextualPresentation>>selectedText
> Â GLMTextualPresentation>>selectedText:
> Â GLMTextualPresentation>>text
> Â GLMTextualPresentation>>text:
> Â GLMTransmission
> Â GLMTransmission>>activeOrigins
> Â GLMTransmission>>addActiveOrigin:
> Â GLMTransmission>>addPassiveOrigin:
> Â GLMTransmission>>addPresentation:
> Â GLMTransmission>>addPresentations:
> Â GLMTransmission>>andShow:
> Â GLMTransmission>>andShowIfNone:
> Â GLMTransmission>>andShowWithoutOverride:
> Â GLMTransmission>>browser
> Â GLMTransmission>>browser:
> Â GLMTransmission>>changePortsAccordingToPaneMapping:
> Â GLMTransmission>>changePortsAccordingToPaneMapping:fromOldBrowser:toNewBrowser:
> Â GLMTransmission>>condition
> Â GLMTransmission>>condition:
> Â GLMTransmission>>context
> Â GLMTransmission>>context:
> Â GLMTransmission>>destination
> Â GLMTransmission>>destination:
> Â GLMTransmission>>ensureBundleStrategy
> Â GLMTransmission>>ensureNoOverrideBundleStrategy
> Â GLMTransmission>>from:
> Â GLMTransmission>>from:port:
> Â GLMTransmission>>from:transformed:
> Â GLMTransmission>>fromOutside:
> Â GLMTransmission>>initialize
> Â GLMTransmission>>meetsCondition
> Â GLMTransmission>>originReferences
> Â GLMTransmission>>originatesAt:
> Â GLMTransmission>>origins
> Â GLMTransmission>>passiveOrigins
> Â GLMTransmission>>passivelyFrom:
> Â GLMTransmission>>postCopy
> Â GLMTransmission>>presentations
> Â GLMTransmission>>presentations:
> Â GLMTransmission>>printOn:
> Â GLMTransmission>>to:
> Â GLMTransmission>>to:port:
> Â GLMTransmission>>toOutside:
> Â GLMTransmission>>transformation
> Â GLMTransmission>>transformation:
> Â GLMTransmission>>transformed:
> Â GLMTransmission>>transmissionStrategy
> Â GLMTransmission>>transmissionStrategy:
> Â GLMTransmission>>transmit
> Â GLMTransmission>>transmitIn:
> Â GLMTransmission>>value
> Â GLMTransmission>>when:
> Â GLMTreeMorphModel
> Â GLMTreeMorphModel>>allKeystrokeActions
> Â GLMTreeMorphModel>>allMenuActions
> Â GLMTreeMorphModel>>amountToFilterBy
> Â GLMTreeMorphModel>>amountToFilterBy:
> Â GLMTreeMorphModel>>announce:
> Â GLMTreeMorphModel>>announcer
> Â GLMTreeMorphModel>>childrenBlock
> Â GLMTreeMorphModel>>childrenBlock:
> Â GLMTreeMorphModel>>defaultPageSize
> Â GLMTreeMorphModel>>defaultPageSize:
> Â GLMTreeMorphModel>>displayFormat
> Â GLMTreeMorphModel>>displayFormat:
> Â GLMTreeMorphModel>>doSearchOrFilter
> Â GLMTreeMorphModel>>executeFilter
> Â GLMTreeMorphModel>>executeSearch
> Â GLMTreeMorphModel>>explicitSelection:
> Â GLMTreeMorphModel>>explicitlySelectItem:
> Â GLMTreeMorphModel>>explicitlySelectMultipleItems:
> Â GLMTreeMorphModel>>filteredRoots
> Â GLMTreeMorphModel>>glamourPresentation
> Â GLMTreeMorphModel>>glamourPresentation:
> Â GLMTreeMorphModel>>inputText
> Â GLMTreeMorphModel>>inputText:
> Â GLMTreeMorphModel>>inputTextEnabled
> Â GLMTreeMorphModel>>keyStroke:from:
> Â GLMTreeMorphModel>>menu:shifted:
> Â GLMTreeMorphModel>>nodeModelFor:
> Â GLMTreeMorphModel>>onDoubleClick
> Â GLMTreeMorphModel>>resetInput
> Â GLMTreeMorphModel>>resetTagsToFilterBy
> Â GLMTreeMorphModel>>roots
> Â GLMTreeMorphModel>>roots:
> Â GLMTreeMorphModel>>selection:
> Â GLMTreeMorphModel>>selectionPathItems
> Â GLMTreeMorphModel>>shouldFilterByAmount
> Â GLMTreeMorphModel>>shouldFilterByTag:
> Â GLMTreeMorphModel>>shouldFilterByTextInput
> Â GLMTreeMorphModel>>tagsToFilterBy
> Â GLMTreeMorphModel>>toggleAmountToFilterBy
> Â GLMTreeMorphModel>>toggleFilteringByTag:
> Â GLMTreeMorphModel>>updateRoots
> Â GLMTreeMorphModel>>when:do:
> Â GLMTreeMorphNodeModel
> Â GLMTreeMorphNodeModel>>buttonForTag:filter:
> Â GLMTreeMorphNodeModel>>childrenItems
> Â GLMTreeMorphNodeModel>>containerTree
> Â GLMTreeMorphNodeModel>>containerTree:
> Â GLMTreeMorphNodeModel>>contents
> Â GLMTreeMorphNodeModel>>displayText
> Â GLMTreeMorphNodeModel>>elementColumn
> Â GLMTreeMorphNodeModel>>enabled
> Â GLMTreeMorphNodeModel>>executeMenuAction:
> Â GLMTreeMorphNodeModel>>expandParentPath
> Â GLMTreeMorphNodeModel>>icon
> Â GLMTreeMorphNodeModel>>keyStroke:from:
> Â GLMTreeMorphNodeModel>>menu:shifted:
> Â GLMTreeMorphNodeModel>>parentNode
> Â GLMTreeMorphNodeModel>>parentNode:
> Â GLMTreeMorphNodeModel>>path
> Â GLMTreeMorphNodeModel>>pathIn:
> Â GLMTreeMorphNodeModel>>printOn:
> Â GLMTreeMorphNodeModel>>rowMorphForColumn:
> Â GLMTreeMorphNodeModel>>shouldBeDisplayed
> Â GLMTreeMorphNodeModel>>shouldBeDisplayedByTags
> Â GLMTreeMorphNodeModel>>shouldBeDisplayedByText
> Â GLMTreeMorphNodeModel>>tagsColumn
> Â GLMTreeMorphNodeModel>>toggleFilteringByTag:
> Â GLMTreeMorphNodeModel>>withContentsDo:
> Â GLMTreeMorphSelectionChanged
> Â GLMTreeMorphSelectionChanged>>selectionPathValue
> Â GLMTreeMorphSelectionChanged>>selectionPathValue:
> Â GLMTreeMorphSelectionChanged>>selectionValue
> Â GLMTreeMorphSelectionChanged>>selectionValue:
> Â GLMTreeMorphStrongSelectionChanged
> Â GLMTreeMorphStrongSelectionChanged>>strongSelectionValue
> Â GLMTreeMorphStrongSelectionChanged>>strongSelectionValue:
> Â GLMTreeNodePane
> Â GLMTreePresentation
> Â GLMTreePresentation>>allDisplayedDo:
> Â GLMTreePresentation>>allExpanded
> Â GLMTreePresentation>>children
> Â GLMTreePresentation>>children:
> Â GLMTreePresentation>>childrenValueOf:
> Â GLMTreePresentation>>childrenValueOf:atLevel:
> Â GLMTreePresentation>>defaultValidate:on:
> Â GLMTreePresentation>>renderGlamorouslyOn:
> Â GLMTreePresentation>>rootsExpanded
> Â GLMTreePresentation>>shouldAllExpand
> Â GLMTreePresentation>>shouldAllExpand:
> Â GLMTreePresentation>>shouldRootsExpand
> Â GLMTreePresentation>>shouldRootsExpand:
> Â GLMTreePresentation>>withChildrenOf:do:
> Â GLMUITheme
> Â GLMUITheme classSide>>baseColor
> Â GLMUITheme classSide>>basePassiveBackgroundColor
> Â GLMUITheme classSide>>baseSelectionColor
> Â GLMUITheme classSide>>darkBaseColor
> Â GLMUITheme classSide>>importGlamorousIcons
> Â GLMUITheme classSide>>importIcons:fromFolder:inClass:category:
> Â GLMUITheme classSide>>lightBaseColor
> Â GLMUITheme classSide>>lightSelectionColor
> Â GLMUITheme classSide>>newDefaultSettings
> Â GLMUITheme classSide>>setPreferredWorldBackground
> Â GLMUITheme classSide>>themeName
> Â GLMUITheme classSide>>veryLightSelectionColor
> Â GLMUITheme>>buttonCornerStyleIn:
> Â GLMUITheme>>buttonLabelForText:
> Â GLMUITheme>>buttonMinHeight
> Â GLMUITheme>>buttonMinWidth
> Â GLMUITheme>>buttonNormalBorderStyleFor:
> Â GLMUITheme>>buttonNormalFillStyleFor:
> Â GLMUITheme>>buttonSelectedBorderStyleFor:
> Â GLMUITheme>>buttonSelectedFillStyleFor:
> Â GLMUITheme>>checkboxForm
> Â GLMUITheme>>checkboxSelectedForm
> Â GLMUITheme>>checkboxUnselectedForm
> Â GLMUITheme>>configureWindowBorderFor:
> Â GLMUITheme>>createMenuBoxFor:
> Â GLMUITheme>>dockingBarNormalFillStyleFor:
> Â GLMUITheme>>dropListDisabledFillStyleFor:
> Â GLMUITheme>>dropListNormalBorderStyleFor:
> Â GLMUITheme>>dropListNormalFillStyleFor:
> Â GLMUITheme>>glamorousBaseColorFor:
> Â GLMUITheme>>glamorousBasePassiveBackgroundColorFor:
> Â GLMUITheme>>glamorousBaseSelectionColorFor:
> Â GLMUITheme>>glamorousDarkBaseColorFor:
> Â GLMUITheme>>glamorousLightColorFor:
> Â GLMUITheme>>glamorousLightSelectionColorFor:
> Â GLMUITheme>>glamorousNormalFillStyleFor:height:
> Â GLMUITheme>>glamorousNormalFillStyleWithBaseColor:for:height:
> Â GLMUITheme>>groupPanelBorderStyleFor:
> Â GLMUITheme>>initialize
> Â GLMUITheme>>listDisabledFillStyleFor:
> Â GLMUITheme>>menuItemInDockingBarSelectedFillStyleFor:
> Â GLMUITheme>>menuPinForm
> Â GLMUITheme>>newCheckboxMarkerForm
> Â GLMUITheme>>newFocusIndicatorMorphFor:
> Â GLMUITheme>>newRadioButtonMarkerForm
> Â GLMUITheme>>newRadioMarkerForm
> Â GLMUITheme>>newWindowCloseForm
> Â GLMUITheme>>newWindowCloseOverForm
> Â GLMUITheme>>newWindowMaximizeForm
> Â GLMUITheme>>newWindowMaximizeOverForm
> Â GLMUITheme>>newWindowMenuForm
> Â GLMUITheme>>newWindowMenuPassiveForm
> Â GLMUITheme>>newWindowMinimizeForm
> Â GLMUITheme>>newWindowMinimizeOverForm
> Â GLMUITheme>>plainGroupPanelBorderStyleFor:
> Â GLMUITheme>>progressBarFillStyleFor:
> Â GLMUITheme>>progressBarProgressFillStyleFor:
> Â GLMUITheme>>radioButtonForm
> Â GLMUITheme>>radioButtonSelectedForm
> Â GLMUITheme>>resizerGripNormalFillStyleFor:
> Â GLMUITheme>>scrollbarNormalButtonFillStyleFor:
> Â GLMUITheme>>scrollbarNormalFillStyleFor:
> Â GLMUITheme>>scrollbarNormalThumbFillStyleFor:
> Â GLMUITheme>>scrollbarPagingAreaCornerStyleIn:
> Â GLMUITheme>>scrollbarThumbCornerStyleIn:
> Â GLMUITheme>>separatorFillStyleFor:
> Â GLMUITheme>>sliderDisabledFillStyleFor:
> Â GLMUITheme>>splitterNormalFillStyleFor:
> Â GLMUITheme>>splitterPressedFillStyleFor:
> Â GLMUITheme>>subgroupColorFrom:
> Â GLMUITheme>>tabLabelNormalBorderStyleFor:
> Â GLMUITheme>>tabLabelNormalFillStyleFor:
> Â GLMUITheme>>tabLabelSelectedFillStyleFor:
> Â GLMUITheme>>tabPanelBorderStyleFor:
> Â GLMUITheme>>taskbarButtonLabelColorFor:
> Â GLMUITheme>>taskbarFillStyleFor:
> Â GLMUITheme>>taskbarThumbnailCornerStyleFor:
> Â GLMUITheme>>taskbarThumbnailNormalBorderStyleFor:
> Â GLMUITheme>>textEditorDisabledFillStyleFor:
> Â GLMUITheme>>textEditorNormalBorderStyleFor:
> Â GLMUITheme>>verticesForSimpleArrow:
> Â GLMUITheme>>windowActiveFillStyleFor:
> Â GLMUITheme>>windowActiveTitleFillStyleFor:
> Â GLMUITheme>>windowClosePassiveForm
> Â GLMUITheme>>windowInactiveFillStyleFor:
> Â GLMUITheme>>windowInactiveTitleFillStyleFor:
> Â GLMUITheme>>windowMaximizePassiveForm
> Â GLMUITheme>>windowMenuPassiveForm
> Â GLMUITheme>>windowMinimizePassiveForm
> Â GLMUIThemeIcons
> Â GLMUIThemeIcons classSide>>checkboxMarkerForm
> Â GLMUIThemeIcons classSide>>checkboxSelectedForm
> Â GLMUIThemeIcons classSide>>checkboxSelectedFormContents
> Â GLMUIThemeIcons classSide>>checkboxUnselectedForm
> Â GLMUIThemeIcons classSide>>checkboxUnselectedFormContents
> Â GLMUIThemeIcons classSide>>form16x16FromContents:
> Â GLMUIThemeIcons classSide>>menuPinForm
> Â GLMUIThemeIcons classSide>>menuPinFormContents
> Â GLMUIThemeIcons classSide>>radioButtonMarkerForm
> Â GLMUIThemeIcons classSide>>radioButtonSelectedForm
> Â GLMUIThemeIcons classSide>>radioButtonSelectedFormContents
> Â GLMUIThemeIcons classSide>>radioButtonUnselectedForm
> Â GLMUIThemeIcons classSide>>radioButtonUnselectedFormContents
> Â GLMUIThemeIcons classSide>>radioSelectedForm
> Â GLMUIThemeIcons classSide>>radioSelectedFormContents
> Â GLMUIThemeIcons classSide>>radioUnselectedForm
> Â GLMUIThemeIcons classSide>>radioUnselectedFormContents
> Â GLMUIThemeIcons classSide>>windowCloseForm
> Â GLMUIThemeIcons classSide>>windowCloseFormContents
> Â GLMUIThemeIcons classSide>>windowCloseInactiveForm
> Â GLMUIThemeIcons classSide>>windowCloseInactiveFromContents
> Â GLMUIThemeIcons classSide>>windowMaximizeForm
> Â GLMUIThemeIcons classSide>>windowMaximizeFormContents
> Â GLMUIThemeIcons classSide>>windowMaximizeInactiveForm
> Â GLMUIThemeIcons classSide>>windowMaximizeInactiveFormContents
> Â GLMUIThemeIcons classSide>>windowMenuForm
> Â GLMUIThemeIcons classSide>>windowMenuFormContents
> Â GLMUIThemeIcons classSide>>windowMenuInactiveForm
> Â GLMUIThemeIcons classSide>>windowMenuInactiveFormContents
> Â GLMUIThemeIcons classSide>>windowMinimizeForm
> Â GLMUIThemeIcons classSide>>windowMinimizeFormContents
> Â GLMUIThemeIcons classSide>>windowMinimizeInactiveForm
> Â GLMUIThemeIcons classSide>>windowMinimizeInactiveFormContents
> Â LazyTabGroupMorph
> Â LazyTabGroupMorph>>addLazyPage:label:
> Â LazyTabGroupMorph>>addPage:
> Â LazyTabGroupMorph>>addPage:at:
> Â LazyTabGroupMorph>>clear
> Â LazyTabGroupMorph>>initialize
> Â LazyTabGroupMorph>>lazyPages
> Â LazyTabGroupMorph>>onPageIndexChange
> Â LazyTabGroupMorph>>onPageIndexChange:
> Â LazyTabGroupMorph>>pageAt:
> Â LazyTabGroupMorph>>updatePageIndex:
> Â MOAnnouncer
> Â MOAnnouncer>>action:
> Â MOAnnouncer>>announce:
> Â MOAnnouncer>>draggable
> Â MOAnnouncer>>every:do:
> Â MOAnnouncer>>forNode:whenClickingUpdateNode:whenClickingBackUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>forNode:whenClickingUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>forNode:whenEnteringUpdateNode:whenLeavingUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>forNodes:whenEnteringUpdateShapes:whenLeavingUpdateShapes:
> Â MOAnnouncer>>forNodes:whenEnteringUpdateShapes:whenLeavingUpdateShapes:withLayoutUpdate:
> Â MOAnnouncer>>forward
> Â MOAnnouncer>>forward:
> Â MOAnnouncer>>forwarder
> Â MOAnnouncer>>from:port:do:
> Â MOAnnouncer>>highlightWhenOver
> Â MOAnnouncer>>highlightWhenOver:
> Â MOAnnouncer>>initialize
> Â MOAnnouncer>>isForwarder
> Â MOAnnouncer>>item:action:
> Â MOAnnouncer>>lookFor:
> Â MOAnnouncer>>menu:
> Â MOAnnouncer>>menuItems
> Â MOAnnouncer>>menuItems:
> Â MOAnnouncer>>menuMorphBlock:
> Â MOAnnouncer>>menuMorphFor:
> Â MOAnnouncer>>nodraggable
> Â MOAnnouncer>>popupText
> Â MOAnnouncer>>popupText:
> Â MOAnnouncer>>popupText:delay:
> Â MOAnnouncer>>popupView:
> Â MOAnnouncer>>popupView:delay:
> Â MOAnnouncer>>popupView:delay:zoomedInBy:
> Â MOAnnouncer>>popupView:zoomedInBy:
> Â MOAnnouncer>>port:
> Â MOAnnouncer>>ports
> Â MOAnnouncer>>processes
> Â MOAnnouncer>>refreshLayoutEvery:
> Â MOAnnouncer>>refreshLayoutEvery:view:
> Â MOAnnouncer>>registerForEvent:forNode:updateNode:updateLayout:
> Â MOAnnouncer>>registerForEvent:forNode:updateShape:updateLayout:
> Â MOAnnouncer>>registerForEvent:forNodes:updateNode:updateLayout:
> Â MOAnnouncer>>registerForEvent:forNodes:updateShape:updateLayout:
> Â MOAnnouncer>>registerMenu
> Â MOAnnouncer>>resetWindowStatus
> Â MOAnnouncer>>selectFrameFromX
> Â MOAnnouncer>>selectFrameFromY
> Â MOAnnouncer>>setWindowStatusTo:forElement:
> Â MOAnnouncer>>stopProcesses
> Â MOAnnouncer>>strongHighlightWhenOver:
> Â MOAnnouncer>>toggleAllProcesses
> Â MOAnnouncer>>unsubscribeForEvent:
> Â MOAnnouncer>>viewRenderer
> Â MOAnnouncer>>viewRenderer:
> Â MOAnnouncer>>whenClickingUpdateNode:
> Â MOAnnouncer>>whenClickingUpdateNode:whenLeavingUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>whenClickingUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>whenClickingUpdateShape:
> Â MOAnnouncer>>whenClickingUpdateShape:updateLayout:
> Â MOAnnouncer>>whenEnteringUpdateNode:
> Â MOAnnouncer>>whenEnteringUpdateNode:whenLeavingUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>whenEnteringUpdateNode:withLayoutUpdate:
> Â MOAnnouncer>>windowStatus:
> Â MOAnnouncer>>windowStatus:delay:
> Â MOContentChanged
> Â MOElementDeselection
> Â MOElementSelection
> Â MOElementSelection>>initializeEvent:on:
> Â MOElementSelection>>isMultiple
> Â MOElementSelection>>isMultiple:
> Â MOElementSelection>>isUnique
> Â MOElementSelection>>setAsMultiple
> Â MOEvent
> Â MOEvent classSide>>event:on:
> Â MOEvent classSide>>initializedInstance
> Â MOEvent>>cancel
> Â MOEvent>>current
> Â MOEvent>>currentInteraction
> Â MOEvent>>dispatch
> Â MOEvent>>element
> Â MOEvent>>element:
> Â MOEvent>>elementInteraction
> Â MOEvent>>hasElement
> Â MOEvent>>initialize
> Â MOEvent>>initializeEvent:on:
> Â MOEvent>>isAltKeyPressed
> Â MOEvent>>isCancelled
> Â MOEvent>>isCtrlKeyPressed
> Â MOEvent>>isInitiator
> Â MOEvent>>isShiftKeyPressed
> Â MOEvent>>model
> Â MOEvent>>modelElement
> Â MOEvent>>node
> Â MOEvent>>printOn:
> Â MOEvent>>root
> Â MOEvent>>setAsNotHandled
> Â MOEvent>>timestamp
> Â MOEvent>>transmit:onPort:
> Â MOEvent>>viewRenderer
> Â MOEvent>>viewRenderer:
> Â MOKeyDown
> Â MOKeyEvent
> Â MOKeyEvent>>character
> Â MOKeyEvent>>printOn:
> Â MOKeyPressed
> Â MOKeyUp
> Â MOMouseDouble
> Â MOMouseDown
> Â MOMouseDrag
> Â MOMouseDrag classSide>>step:
> Â MOMouseDrag>>nodesToDrag
> Â MOMouseDrag>>step
> Â MOMouseDrag>>step:
> Â MOMouseDrag>>stepAsPoint:
> Â MOMouseEnter
> Â MOMouseEvent
> Â MOMouseEvent>>isLeftButtonPressed
> Â MOMouseEvent>>isMiddleButtonPressed
> Â MOMouseEvent>>isRightButtonPressed
> Â MOMouseEvent>>nodeAbove
> Â MOMouseEvent>>position
> Â MOMouseLeave
> Â MOMouseMove
> Â MOMouseUp
> Â MOPortEvent
> Â MOPortEvent>>interaction
> Â MOPortEvent>>interaction:
> Â MOPortEvent>>portName
> Â MOPortEvent>>portName:
> Â MOPortEvent>>value
> Â MOPortEvent>>value:
> Â MOWindowStatusChanged
> Â MOWindowStatusChanged>>newLabel
> Â MOWindowStatusChanged>>newLabel:
> Â MOZoomEvent
> Â MOZoomEvent classSide>>decrease
> Â MOZoomEvent classSide>>increase
> Â MOZoomEvent classSide>>initializedInstance
> Â MOZoomEvent classSide>>new
> Â MOZoomEvent>>isZoomDecrease
> Â MOZoomEvent>>isZoomIncrease
> Â MOZoomEvent>>value:
> Â MondrianTutorial
> Â MondrianTutorial>>introductionText
> Â MondrianTutorial>>t01Introduction
> Â MondrianTutorial>>t02FirstVisualization
> Â MondrianTutorial>>t03VisualizingClasses
> Â MondrianTutorial>>t04GivingANewShape
> Â MondrianTutorial>>t05MultipleEdges
> Â MondrianTutorial>>t06Colors
> Â MondrianTutorial>>t07MoreOnColors
> Â MondrianTutorial>>t08Popupview
> Â MondrianTutorial>>t09Subviews
> Â MondrianTutorial>>t10ForwardingEvents
> Â MondrianTutorial>>t11Events
> Â MondrianTutorial>>t12Interactions
> Â MondrianTutorial>>t13Conclusion
> Â MondrianTutorial>>tutorial
> Â MultistateButtonMorph>>labelGraphic:
> Â TestAnnouncement
> Â TestAnnouncement>>parameter
> Â TestAnnouncement>>parameter:
>
> Thanks.
> Sean
>
--
Lukas Renggli
www.lukas-renggli.ch
Hi,
I noticed that most problems are posted twice (once once on the mailing list, and once in the tracker), so I added this mailing list for the notifications of the issue tracker. Like this we can add the issues to the tracker and keep the mailing list messages for clarifying issues.
I also noticed that the Pharo mailing list took the same route, so I thought of trying. If you have other preferences, just let me know.
Cheers,
Doru
--
www.tudorgirba.com
"There are no old things, there are only old ways of looking at them."