Request for Info: VisualParts & triggerEvent:s

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Request for Info: VisualParts & triggerEvent:s

Travis Griggs-3
I'm trying to get a feel for how much the triggerEvent: system is being used for the VisualParts (i.e. things that show up in the view tree). What I need is for end users to open up their applications, and then run the following script, and send me back the result of the transcript. It should be run with your application running. Not just with the IDE running (it will turn up nothing).

results := Set new.
VisualPart allGeneralInstancesDo:
[:each |
each myEventTable ifNotNil:
[:et |
et keys
do: [:event | results add: (Array with: each class name with: event)]]].
Transcript clear.
(results asSortedCollection: [:a :b | a first < b first]) do:
[:each |
Transcript
nextPutAll: each first;
space;
nextPutAll: each last;
cr].
Transcript endEntry

I've attached it as a .ws file as well.

Thanks to any and all who can help me out.

--
Travis Griggs
Objologist
If you can't say "Did it First!", you'd better be able to say "Did it Better!"




VisualPartEventsQuery.ws (412 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Request for Info: VisualParts & triggerEvent:s

Travis Griggs-3

On Aug 7, 2007, at 15:33, Tudor Girba wrote:

Hi Travis,

I have run the script after opening Moose and several visualizations. However, nothing showed up in the Transcript.

Nothing is a valid (and frankly expected) answer. I should have printed 'nothing' in that case to avoid confusion. Thank you for the results. Very much. Hope to see them from others too!

--
Travis Griggs
Objologist
One man's blue plane is another man's pink plane.


Reply | Threaded
Open this post in threaded view
|

Re: Request for Info: VisualParts & triggerEvent:s

Denis Johnson
In reply to this post by Travis Griggs-3
nothing from our apps.

cheers Denis

On 8/8/07, Travis Griggs <[hidden email]> wrote:

> I'm trying to get a feel for how much the triggerEvent: system is being used
> for the VisualParts (i.e. things that show up in the view tree). What I need
> is for end users to open up their applications, and then run the following
> script, and send me back the result of the transcript. It should be run with
> your application running. Not just with the IDE running (it will turn up
> nothing).
>
> results := Set new.
> VisualPart allGeneralInstancesDo:
>  [:each |
>  each myEventTable ifNotNil:
>  [:et |
>  et keys
>  do: [:event | results add: (Array with: each class name with: event)]]].
> Transcript clear.
> (results asSortedCollection: [:a :b | a first < b first]) do:
>  [:each |
>  Transcript
>  nextPutAll: each first;
>  space;
>  nextPutAll: each last;
>  cr].
> Transcript endEntry
>
> I've attached it as a .ws file as well.
>
> Thanks to any and all who can help me out.
>
>
> --
> Travis Griggs
> Objologist
> If you can't say "Did it First!", you'd better be able to say "Did it
> Better!"
>
>
>
>
>
>
>

Reply | Threaded
Open this post in threaded view
|

AW: Request for Info: VisualParts & triggerEvent:s

Christian Haider
In reply to this post by Travis Griggs-3
DataSetView cellValueChanged
EditTextView wantParentControl
MonochartView changed
MultichartView changed
MultichartView chartClicked:
TabControlComposite tabChanged
 
cheers,
    Christian

Von: [hidden email] [mailto:[hidden email]] Im Auftrag von Travis Griggs
Gesendet: Dienstag, 7. August 2007 23:30
An: VW NC; VW DEV
Betreff: Request for Info: VisualParts & triggerEvent:s

I'm trying to get a feel for how much the triggerEvent: system is being used for the VisualParts (i.e. things that show up in the view tree). What I need is for end users to open up their applications, and then run the following script, and send me back the result of the transcript. It should be run with your application running. Not just with the IDE running (it will turn up nothing).

results := Set new.
VisualPart allGeneralInstancesDo:
[:each |
each myEventTable ifNotNil:
[:et |
et keys
do: [:event | results add: (Array with: each class name with: event)]]].
Transcript clear.
(results asSortedCollection: [:a :b | a first < b first]) do:
[:each |
Transcript
nextPutAll: each first;
space;
nextPutAll: each last;
cr].
Transcript endEntry

I've attached it as a .ws file as well.

Thanks to any and all who can help me out.

--
Travis Griggs
Objologist
If you can't say "Did it First!", you'd better be able to say "Did it Better!"