Re: [Pharo-users] Ridiculous we are

2014-09-25 Thread Hilaire Fernandes
Le 24/09/2014 18:48, Benjamin Pollack a écrit : > On Tue, 23 Sep 2014 08:51:54 -0400, Hilaire wrote: > >> Le 23/09/2014 14:09, Damien Cassou a écrit : >>> I recently read documents about utf-8 encoding. In all of them, the >>> author says that pathnames should be kept as is because you never know

Re: [Pharo-users] [Ann] Phratch 4.0

2014-10-20 Thread Hilaire Fernandes
Le 20/10/2014 10:36, jannik laval a écrit : > So, Hilaire, if you have some times to test the two firmware or if you > are using one on Pharo, or if you have any knowledge to share. It will > be really fast to make something work. > > Thank you again for yoour feedback and Ihope you can help me fo

Re: [Pharo-users] [Pharo-dev] Tudor Girba joins Pharo Board

2013-07-03 Thread Hilaire Fernandes
Le 03/07/2013 09:59, Tudor Girba a écrit : > We just have to capitalize on that, and I want to start by making > explicit what makes Pharo unique and valuable. Everyone thinks of > various things, but we do not yet have a concerted message. This > message, and I will aim at one single message, has

Re: [Pharo-users] Convert 'è' to 'e'

2013-07-04 Thread Hilaire Fernandes
Yes, but sorry I forgot it was a long time ago for a seaside application, in a previous life. But digging a bit you should find, may be in the String methods. Hilaire Le 04/07/2013 17:24, Davide Varvello a écrit : > Hi there, > Is there any method to convert an accented char (or string) to the n

Re: [Pharo-users] Laser Game

2013-09-05 Thread Hilaire Fernandes
Le 05/09/2013 09:27, Маркіян Різун a écrit : > Used RectangleMorph, still doesn't work. Obviously, it's because of some > methods of SketchMorph that are used. > A Rectangle morph should do the job. What are these methods? I suspect it should not be a big deal. You may want to use two images side

Re: [Pharo-users] Morph relative positions

2013-09-21 Thread Hilaire Fernandes
Le 20/09/2013 16:23, Norbert Hartl a écrit : > > I figured out how to do it. Basically it is exactly what I need: > transform geo coordinates to screen coordinates. But then LineMorph does > not seem to like a borderWidth below 1. It is a drag. I think I could > burn several days on this crap. Bet

[Pharo-users] Scaled PNG image

2013-11-20 Thread Hilaire Fernandes
Hello, In Pharo 2.0 (true in 1.4 as well), it looks PNG bitmap are wrongly rotated or scaled when they contain alpha transparency. In the example bellow with the joined bitmap, the alpha gray color are rendered darker when the imagemorph is scaled or rotated. Sqeak does not suffer this problem

Re: [Pharo-users] Writing a GUI - Where to start?

2013-11-20 Thread Hilaire Fernandes
Le 20/11/2013 17:30, Mun Mun a écrit : > > To sum up this thread with many different options proposed, what would > be the right path for a newbie like me ? > Hello Check the Collaboractive pharo book online, there is a GUI chapter discussing morph and polymorphic. Once documented and feature

Re: [Pharo-users] [Athens] Finding if a line passes through a specific pixel .

2013-11-20 Thread Hilaire Fernandes
Hello, You may want to calculate the distance between the mouse position and your path (I guess a bezier curve). Then given this distance and a tolerance to zero you decide if the mouse position is more or less on your path. Calculating the distance you will also get for free the place where to ad

Re: [Pharo-users] Scaled PNG image

2013-11-21 Thread Hilaire Fernandes
Le 21/11/2013 08:21, Stéphane Ducasse a écrit : > > On Nov 20, 2013, at 4:54 PM, Hilaire Fernandes > wrote: > >> Hello, >> >> In Pharo 2.0 (true in 1.4 as well), it looks PNG bitmap are wrongly >> rotated or scaled when they contain alpha transparency.

Re: [Pharo-users] Scaled PNG image

2013-11-21 Thread Hilaire Fernandes
Le 21/11/2013 16:44, Igor Stasenko a écrit : > Except that while adopting cairo surfaces i also has odd transparency > issues until i realized > that cairo surface stores pixel data using premultiplied alpha format,e.g.: > > pixelColor = (R*A, G*A, B*A, A) > > while bitblt assumes it is (R,G,B,A)

Re: [Pharo-users] Scaled PNG image

2013-11-21 Thread Hilaire Fernandes
Le 21/11/2013 21:27, Hilaire Fernandes a écrit : > Le 21/11/2013 08:21, Stéphane Ducasse a écrit : >> >> On Nov 20, 2013, at 4:54 PM, Hilaire Fernandes >> wrote: >> >>> Hello, >>> >>> In Pharo 2.0 (true in 1.4 as well), it looks PNG bitm

Re: [Pharo-users] How images can be loaded

2013-11-22 Thread Hilaire Fernandes
Le 22/11/2013 19:00, Ronie Salgado a écrit : > I would like to know how I could load .png image into pharo, and being > able to Check my post a few days ago about PNG image, it comes with code sample. Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Pharo on Android - is it available?

2014-01-01 Thread Hilaire Fernandes
Hi Peter, Within Dr.Geo, Dmitry Golubovsky (in copy) helped me a lot for the Android VM with tuning it and writing the necessary wrapper to the OS. (For example to access the virtual keyboard, network). The Android and iOS VM share some points as the need for an ARM's JIT and small improvement ov

[Pharo-users] Fwd: Re: Pharo on Android - is it available?

2014-01-01 Thread Hilaire Fernandes
Forwarding this message from Dmitry. Hilaire Message original Sujet: Re: Pharo on Android - is it available? Date : Wed, 1 Jan 2014 10:15:07 -0500 De :Dmitry Golubovsky Pour : Hilaire Fernandes Hilaire, I see the question asked by Peter, but all mail links are

Re: [Pharo-users] Pharo private develoment

2014-01-02 Thread Hilaire Fernandes
Le 02/01/2014 12:25, Norbert Hartl a écrit : >> >> I use filetree and bitbucket for my private projects, and I use also >> metacello to build with them. > > I still didn’t find the time to look into filetree. It is yet another > thing to learn. Can you commit to bitbucket from within pharo? And I

[Pharo-users] Number slider

2014-01-03 Thread Hilaire Fernandes
Hello, Do we have number slider Morph like this one: http://diveintohtml5.info/i/input-type-number-opera.png Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Pharo and the Morphic one window limitation

2014-01-11 Thread Hilaire Fernandes
Hello, For Desktop application you can use Pharo+XUL. Pavel mentioned it a couple of weeks ago, I forgot the name but the archive will tell you Hilaire Le 11/01/2014 14:39, kmo a écrit : > i was just wondering whether there were any /definite/ plans to free Morphic > from the one window restr

Re: [Pharo-users] Submorph centering

2014-01-11 Thread Hilaire Fernandes
Tips: to discover which message fit your need, you can experiment from the menu you got from the halo of your morph. Hilaire Le 07/01/2014 19:16, Sean P. DeNigris a écrit : > labelMorph := Morph new. > > "labelCenteringMorph := Morph new > beTransparent; > hResizing: #spaceFill

Re: [Pharo-users] iStoa

2014-01-17 Thread Hilaire Fernandes
Le 16/01/2014 21:44, Carlo a écrit : > Looks promising Hilaire. > What version of Pharo can I load this into? Pharo 2.0, should work on Pharo 3.0. But ah, the graphics are packaged elsewhere on a bazaar repo on launchpad (https://launchpad.net/istoa), so most will not work once you fetch the code

Re: [Pharo-users] iStoa

2014-01-17 Thread Hilaire Fernandes
> Nice. Is that separate from Dr. Geo? Yes, completely > btw, you might consider the follow change > "containing as much glasses and plates" --> "containing as many > glasses and plates" Oh, I was struggling to write it correctly, and I will definitely need more help. Would you help me for o

Re: [Pharo-users] iStoa

2014-01-17 Thread Hilaire Fernandes
Le 17/01/2014 14:04, jannik laval a écrit : > The core package depends on LedMorph that is not available in Pharo2.0 > nor Pharo3.0. > It is on Pharo Extra or something like that. Yes, all is very crude right now. -- Dr. Geo http://drgeo.eu

[Pharo-users] Relative path

2014-01-17 Thread Hilaire Fernandes
Hello I want to send a message with a relative path as argument: self getClipart: 'fruits' / 'apples.png' It should look like that but it does not work of course. Then from getClipart method, it should be something like: getClipart: relativePath file := Platform clipartsPath / relativePath

Re: [Pharo-users] Relative path

2014-01-17 Thread Hilaire Fernandes
Le 17/01/2014 22:13, jannik.laval a écrit : > You what is the Platform clipartsPath ? It is something like FileSystem disk workingDirectory parent / 'Cliparts > I am thinking that what you need is : > FileSystem workingDirectory / 'fruits' / 'apples.png’ Yes but no, I want 'fruits' / 'apples.p

Re: [Pharo-users] Relative path

2014-01-18 Thread Hilaire Fernandes
Le 17/01/2014 23:41, Nicolai Hess a écrit : > you can create a relative path with > Path class>>* > > p:=Path * 'fruits' / 'apples.png'. Thanks Nicolai, I was trying this one but struggle to use it to later get the full path. Your mention to the #resolve: messages makes it clear now. Hilaire

[Pharo-users] SmalltlakHub can't delete Package

2014-01-18 Thread Hilaire Fernandes
Hello, It says "The request did no succeed" Thanks -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] iStoa

2014-01-18 Thread Hilaire Fernandes
Le 17/01/2014 16:50, Hilaire Fernandes a écrit : > phase. This is my job on the plate I will let you know when fixed. I wrote indication to fetch the used graphics. http://bazaar.launchpad.net/~hilaire-fernandes/istoa/trunk/view/head:/README The source are iStoa on SmalltalkHub Hila

Re: [Pharo-users] SmalltlakHub can't delete Package

2014-01-18 Thread Hilaire Fernandes
Le 18/01/2014 11:58, Hilaire Fernandes a écrit :> Hello, > > It says "The request did no succeed" > My fault, forget it. Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] Ever growing Pharo 2.0 image

2014-01-28 Thread Hilaire Fernandes
Hello, I have an ever growing image, now about 57MB and can't get it down: - I reset the variables in workspace - purge my class instances - Check with SpaceTally my classes - do a ImageCleaner cleanUpForRelease - chack for ramping processes I mainly use Morph and Form, but I don't see them consu

Re: [Pharo-users] Ever growing Pharo 2.0 image

2014-01-29 Thread Hilaire Fernandes
Le 29/01/2014 08:57, Marcus Denker a écrit : > MCVersionInfo allInstances do: [ :each | each instVarNamed: 'ancestors' put: > nil ]. Did not know this one, it gets it down for less than 1MB Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] iStoa, some new

2014-02-05 Thread Hilaire Fernandes
What about: StoaApp current openInWorld. Along Cliparts/, you may need to create a Users/ folder Hilaire Le 02/02/2014 22:13, Carlo a écrit : > Stoa beUnix. > StoaApp current show. -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] iStoa, some new

2014-02-08 Thread Hilaire Fernandes
Le 02/02/2014 17:39, Alain Busser a écrit : > Which yields me to an other question: Is there already voice synthesis > in Pharo? If yes, how many languages are implemented? You can rely on external resources of the host system. There are such package for Linux, and I guess for Windows and MacOSX t

Re: [Pharo-users] iStoa, some new

2014-02-09 Thread Hilaire Fernandes
If you want to test a specific activity (Etayage), you can execute the following code: e := EtayageNumber5 new. e playStep: 1. Hilaire Le 05/02/2014 18:59, Carlo a écrit : > Thanks, that seems to work. > > On 05 Feb 2014, at 12:38 PM, Hilaire Fernandes > wrote: > > What a

Re: [Pharo-users] iStoa, some new

2014-02-10 Thread Hilaire Fernandes
If you want to test a specific activity (Etayage), you can execute the following code: e := EtayageNumber5 new. e playStep: 1. Hilaire Le 05/02/2014 18:59, Carlo a écrit : > Thanks, that seems to work. > > On 05 Feb 2014, at 12:38 PM, Hilaire Fernandes > wrote: >

Re: [Pharo-users] Spec and an application menu

2014-02-18 Thread Hilaire Fernandes
Le 17/02/2014 20:22, kmo a écrit : > Yes - there's no problem with menus if you use Morphs. Here's an interface > that uses a ToolDockingBarMorph to implement a menu. > > It is already there as Morph: UITheme exampleWindowWithToolba

Re: [Pharo-users] Spec and an application menu

2014-02-18 Thread Hilaire Fernandes
Le 17/02/2014 21:44, kilon alios a écrit : > > Whats stops you from using Morphic and Spec at the same time ? > Entropy control? -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Spec and an application menu

2014-02-18 Thread Hilaire Fernandes
Le 18/02/2014 09:26, Goubier Thierry a écrit : > > Now I want to try something: populate the menu bar with all possible > menu/shortcuts commands defined in my app (i.e. tree node contextual > menu, code pane contextual menu, smart-suggestions type commands) to > ensure discoverability, in as fe

Re: [Pharo-users] Phratch one-click

2014-03-03 Thread Hilaire Fernandes
Great! URL? Hilaire Le 01/03/2014 12:30, jannik laval a écrit : > Now, no need to install anything: just download the zip file for your > platform, unzip it and run Phratch. > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] [Pharo-dev] Phratch one-click

2014-03-05 Thread Hilaire Fernandes
For event, how is it developed? I remember, when I started developing DrGeo I used the change/update event mecanism. Then I dropped it for a simple linear top/down update of the geometric tree model, it becames much faster after that. Hilaire Le 05/03/2014 10:44, jannik laval a écrit : > > I th

[Pharo-users] Pharo 3.0 image shrink

2014-03-15 Thread Hilaire Fernandes
Hi, I want to look at shrinking Pharo 3.0 image for iStoa. In that context I don't need anymore the developer tools In Pharo 1.4 I experimented with unload-packages-and see-of-it-broke-or not-the-image. Do we have a better way to do it with 3.0? Which package to remove and how? I remember the oth

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-15 Thread Hilaire Fernandes
t; > #Luc > > > 2014-03-15 16:29 GMT+01:00 Hilaire Fernandes > <mailto:hilaire.fernan...@gmail.com>>: > > Hi, > > I want to look at shrinking Pharo 3.0 image for iStoa. In that context I > don't need anymore the developer tools >

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-15 Thread Hilaire Fernandes
ethod and > normally you should > get a system without some of the tool. > If you want to help we can work on that toegther. (first I want to finish the > pass I want to do on the catalog). > > Stef > On 15 Mar 2014, at 16:29, Hilaire Fernandes > wrote: > >> Hi,

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-15 Thread Hilaire Fernandes
Even with commenting out checkState, the VM crash or the display is all white. Just achieved a shrink to ~17MB I applyed my pharo 1.4 cleaning and only get to 16.7MB. So far, not really great. Hilaire Le 15/03/2014 18:46, Hilaire Fernandes a écrit : > Hi Stef, > > Yes it is tedio

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-16 Thread Hilaire Fernandes
/2014 16:46, Luc Fabresse a écrit : > Hi Hilaire, > > Do you know that Pavel made a great job on this front? > > http://forum.world.st/Pavel-Krivanek-s-unloading-script-for-Pharo-td4737979.html > > > Cheers, > > #Luc > > > 2014-03-15 16:29 GMT+01:00 Hila

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-16 Thread Hilaire Fernandes
at modularization and bootstrapping. One day, all this > will probably lead to a single script that allows end users to shrink an > image, but we're not here yet. > > BTW, the image size is only a problem in a very limited number of cases. > > On 16 Mar 2014, at 08:27, Hilaire Fer

Re: [Pharo-users] Pharo 3.0 image shrink

2014-03-16 Thread Hilaire Fernandes
I will, but I need to reiterate because I removed a bit two much. Hilaire Le 16/03/2014 11:21, Pharo4Stef a écrit : > could you let me know the list of classes you are in the system. > This is clear that we should spend some months on that to get progress. -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Phratch Website + version 3.0 in dev

2014-03-19 Thread Hilaire Fernandes
Great news! Le 19/03/2014 15:10, jannik laval a écrit : > - version 3.0 is the version in development. What is new here: Before > this version Phratch was really slow. I am cleaning the code, and now it > begins to be fast, really fast ! We also begun to write tests. I am curious. What did you fi

[Pharo-users] Pharo3 Can not decompile anymore?

2014-03-19 Thread Hilaire Fernandes
Hello, In Pharo3 installation, when I remove both the .source and .changes files (yeah yeah I know), the browser nor the debugger can show me decompiled method code to give me a Smalltalk representation? Is there an option to get it back? Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Pharo3 Can not decompile anymore?

2014-03-19 Thread Hilaire Fernandes
And what about #checkSourcesFileAvailability: gone? Hilaire Le 19/03/2014 17:52, Esteban Lorenzano a écrit : > Nope, opal compiler does not decompile… you need the sources and changes > there. > > Esteban > > On 19 Mar 2014, at 17:47, Hilaire Fernandes > wrote: > &

Re: [Pharo-users] Pharo3 Can not decompile anymore?

2014-03-26 Thread Hilaire Fernandes
Nope, as far as I can see and try there is no way to prevent the warning message. Something to warn about read only .changes file. But nothing for source. Now I read this and understand, it is a feature: https://pharo.fogbugz.com/f/cases/10464/Always-warn-when-sources-or-changes-are-not-available

Re: [Pharo-users] Pharo3 Can not decompile anymore?

2014-03-26 Thread Hilaire Fernandes
For desktop app and even more true for mobile app. it is a plus to not ship sources and changes files for obvious space reasons. Hilaire Le 26/03/2014 11:49, Marcus Denker a écrit : > Yes, for Pharo3 we require sources on disk… is there really a use case where > people can not have it? -- Dr.

[Pharo-users] Monitoring VM size change

2014-03-26 Thread Hilaire Fernandes
Hi, I need to monitor screen size changes of the VM window. What are the options to do so? Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Monitoring VM size change

2014-03-26 Thread Hilaire Fernandes
Responding to myself, it looks like DisplayScreen>>checkForNewScreenSize is doing that, althought not designed for user hook. Need some review as DisplayScreen>>startUp is called twice. Hilaire Le 26/03/2014 14:17, Hilaire Fernandes a écrit : > Hi, > > I need to monitor s

Re: [Pharo-users] changes and sources file availability

2014-04-03 Thread Hilaire Fernandes
Hi, It is gone. And for me it is a very annoying. Now if you want the system to prevent looking I am afraid you have to modify some system class method as there is no more hook to do it properly (see the mailing list archive for discussion about that a few weeks ago). Then I don't know the conseq

Re: [Pharo-users] changes and sources file availability

2014-04-04 Thread Hilaire Fernandes
Thanks Markus for the feedback. Hilaire Le 04/04/2014 10:09, Marcus Denker a écrit : > So… yes, right now there are no Preferences. But we can add them back. > (I can do that). > > The only thin that will (right now) not work is decompiling, but just running > a program is fine. If you want to d

[Pharo-users] [ANN] WIP iStoa

2014-04-05 Thread Hilaire Fernandes
Hello, For those who want to give a try to work in progress iStoa on Linux, an Interactive math exercises book. https://launchpad.net/istoa/alpha/14.04/+download/iStoa.app-14.04a.zip Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-07 Thread Hilaire Fernandes
YI, I had to replace the shipped vm and plugins by the latest ones > to get it to work on my Debian Wheezy machine. > > Congrats! > > > 2014-04-05 18:20 GMT+02:00 Hilaire Fernandes > <mailto:hilaire.fernan...@gmail.com>>: > > Hello, > > For tho

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-08 Thread Hilaire Fernandes
Le 07/04/2014 10:01, Bernat Romagosa a écrit : > Just FYI, I had to replace the shipped vm and plugins by the latest ones > to get it to work on my Debian Wheezy machine. But wait, how come more recent VM work for you and not a bit older one (a few months)? Indeed I used a stock VM coming with Pha

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-09 Thread Hilaire Fernandes
Ok I got it, well I hope so. Debian Wheezy's GNU C lib is version 2.13. So it looks like the VM I used was compiled against GNU C Lib version 2.15 (stock Pharo VM from a few months ago), but more recent stock Pharo VM are compiled with older GNU lib C dependcies. And this is nice. If I am wrong, I

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-09 Thread Hilaire Fernandes
Where did you get your VM, because the one in Pharo web site does not have the same libc version dependencies? Thanks Hilaire Le 08/04/2014 10:48, Bernat Romagosa a écrit : > And this is the output of ldd -v on the vm I used to run iStoa: > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-09 Thread Hilaire Fernandes
LOL. So you have no choice but to prepare for me an archive with your compiled VM, so I will use it ;-) (my system use glibc 2.15 anyway) Hilaire Le 09/04/2014 14:29, Bernat Romagosa a écrit : > Ouch! I think it was myself who compiled it... I'll check again tomorrow! > -- Dr. Geo http://drgeo

Re: [Pharo-users] can we have the pharo theme back please?

2014-04-11 Thread Hilaire Fernandes
Hello, The right way to get it back is through an external package, as suggested and did Thierry, then maintain it as external. Personnaly I like to use Watery on Linux. Probably Vistary coudl be move in such external package as well. Thanks Hilaire Le 10/04/2014 20:11, kmo a écrit : > The phar

Re: [Pharo-users] can we have the pharo theme back please?

2014-04-11 Thread Hilaire Fernandes
It makes sense. Hilaire Le 11/04/2014 17:28, Goubier Thierry a écrit : > Maybe we can consider having a UIThemes project in PharoExtras? -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-22 Thread Hilaire Fernandes
Thanks Bernat. I will use your VM for next release. With advices from my son, I am working now to make iStoa more graphically fancy. Hilaire Le 22/04/2014 09:31, Bernat Romagosa a écrit : > There you go! > > Bernat. > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Modal widget

2014-04-23 Thread Hilaire Fernandes
Hello Esteban, I am not sure it matches the situation. Did you see my screen shot with the modal morph embedded in a parent morph? All but the modal morph should be locked but perfectly visible. Hilaire Le 23/04/2014 10:51, Esteban Lorenzano a écrit : > look at the implementation of #callInWorld

Re: [Pharo-users] iStoa, some news

2014-05-01 Thread Hilaire Fernandes
Yes right! Once I am motivated enough I will make another snapshot release. In the meantime, I recorded it in a ticket https://bugs.launchpad.net/istoa/+bug/1315110 If you find anything else, please fill a ticket at the same place http://launchpad.net/istoa, it will be easier for me to look at it

[Pharo-users] [ANN] iStoa 14.05 for Linux

2014-05-03 Thread Hilaire Fernandes
Hello, Here is the release 14.05. It is the one I showed screen shot previously[1]. https://launchpad.net/istoa/+milestone/14.05 Thanks Hilaire [1] http://forum.world.st/iStoa-some-news-tt4756694.html -- Dr. Geo http://drgeo.eu

[Pharo-users] Error compiling DrGeo in pahro3

2014-05-10 Thread Hilaire Fernandes
Hi, I got this error when compiling DrGeo in Pharo3 (screenshot). There is not debug log. Thanks Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] Creating a subclass from nautilus/Pharo3

2014-05-10 Thread Hilaire Fernandes
Hi, In Nautilus, to creat a subclass I have to go in menu Class 'Refactoring>Class Refactoring>Generate Subclass...' (Why is it refactring? It seems NOT for me), anyway I can input a subclass name, then I have this strange dialog with a broken morph. Screen shot enclosed. Hilaire -- Dr. Geo ht

[Pharo-users] Pharo3, what refactoring in morph mouse event?

2014-05-10 Thread Hilaire Fernandes
Hi, With Pharo3, each time I click and drag in the DrGeo canvas I have a drag event of the surrounding DrGeo window. The mouse events doe not reach anymore the canvas as it should be (captured with usuale. Is it possible to know the refactoring in the mouse event and related departments. Thank

Re: [Pharo-users] Error compiling DrGeo in pahro3

2014-05-10 Thread Hilaire Fernandes
#: must be written #':' with Opal Hilaire Le 10/05/2014 15:38, Hilaire Fernandes a écrit : > Hi, > > I got this error when compiling DrGeo in Pharo3 (screenshot). There is > not debug log. > > Thanks > > Hilaire > > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Error compiling DrGeo in pahro3

2014-05-11 Thread Hilaire Fernandes
aro #':' represents the symbol : > > Stef > > On 10/5/14 15:38, Hilaire Fernandes wrote: >> Hi, >> >> I got this error when compiling DrGeo in Pharo3 (screenshot). There is >> not debug log. >> >> Thanks >> >> Hilaire >> >> > > > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Creating a subclass from nautilus/Pharo3

2014-05-11 Thread Hilaire Fernandes
Please do so and tell me if I need to record the case in the bug tracker. Regarding Nautilus, it is worth the effort *TWO* people sit down side by side and redesign the menus hierarchy. Hilaire Le 11/05/2014 09:28, stepharo a écrit : > With me it works. > So I will retry in the latest 3.0 -- D

Re: [Pharo-users] Pharo3, what refactoring in morph mouse event?

2014-05-11 Thread Hilaire Fernandes
Indeed, I tracked the changes done to Morph and PasteUpMorph since last September and I did not see any possible related changes. Now I should look at the StandardWindow as the DrGeo canvas is a pasteupmoprh plugged in a StandardWindow. Thanks Hilaire Le 11/05/2014 09:26, stepharo a écrit : > H

Re: [Pharo-users] Error compiling DrGeo in pahro3

2014-05-11 Thread Hilaire Fernandes
;> Hi hilaire >> >> I do not remember if something changes. >> Can you tell us if if was the same in 2.0? >> Now in VW and Pharo #':' represents the symbol : >> >> Stef >> >> On 10/5/14 15:38, Hilaire Fernandes wrote: >>> Hi

Re: [Pharo-users] Gorgeous

2014-05-13 Thread Hilaire Fernandes
In the example I posted, I did not distinguish any difference Hilaire Le 13/05/2014 20:07, Clément Bera a écrit : > Did you notice some performance improvement ? I mean, just by playing > with the UI, not by running dozen of benchs. > -- Dr. Geo http://drgeo.eu

[Pharo-users] Scaling an Athens surface

2014-05-14 Thread Hilaire Fernandes
I have morph embedded in a AthensWrapMorph, before exporting it to a bitmap, I would like to rescale the AthenSurface. How can I do it at the Athens level to get the best quality. Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] Minimal browser

2014-05-14 Thread Hilaire Fernandes
Hello, With Pahro 1.4, Browser newOnClass: Number selector: #+ use to open a minimal browser on the selected method (btw, it is broken now) With: Nautilus newOnClass: Number selector: #+ I get a full browser on the method. Is it possible to have a minimal browser with Nautilus? I need it in D

[Pharo-users] Migrating to Nautilus

2014-05-14 Thread Hilaire Fernandes
Hi, In DrGeo, I add this code snippet to: browser := Browser newOnClass: DrGeoUserScripts selector: mathItem script. browser addDependent: self domain. browser codeTextMorph owner owner extent: 450@350. browser topView setProperty: #morphicLayerNumber toValue: 5. 1. open a min

[Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Hilaire Le 14/05/2014 11:45, Hilaire Fernandes a écrit : > Hi, > > In DrGeo, I add this code snippet to: > > browser := Browser > newOnClass: DrGeoUserScripts > selector: mathItem script. > browser addDependent: self domain. > browser codeTextMorph owner owner

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Thanks Thierry. This one I really can't discover it. Hilaire Le 14/05/2014 14:44, Goubier Thierry a écrit : > SystemAnnouncer uniqueInstance weak on: MethodAdded send: #update: to: > self domain. -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Receiving Nautilus notice when code is changed

2014-05-14 Thread Hilaire Fernandes
Le 14/05/2014 15:56, Goubier Thierry a écrit : > Le 14/05/2014 15:38, Hilaire Fernandes a écrit : >> Thanks Thierry. >> This one I really can't discover it. > > Oh you could like I did: spending ages looking at the Browser, Nautilus > and OmniBrowser code ;) Yes, I

Re: [Pharo-users] Minimal browser

2014-05-14 Thread Hilaire Fernandes
Hi Stef, It will be great, now I try to get this list down http://bug.drgeo.eu. In the meantime, I updated the script related methods to use plain Nautilus. Thanks Hilaire Le 14/05/2014 12:26, stepharo a écrit : > I did a small browser called ondoBrowser we could work together to make > it simp

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Hilaire Fernandes
Thierry, I was not aware it could be that short. Yes it will be nice. All in all: - one GUI tool to edit an existing script (so no visibility on the other methods of the class) - one GUI tool to create a method (with visibility to the other method of the class, as possible examples) Hilaire Le

Re: [Pharo-users] Minimal browser

2014-05-15 Thread Hilaire Fernandes
Good evening, Le 15/05/2014 10:40, Goubier Thierry a écrit : > Would you need the script to hide the fact it is a method or not? I.e. > make it DSL-Like and hide the method header and its parameters? For now, it should have the method name to let the user define keyword script message. But this

Re: [Pharo-users] Pharo3, what refactoring in morph mouse event?

2014-05-17 Thread Hilaire Fernandes
Just for the record. This problem was not related to mouse event, but to the AthensWrapMorph; now it needs a layout to properly install its child morph (it was the not the case previously) Le 11/05/2014 10:26, Hilaire Fernandes a écrit : > Indeed, I tracked the changes done to Morph

Re: [Pharo-users] blog post explaining the codecity visualization of pharo changes

2014-05-18 Thread Hilaire Fernandes
It is really a nice way to announce/talk smartly and originally on Pharo release out there. Thanks Hilaire Le 18/05/2014 09:52, Tudor Girba a écrit : > Hi, > > I was asked several times for how the visualization from the Pharo 3.0 > announcement was created. I now put together a blog post to ex

[Pharo-users] TextMorph on Athens

2014-05-21 Thread Hilaire Fernandes
Hello, What is its status? In Pharo 3.0, I see somes classes related to text and Athens. It is one of the final peace I need for Dr. Geo. Thanks Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] [ANN] iStoa 14.06

2014-05-29 Thread Hilaire Fernandes
Hi, If you have young kids (around 5-6 years old) and a linux workstation, you may want ot give a try to latest iStoa. https://launchpad.net/istoa/trunk/14.06 I translated it in French as well ;) If interest to translate in other languages (including asian ones) let me know. Hilaire -- Dr. Ge

Re: [Pharo-users] [ANN] iStoa 14.06

2014-05-30 Thread Hilaire Fernandes
; > I have a son of 7 but on mac I will try to ee what I can do. > > > On 29/5/14 10:49, Hilaire Fernandes wrote: > > Hi, > > If you have young kids (around 5-6 years old) and a linux > workstation, > you may want ot give a try

[Pharo-users] MorphTree behavior changed

2014-06-03 Thread Hilaire Fernandes
Hi, why when morph tree send updateList there is an announcement from the model? It was not the case before. Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Form editor

2014-06-04 Thread Hilaire Fernandes
To be ready to catch up on Athens when it will be default rendering engine, you may want have source icon as svg and exported as png with Inkscape. I use this set up for iStoa clipart, oversampled as bitmap for a Nexus 5 screen display resolution, then downscaled at load time to the used display re

[Pharo-users] Slowness question

2014-06-04 Thread Hilaire Fernandes
Hi, Programmed sketch in DrGeo can be animated, for example like the script bellow. The "canvas do:" message forks the block so user is not blocked. At #udpate message the items and views (morph) are recomputed and refreshed . Before porting DrGeo to Athens, the animation was pretty fast, now it

Re: [Pharo-users] Slowness question

2014-06-06 Thread Hilaire Fernandes
I did not try yet. Hilaire Le 05/06/2014 19:46, Alain Busser a écrit : > What does the profiler say? > > Alain > -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] MorphTree behavior changed

2014-06-06 Thread Hilaire Fernandes
is the problem? > > Cheers, > Doru > > > > > On Tue, Jun 3, 2014 at 8:24 PM, Hilaire Fernandes > <mailto:hilaire.fernan...@gmail.com>> wrote: > > Hi, > > why when morph tree send updateList there is an announcement from the > m

Re: [Pharo-users] Slowness question

2014-06-06 Thread Hilaire Fernandes
Right, I remember about it as well. Once a few morphs are added it get really slower pretty quickly. The discussion you refer is there: http://forum.world.st/Redraw-suggestion-for-Athens-tt4750951.html#a4751188 Regarding DrGeo canvas, it does not really need and rely on the change mechanisme of M

Re: [Pharo-users] MorphTree behavior changed

2014-06-06 Thread Hilaire Fernandes
06/06/2014 14:52, Sven Van Caekenberghe a écrit : > > On 06 Jun 2014, at 14:41, Hilaire Fernandes > wrote: > >> Just confused by the shift to Annoucement. Ok now. >> Again I beg for consolidations in Pharo to avoid confusion with multiple >> frameworks doing the sam

Re: [Pharo-users] Slowness question

2014-06-06 Thread Hilaire Fernandes
I extracted from the buggy profiler window the profile tree of the execution of this script. The DrGeo computing part take only a fraction of the CPU time. Hilaire Le 06/06/2014 14:55, Hilaire Fernandes a écrit : > When executing under the profiler the mentioned DrGeo script, I realize &g

Re: [Pharo-users] Slowness question

2014-06-06 Thread Hilaire Fernandes
18:03, stepharo a écrit : > can you open a bug entry. > > Stef > > On 6/6/14 14:55, Hilaire Fernandes wrote: >> When executing under the profiler the mentioned DrGeo script, I realize >> the Profiler window is severely broken: >> >> Part of the windows can'

Re: [Pharo-users] Slowness question

2014-06-06 Thread Hilaire Fernandes
Read: "...it does not change the issue." Le 06/06/2014 18:19, Hilaire Fernandes a écrit : > I emptied the change/update family of methods in the used morph for > drgeo canvas, it does change the issue. -- Dr. Geo http://drgeo.eu

  1   2   >