Re: [Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread Sean P. DeNigris
kmo wrote > this information could have been added... Why not ;) 12896 Screenshot tool: tell save location https://pharo.fogbugz.com/default.asp?12896 Slice in inbox - Cheers, Sean -- View this message in context: http://forum.world.st/How-is-the-screenshot-tool-supposed-to-work-tp4744162

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

2014-02-16 Thread Benjamin
I think a Spec model could be done to provide this feature About the integration in 3.0, one may argue it’s not present since years, nobody complained so :P Ben On 16 Feb 2014, at 23:33, b...@openinworld.com wrote: > Benjamin wrote: >> >> There is no such a morph existing (yet). >> >> You ca

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

2014-02-16 Thread btc
Benjamin wrote: There is no such a morph existing (yet). You can do something based on button invoking popup menu (like here: https://github.com/BenjaminVanRyseghem/Triton/blob/master/Screenshots/Screenshot3.png) If you want some snippet based on this work around, just ask

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

2014-02-16 Thread Benjamin
There is no such a morph existing (yet). You can do something based on button invoking popup menu (like here: https://github.com/BenjaminVanRyseghem/Triton/blob/master/Screenshots/Screenshot3.png) If you want some snippet based on this work around, just ask Ben On 16 Feb 2014, at 20:11, kmo w

Re: [Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread Sean P. DeNigris
kmo wrote > How is it supposed to work? It looks like it saves it as {imageDirectory}/PharoScreenshot.png - Cheers, Sean -- View this message in context: http://forum.world.st/How-is-the-screenshot-tool-supposed-to-work-tp4744162p4744166.html Sent from the Pharo Smalltalk Users mailing lis

[Pharo-users] Spec and an application menu

2014-02-16 Thread kmo
Can someone provide example Spec code to place a menubar at the top of a window? I've been struggling with MenuModels and MenuGroups etcetera but I get something more like a pop-up menu than the typical standard main menu of an application. Any help much appreciated. -- View this message in con

Re: [Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread kmo
Many thanks. (Think this information could have been added as a line of text on the dialog that pops up asking you if you want an area or the entire window selected. I suppose it's meant to work by telepathy). -- View this message in context: http://forum.world.st/How-is-the-screenshot-tool-su

[Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread kmo
The screenshot tool on the World menu lets you pick the entire screen or select an area. But what do you do then? The tool doesn't seem to put the image on the clipboard and it doesn't allow you to save it as a file. How is it supposed to work? -- View this message in context: http://forum.worl

Re: [Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread kmo
I am using Free Type (2.4.12) though -- View this message in context: http://forum.world.st/TextModel-and-TextInputFieldModel-font-size-bug-tp4744094p4744131.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread kmo
I think I'm using a completely vanilla Pharo 3. Haven't changed a thing: -- View this message in context: http://forum.world.st/TextModel-and-TextInputFieldModel-font-size-bug-tp4744094p4744130.html Sent from the Pharo Smalltalk Users mail

Re: [Pharo-users] Spec and Morphs

2014-02-16 Thread Benjamin
Indeed :) Ben On 16 Feb 2014, at 15:16, kmo wrote: > Great. Just what I wanted. Many thanks. But consider putting it in the spec > documentation - I think it's an important thing to know. > > > > -- > View this message in context: > http://forum.world.st/Spec-and-Morphs-tp4744084p4744109.ht

Re: [Pharo-users] Spec and Morphs

2014-02-16 Thread kmo
Great. Just what I wanted. Many thanks. But consider putting it in the spec documentation - I think it's an important thing to know. -- View this message in context: http://forum.world.st/Spec-and-Morphs-tp4744084p4744109.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.c

Re: [Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread Benjamin
On 16 Feb 2014, at 15:13, kmo wrote: > Yes - thanks. > > Seems the model is based on PluggableTextFieldMorph - and > /PluggableTextFieldMorph new openInWindow/ gives the same tiny font. :) > Must be due to a default font size somewhere. But isn't atha bug in itself? Do you change the fonts in

Re: [Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread kmo
Yes - thanks. Seems the model is based on PluggableTextFieldMorph - and /PluggableTextFieldMorph new openInWindow/ gives the same tiny font. Must be due to a default font size somewhere. But isn't atha bug in itself? Shouldn't it default to the standard text size of the interface theme? -- View

Re: [Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread Benjamin
Did you tried with morph? Because for me I would say it happens more at a Morphic level Ben On 16 Feb 2014, at 14:55, kmo wrote: > When I create an interface in Spec with TextModel or TextInputFieldModel, the > font-size is tiny. Same behaviour in both Windows and Linux. Is this a bug > or hav

Re: [Pharo-users] Spec model attributes - is there a strategy

2014-02-16 Thread Benjamin
On 16 Feb 2014, at 14:47, kmo wrote: > Is there some deep philosophical reason behind this that I don't understand? The reason is simply that it was not needed until now, so not yet implemented :) > Spec does not give you control over fonts and colours. One should be able to specify a spec mo

[Pharo-users] TextModel and TextInputFieldModel font-size bug?

2014-02-16 Thread kmo
When I create an interface in Spec with TextModel or TextInputFieldModel, the font-size is tiny. Same behaviour in both Windows and Linux. Is this a bug or have I missed something important? -- View this message in context: http://forum.wo

Re: [Pharo-users] Spec and Morphs

2014-02-16 Thread Benjamin
On 16 Feb 2014, at 14:36, kmo wrote: > I looked at Spec when it was first introduced. Then I left it alone until now > when the API is more stable. > > I seem to recall that when Spec was first introduced I was able to simply > add arbitrary Morphs to the Composable model layout. In the latest S

[Pharo-users] Spec model attributes - is there a strategy

2014-02-16 Thread kmo
I was wondering about how the attributes of Spec models are decided on. Why does LabelModel have no font attribute? It seems obvious to me that a label should have a font. Why should LabelModel have no font attribute but an emphasis attribute? Why are we able to specify a font for a header in Tree

[Pharo-users] Spec and Morphs

2014-02-16 Thread kmo
I looked at Spec when it was first introduced. Then I left it alone until now when the API is more stable. I seem to recall that when Spec was first introduced I was able to simply add arbitrary Morphs to the Composable model layout. In the latest Spec, I do not seem able to do this. Is this just

Re: [Pharo-users] [ANN] Spec documentation in PFTE book finished

2014-02-16 Thread Benjamin
Any questions are welcome :) Ben On 16 Feb 2014, at 14:19, kmo wrote: > I would be happy to write some Spec documentation - when I start to > understand it better. I've gained some idea of how the TreeModel works so > perhaps i could do something on that and you could roll it into the Spec > do

Re: [Pharo-users] [ANN] Spec documentation in PFTE book finished

2014-02-16 Thread kmo
I would be happy to write some Spec documentation - when I start to understand it better. I've gained some idea of how the TreeModel works so perhaps i could do something on that and you could roll it into the Spec documentation somewhere. Just a suggestion. Meanwhile expect a barrage of questions

Re: [Pharo-users] [ANN] Spec documentation in PFTE book finished

2014-02-16 Thread Benjamin
Thank you for your review :) I have to agree with you and to answer briefly, the main problems with documentation is: - it takes time (*a lot* to me since I am more a code than a writer :P) - things evolve (that can be managed though) I will be super happy to have a more complete

Re: [Pharo-users] [ANN] Spec documentation in PFTE book finished

2014-02-16 Thread kmo
The Spec documentation is very good /as far as it goes/. As a native speaker, I would say the English is excellent, though the tone is rather dry and technical. Generally, I think it is well written and very helpful. That's not the issue. The real problem is that this documentation is no more than

Re: [Pharo-users] mathematical models

2014-02-16 Thread Natalia Tymchuk
Hello, Code which I used to build that plots is on the repository http://smalltalkhub.com/#!/~NataliaMoskovchuk/SciSmalltalk-Metrificator Best regards, Natalia On Feb 14, 2014, at 9:53 PM, Stéphane Ducasse wrote: > Hi Paolo > > Where are you in italy? This is wonderful to hear that :) > > If