Re: [Pharo-users] Pharo3.0 + Swap Ctrl and Alt keys

2014-06-17 Thread Nicolai Hess
2014-06-13 15:38 GMT+02:00 Thushar G R : > Can anyone confirm this > > 1) Open fresh Pharo3 image in Windows. > 2) Go to *TextEditor>> buildTextEditorShortcutsOn:* > 3) Change the last line from > > *(aBuilder shortcut: #cursorEnd)* > * category: #TextEditor* > * default: Character end ctrl

Re: [Pharo-users] String artifact in Athens canvas

2014-06-17 Thread Hilaire Fernandes
Yes, which bug Le 17/06/2014 02:21, Igor Stasenko a écrit : > do you use same font within morphic UI? remember there was a bug related > to it. > -- Dr. Geo http://drgeo.eu iStoa - https://launchpad.net/istoa

Re: [Pharo-users] String artifact in Athens canvas

2014-06-17 Thread Hilaire Fernandes
Which bug is it ? Le 17/06/2014 14:30, Hilaire Fernandes a écrit : > Yes, which bug > > Le 17/06/2014 02:21, Igor Stasenko a écrit : >> do you use same font within morphic UI? remember there was a bug related >> to it. >> > -- Dr. Geo http://drgeo.eu iStoa - https://launchpad.net/istoa

[Pharo-users] AST method copyInContext:

2014-06-17 Thread Mark Rizun
What is the purpose of the mothod copyInContext: in AST-Core package? Thanks, Mark

Re: [Pharo-users] String artifact in Athens canvas

2014-06-17 Thread Hilaire Fernandes
In this built image, I tried with different font, same problem. Then I try those font on my dev environment and the problem does not show up. The rendering is really strange, see screenshot: letter seems to have different size, string morph extent is strange. I tested the built image with my dev. V

Re: [Pharo-users] String artifact in Athens canvas

2014-06-17 Thread Hilaire Fernandes
Ok found some info on this bugs, thanks. Sadly the workaround will be difficult for DrGeo, because I need dedicated unicode fonts for both the DrGeo widgets (menu, toolbar, tabs, dialog) and for the canvas to show messages in locale languages. Thanks Hilaire Le 17/06/2014 16:43, Hilaire Fernand

Re: [Pharo-users] AST method copyInContext:

2014-06-17 Thread Clément Bera
By looking at the senders of #copyInContext:, I believe it is used in RBStringReplaceRule. By looking at this rule class comment, I believe it replaces a matched tree with another tree. So I guess copyInContext: is used to replace a subtree of the AST by another tree. Regards, Clement 2014-06-

Re: [Pharo-users] AST method copyInContext:

2014-06-17 Thread Mark Rizun
I understand that it copies subtree. I'm interested how it uses its argument aDictionary. Is it Dictionary of Nodes? 2014-06-17 19:28 GMT+03:00 Clément Bera : > By looking at the senders of #copyInContext:, I believe it is used > in RBStringReplaceRule. By looking at this rule class comment, I b

Re: [Pharo-users] String artifact in Athens canvas

2014-06-17 Thread Hilaire Fernandes
But this other workaround worked for me (at lease until now): drawOnAthensCanvas: aCanvas "Work around for the conflicting size font problem" aCanvas pathTransform restoreAfter: [ aCanvas pathTransform scaleBy: 1.1. "draw text here" super drawOnA

Re: [Pharo-users] AST method copyInContext:

2014-06-17 Thread stepharo
On 17/6/14 18:35, Mark Rizun wrote: I understand that it copies subtree. I'm interested how it uses its argument aDictionary. Is it Dictionary of Nodes? try to put a breakPoint and run the code to see. Stef 2014-06-17 19:28 GMT+03:00 Clément Bera >: By

Re: [Pharo-users] Coding by sending messages

2014-06-17 Thread stepharo
+1 Matthew let us know what you get and how we can help you. The direction to not use text but objects for code is very interesting… a lot of nice experiments could be done on top of this. One direction is to use more structured ways of editing… but one needs to take care that in the past (en

Re: [Pharo-users] Coding by sending messages

2014-06-17 Thread Tudor Girba
Hi, IntellIj Idea uses editor projections which basically works with the AST. I saw some demos of their MPS (Meta Programming System - http://www.jetbrains.com/mps) system and they can do really exciting things. For example, see: https://www.youtube.com/watch?v=grlxLF2JDpg Cheers, Doru On Fri

[Pharo-users] OSProcess question (was: Omnibase)

2014-06-17 Thread David T. Lewis
On Fri, Jun 13, 2014 at 06:01:44PM -0700, Glenn Swanlund wrote: > On Windows 7, I'm trying to install OmniBase in Pharo-30846. I get an error > for ExternalWindowsOSProcess >> doesNotUnderstand defaultShellPath. > > Does anyone have a solution for this? Hi Glenn, Sorry I did not reply earlier.