Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Thank you very much. buildWithSpec did it:) 2014-08-06 14:20 GMT+02:00 Mark Rizun : > Thomas, > > The problem is that I already have lots of tests and it's only the > beginning. Imagine running 50 tests at one time:) You will see 50 windows > on screen. Not very good > > > 2014-08-06 14:11 GMT+0

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Thomas, The problem is that I already have lots of tests and it's only the beginning. Imagine running 50 tests at one time:) You will see 50 windows on screen. Not very good 2014-08-06 14:11 GMT+02:00 Thomas Bany : > Going through the execution of 'openWithSpec', it looks like the method > you

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 14:11, Thomas Bany wrote: > Going through the execution of 'openWithSpec', it looks like the method you > are looking for is 'buildWithSpec'. It definitely instantiate the adapters as > well as the morphs, with the root of the morph tree being nil. > > I can't tell you if e

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Thomas Bany
Going through the execution of 'openWithSpec', it looks like the method you are looking for is 'buildWithSpec'. It definitely instantiate the adapters as well as the morphs, with the root of the morph tree being nil. I can't tell you if everything will work as intended though, but I don't see why

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
Maybe you can manually set the Adapter? Ben On 06 Aug 2014, at 12:39, Mark Rizun wrote: > Maybe it can, but it's more convenient for me to subclass it > So, how do I initialize it for tests without opening it with spec? > > 6 серп. 2014 12:00, користувач "Benjamin" > написав: > On 06 Aug 20

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Maybe it can, but it's more convenient for me to subclass it So, how do I initialize it for tests without opening it with spec? 6 серп. 2014 12:00, користувач "Benjamin" < benjamin.vanryseghem.ph...@gmail.com> написав: > On 06 Aug 2014, at 11:50, Mark Rizun wrote: > > > No they don't:) I just rep

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 11:50, Mark Rizun wrote: > No they don't:) I just replaced a menu of TextModel with my own, and added > some ast support. Can’t the menu be changed dynamically in TextModel? Ben

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 11:52, Thomas Bany wrote: > In short, when you call RewriteTool new, you have a fully initialized > description of the GUI, but you don't have the GUI. Exactly :) The model hierarchy is made to be independent of the rendering framework behind. Ben

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Thomas Bany
Okey, I hadn't read your question carefully :) Looking at TextModel>>sourceTextArea, it returns the widget of the model, meaning the adapter to PluggableTextMorph. The adapter (and the Morph behind) is instantiated during the building (called in openWithSpec) of the model, not its initialization.

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
The templateText was always initialized. But templateText sourceTextArea is still nil. No they don't:) I just replaced a menu of TextModel with my own, and added some ast support. 2014-08-06 11:45 GMT+02:00 Benjamin : > On 06 Aug 2014, at 11:30, Mark Rizun wrote: > > > Yes it is invoked(I mean

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 11:30, Mark Rizun wrote: > Yes it is invoked(I mean initializeWidgets in AbstractPanel) if I do: > RewriteTool new. If you put the halt after `self instantiateModels: #(#templateText #MyTextModel).` can you confirm that templateText is not nil? > And yes, I needed more func

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Thomas, no I don't have super call, because in subclasses I don't have initializeWidget method 2014-08-06 11:30 GMT+02:00 Mark Rizun : > Yes it is invoked(I mean initializeWidgets in AbstractPanel) if I do: > RewriteTool new. > And yes, I needed more functionality for TextModel > > > 2014-08-06

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Yes it is invoked(I mean initializeWidgets in AbstractPanel) if I do: RewriteTool new. And yes, I needed more functionality for TextModel 2014-08-06 11:26 GMT+02:00 Benjamin : > On 06 Aug 2014, at 11:16, Mark Rizun wrote: > > Actually in each:) > I have a class AbstractPanel and there is: > > i

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 11:16, Mark Rizun wrote: > Actually in each:) > I have a class AbstractPanel and there is: > > initializeWidgets > self instantiateModels: #(#templateText #MyTextModel). > templateText > dragEnabled; > text: self demoText; >

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Thomas Bany
Hi ! Did you call 'super initailizeWidgets' in the 'initializeWidgets' method of all the subclass of AbstractPanel ? Thomas. 2014-08-06 11:16 GMT+02:00 Mark Rizun : > Actually in each:) > I have a class AbstractPanel and there is: > > initializeWidgets > self instantiateModels: #(#templateT

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Actually in each:) I have a class AbstractPanel and there is: initializeWidgets self instantiateModels: #(#templateText #MyTextModel). templateText dragEnabled; text: self demoText; ast: (RBParser parseRewriteExpression: self demoText); aboutToStyle: true; model: self; menuOptionsSelector: #menuAc

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
On 06 Aug 2014, at 11:04, Mark Rizun wrote: > initializeWidgets > self > instantiateModels: #(#sourcePanel #SourcePanel #resultPanel > #ResultPanel #matchPanel #MatchPanel #transformPanel #TransformPanel > #acceptButton #ButtonModel). Sounds correct so far :) In wich panel

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
initializeWidgets self instantiateModels: #(#sourcePanel #SourcePanel #resultPanel #ResultPanel #matchPanel #MatchPanel #transformPanel #TransformPanel #acceptButton #ButtonModel). 2014-08-06 10:58 GMT+02:00 Benjamin : > I will say it depends how you initialise your objects ;) > > The good way t

Re: [Pharo-users] Question on Spec

2014-08-06 Thread Benjamin
I will say it depends how you initialise your objects ;) The good way to do it is in the method `initializeWidgets` Could you post it so I can tell you a bit more? Ben On 06 Aug 2014, at 10:56, Mark Rizun wrote: > Hi, > > I'm writing tests for RewriteTool which I build with spec. I have a >

[Pharo-users] Question on Spec

2014-08-06 Thread Mark Rizun
Hi, I'm writing tests for RewriteTool which I build with spec. I have a TextModel in this tool. When I do: /RewriteTool new openWithSpec/, /TextModel sourceTextArea/ is initialized, however in tests I don't want to open a tool, just want to initialize it. So I wrote /RewriteTool new/. Everything i