Re: [Pharo-users] GTDocument how to

2018-10-03 Thread Hilaire
Ok got it. What I need is a bit different to what is GTDocumenter. Thanks for the help. Hilaire Le 02/10/2018 à 19:56, Juraj Kubelka via Pharo-users a écrit : > You are right, we cannot have real Morph widget inside of Bloc element. -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] GTDocument how to

2018-10-02 Thread Juraj Kubelka via Pharo-users
--- Begin Message --- Hi Hilaire, You are right, we cannot have real Morph widget inside of Bloc element. Cheers, Juraj > On Oct 2, 2018, at 14:38, Hilaire wrote: > > Thanks for the tips. It works, the view is not interactive though > > Hilaire > > > Le 30/09/2018 à 16:18, Juraj Kubelka via

Re: [Pharo-users] GTDocument how to

2018-10-02 Thread Hilaire
Thanks for the tips. It works, the view is not interactive though Hilaire Le 30/09/2018 à 16:18, Juraj Kubelka via Pharo-users a écrit : > You can create extension similar to one you have > here: DrGeoCanvas>>#gtInspectorCanvasIn: > > DrGeoCanvas>>#gtCanvasIn: aView > > ^ self view  > ifNil: [

Re: [Pharo-users] GTDocument how to

2018-09-30 Thread Hilaire
For DSL geometric sketch, I use the DrGeoCanvas class. When instantiated with the #minimal message, it holds a view with only the sketch and no widget. Therefore It is an interactive geometric sketch in a Morph, it can be obtained with the #view message. Inspected methods with the pragma indicate

Re: [Pharo-users] GTDocument how to

2018-09-29 Thread Juraj Kubelka via Pharo-users
--- Begin Message --- Ok. As far as I know, Iceberg does not update local repositories in this use case. Which is fine for developers, less convenient for users. Juraj -- Juraj Kubelka El 29-09-2018, a la(s) 16:42, Hilaire escribió: > Likely. As GIT is integrated to Pharo, when installing th

Re: [Pharo-users] GTDocument how to

2018-09-29 Thread Hilaire
Likely. As GIT is integrated to Pharo, when installing the package I was expecting the local repo to be synchronized from remote master. I will delete local repos and try it again, it will take time. Hilaire Le 29/09/2018 à 20:43, Juraj Kubelka via Pharo-users a écrit : > I do not know how it is

Re: [Pharo-users] GTDocument how to

2018-09-29 Thread Juraj Kubelka via Pharo-users
--- Begin Message --- To be more concrete: you might have locally an old Bloc repository. Juraj -- Juraj Kubelka El 29-09-2018, a la(s) 15:43, Juraj Kubelka via Pharo-users escribió: > --- End Message ---

Re: [Pharo-users] GTDocument how to

2018-09-29 Thread Juraj Kubelka via Pharo-users
--- Begin Message --- I do not know how it is possible, but your header mentions Pharo 6.1, but according to the UI you have Pharo 7. And the missing class is part of Pharo 6 only and is not required in Pharo 7. One reason might be that you keep locally old (2 months) GToolkit code. Can you ch

Re: [Pharo-users] GTDocument how to

2018-09-29 Thread Alistair Grant
Hi Hilaire, This looks like you have an old VM. If you get the current stable VM it should be fine. The current Pharo 6 & 7 VMs are both dated 28 June 2018. Cheers, Alistair On Sat, 29 Sep 2018 at 19:11, Hilaire wrote: > > Nice! > > I got issue when installing GToolkit on P7. May be the VM is

Re: [Pharo-users] GTDocument how to

2018-09-28 Thread Tim Mackinnon
Ah yes - the newer Tonel format should help - I haven’t consciously noticed when having slow loading if all of the dependencies were Tonel2. I still wonder if we may have a code loading perf issue overall - not sure if it’s ever been measured (might be a great summer project for someone). Hopef

Re: [Pharo-users] GTDocument how to

2018-09-28 Thread Hilaire
Hi, I don't remember to be annoyed by the loading time of GToolkit. Regarding DrGeo it is installed from Tonel file format repository (which is local too), and it is usually very fast. Oh! But P6.1 may not be up to the task with Tonel? I don't remember clearly all the reason why I skipped P6 (the

Re: [Pharo-users] GTDocument how to

2018-09-28 Thread Craig
September 2018 19:53 To: Any question about pharo is welcome Subject: Re: [Pharo-users] GTDocument how to When I installed GTDocumenter into a clean P61 image it took a really long time (like 20+ mins), so it may be something you have to wait out. It does beg the question why it takes so long

Re: [Pharo-users] GTDocument how to

2018-09-28 Thread Tudor Girba
Hi, Please load the whole GT. Also, in the meantime we switched to Tonel which should speedup the loading time significantly. Cheers, Doru > On Sep 28, 2018, at 7:53 PM, Tim Mackinnon wrote: > > When I installed GTDocumenter into a clean P61 image it took a really long > time (like 20+ mins

Re: [Pharo-users] GTDocument how to

2018-09-28 Thread Tim Mackinnon
When I installed GTDocumenter into a clean P61 image it took a really long time (like 20+ mins), so it may be something you have to wait out. It does beg the question why it takes so long? Actually all of our code loading is quite slow compared to other languages that load a lot more code. Not s

Re: [Pharo-users] GTDocument how to

2018-09-27 Thread Hilaire
Thanks for the tips. Where should be key in this text? I went installing DrGeo along Documenter in P6.1, but it is stalled when installing XML dependecies (a bit old, true). Conflict with XML? or Issue with DrGeo on P6.1, may be both. This is so fragile. Hilaire Le 27/09/2018 à 14:51, Juraj K

Re: [Pharo-users] GTDocument how to

2018-09-27 Thread Juraj Kubelka via Pharo-users
--- Begin Message --- Hi Hilaire, As far as I understand your description, Documenter should fit. You can start by using: -=-=-=- GtDocumenter editorForText: 'This is a Dr. Geo tutorial. Evaluate the following script: [[[ "A Dr. Geo script that returns DrGeo canvas" ]]] Extensions are done

[Pharo-users] GTDocument how to

2018-09-26 Thread Hilaire
Hi, I would like a document where user types in normal text and plugs in DrGeo view. The drgeo view will be dual. It will be alternatively the output of a DrGeo script (drgeo canvas) or the DrGeo script itself (code). The view will be interactive. In drgeo canvas mode, user plays with the geometr