Re: [Pharo-dev] [update 3.0] #30448

2013-10-07 Thread Benjamin
tep :-) Feel free to commit any changes. > > Chees, > -- Pavel > > 2013/10/5 Benjamin : >> Can you point me where to load your code and how to end up in a situation >> where I can play with the spec ? :P >> >> Ben >> >> On Oct 4, 2013, at 11:1

Re: [Pharo-dev] about creating Morphic-Widgets

2013-10-06 Thread Benjamin
I am in for splitting Morphic in more that one package. It makes things really boring to have every thing in one MC Package :( Ben On Oct 6, 2013, at 8:54 PM, Stéphane Ducasse wrote: > Hi guys > > I started to play with sorting a bit Morphic :) > So I would like to create a new Package Morphi

Re: [Pharo-dev] I wanted to understand new list

2013-10-06 Thread Benjamin
On Oct 6, 2013, at 8:16 PM, Stéphane Ducasse wrote: > And > > NewListExample new > withNewList; > openInWindow. > > does not work. > > separatorAfter: item at: index > > ^ separatorSelector > ifNotNil: [ self model perform: separatorSelector with: item > with

Re: [Pharo-dev] New Critic Rule: Nobody should directly send #methodDict

2013-10-06 Thread Benjamin
I would first experiment to run the critics only on the modified code, not the full package :) Then you can have a pretty accurate feedback Ben On Oct 6, 2013, at 4:26 PM, b...@openinworld.com wrote: > Benjamin wrote: >> >> What I would like (and will probably give a try soon)

Re: [Pharo-dev] New Critic Rule: Nobody should directly send #methodDict

2013-10-06 Thread Benjamin
What I would like (and will probably give a try soon) is to run some critics automatically before committing a MC package :) That's how it's done in WebStorm by example, and I love this feature Ben On Oct 6, 2013, at 2:19 PM, b...@openinworld.com wrote: > Stéphane Ducasse wrote: >> Hi >> I'm r

Re: [Pharo-dev] [update 3.0] #30448

2013-10-05 Thread Benjamin
add: {(Smalltalk at: #NautilusPeriscopePlugin). #none} > . > > Very useful code: ;-) > > Periscope reset > > It still without experiments with own Morphic bindings, that will be > the next step :-) Feel free to commit any changes. > > Chees, > -- Pavel > > 2013

Re: [Pharo-dev] [update 3.0] #30448

2013-10-05 Thread Benjamin
> >> >> plugin code on the instance side looks like this: >> >> defaultSpec >> >> ^ SpecLayout composed >>newRow:[: r | >>r add: #finderButtonModel; >> add: #browserButtonModel] >&g

Re: [Pharo-dev] [update 3.0] #30448

2013-10-04 Thread Benjamin
ect fractions? >>> >>> ^ SpecLayout composed >>>newRow:[: r | >>>r add: #finderButtonModel] >>>height: 25 >>> >>> How to send #finderButtonModel to different

Re: [Pharo-dev] [update 3.0] #30448

2013-10-04 Thread Benjamin
{{self. #finderButtonModel}. >#layout:. #(FrameLayout >rightFraction: 0.125)}. >#add:. {{self. #browserButtonModel}. >#layout:. #(FrameLayout >leftFraction: 0.125 >rightFraction: 0.25)}} > > -- Pavel >

Re: [Pharo-dev] [update 3.0] #30448

2013-10-04 Thread Benjamin
For Spec users: The change is mostly backward compatible :) 2 things really changed: - direct access to a model's widget is not returning what it used to return. This is done on purpose since it's very often a bad idea to directly access the widget. - some behaviour on tr

Re: [Pharo-dev] Could we have a list of the official pragmas because it starts to be a MESS!

2013-10-03 Thread Benjamin
The finder has a "Pragmas" category :) Ben On Oct 3, 2013, at 1:44 AM, Eliot Miranda wrote: > On Wed, Oct 2, 2013 at 11:34 AM, Stéphane Ducasse > wrote: > > For example > > > I have no idea (of course there is no comment) what is the use of > this pragma. > > Chasing pragma inte

Re: [Pharo-dev] MNU SpecLayout>>hasSlots

2013-10-02 Thread Benjamin
I had the same once while trying to remove an inst var :s I change the image :P Ben On Oct 2, 2013, at 8:40 PM, b...@openinworld.com wrote: > I got to get offline right now so this is just a quick note for something I > just noticed rather than a full bug report (since it may be a high priorit

Re: [Pharo-dev] unloading Nautilus

2013-10-02 Thread Benjamin
The things is that with Nautilus, I pushed more than just Nautilus in the system, like the groups mechanism, the history etc Now, they should be pushed out of Nautilus since there may be (are) used in other part of the system. We should do this clean up phase on all the new tools I think :) (B

Re: [Pharo-dev] IDE Nice idea

2013-10-02 Thread Benjamin
On Oct 2, 2013, at 3:33 PM, Torsten Bergmann wrote: >>> In Eclipse or other IDE (Netbeans, IntelliJ, ...), in order to being >>> productive, we have to use hotkeys to find a given class or a given >>> method because the browsing by tree is painful in an every day work. >> >> This is exactly my

Re: [Pharo-dev] Unloading Nautilus

2013-10-02 Thread Benjamin
Something like AbstractNautilusUI>>registerToSystemEvents Ben On Oct 2, 2013, at 11:23 AM, Stéphane Ducasse wrote: > Ben > > probably I should unregister nautilus from receiving system event. > Do you have any idea where I should look for the registration? > > Stef > > On Oct 2, 2013, at 1

Re: [Pharo-dev] Spec Examples

2013-09-21 Thread Benjamin
Yes, something like this :) Ben On Sep 21, 2013, at 9:17 PM, Camillo Bruni wrote: > > On 2013-09-21, at 16:11, Benjamin > wrote: > >> What should be done is to first create some methods on ComposableModel like >> instantiateListModel, instantiateTextModel, etc so

Re: [Pharo-dev] Spec Examples

2013-09-21 Thread Benjamin
On Sep 21, 2013, at 7:35 PM, Erwan Douaille wrote: > Since UIPainter, example aren't needed :p eu :P Ben > > Another way, than i like, is create a method for a model. > > Class>>listModel > listModel ifNil: [ listModel := self instantiate: ListModel. and options ]. > ^ listMo

Re: [Pharo-dev] Spec Examples

2013-09-21 Thread Benjamin
What should be done is to first create some methods on ComposableModel like instantiateListModel, instantiateTextModel, etc so you hide at maximum the implementation details, and then you can do a more generic "self instantiate: MethodBrowser." The first version of Spec was like this: > listMod

Re: [Pharo-dev] Should I contribute to Pharo or should I keep things separate ?

2013-09-20 Thread Benjamin
Do it the git way :) Propose your slice and let the people in charge of Pharo decide if they want it or not :) Each time you take an image and work in it, you do a "branch". Proposing a slice is just a pull-request :) Ben On Sep 20, 2013, at 9:47 PM, kilon wrote: > As you may or may not know

Re: [Pharo-dev] Spec Question: DropListModel

2013-09-20 Thread Benjamin
It's a bit weird. Sean and I should do another pass on this, because it's far too disturbing now Ben On Sep 20, 2013, at 11:34 PM, Camillo Bruni wrote: > What is the idea behind the #displayBlock: in DropListModel? > > I expected it to be something that is stored in the DropListModel and > r

Re: [Pharo-dev] Issues trying to use NewList on Nautilus

2013-09-17 Thread Benjamin
If you want to react to some selection, you should better use whenSelectedItemChanged: I guess Ben On Sep 17, 2013, at 4:00 AM, Nicolas Passerini wrote: > > If your UI is based on multi selection (and Nautilus definitely is) you > should not register to whenSelectedIndexChanged:/whenSelected

Re: [Pharo-dev] Issues trying to use NewList on Nautilus

2013-09-16 Thread Benjamin
On Sep 16, 2013, at 4:18 PM, Nicolas Passerini wrote: > Last Saturday in the Pharo Sprint in Buenos Aires, together with Mariano Peck > and Guido Chari we have been trying to address issue 11605, i.e. using > NewList in Nautilus. I am still trying to finish with this task, and I have a > few q

Re: [Pharo-dev] Maybe fixed?

2013-09-13 Thread Benjamin
You should: 1) Create an account here: http://bugs.pharo.org/issues/register 2) Log in here: https://pharo.fogbugz.com/ 3) Click on "New Case": https://pharo.fogbugz.com/default.asp?command=new&pg=pgEditBug 4) Keep the newly created case issue id Then to create something you can send to the commu

Re: [Pharo-dev] Nautilus Newlist

2013-09-08 Thread Benjamin
Is there something beside manpower which prevent you from anything ? :P But to answer your question, no, nothing. The thing is since the initialisation is a bit different with the NewList, it's tricky in some situation Ben On Sep 8, 2013, at 6:54 PM, Camillo Bruni wrote: > Is there anything

Re: [Pharo-dev] [smaltalk-gsoc-students] Some news of the UIPainter project

2013-09-08 Thread Benjamin
On Sep 8, 2013, at 10:33 AM, Erwan Douaille wrote: > > > > 2013/9/8 > Thanks Erwan. Really sweet tool. That video did the trick to stimulate my > interest to try it out, so I've got some feedback. Don't take them as > criticisms. They cover some things that probably have not been a priori

Re: [Pharo-dev] Suggestion about Spec

2013-09-02 Thread Benjamin
I usually try to do so :) Maybe it was 4am, or maybe it collides with Morphic API :) Anyway, it should be more consistent Ben On Sep 2, 2013, at 2:59 PM, Erwan Douaille wrote: > Hi, > > I'm working on the UIPainter importer. I'm able to import already existing > spec windows but now i need t

Re: [Pharo-dev] Spec tabs, which one is active ?

2013-08-27 Thread Benjamin
I thought there was such a registration method :s Ben On Aug 27, 2013, at 11:25 AM, Erwan Douaille wrote: > > > > 2013/8/26 Benjamin > A workaround could be that when a tab is selected, it set an instance > variable with the correct value. > > Yes, it will be

Re: [Pharo-dev] Spec tabs, which one is active ?

2013-08-26 Thread Benjamin
A workaround could be that when a tab is selected, it set an instance variable with the correct value. This way , you can always do something like myCanvas generates. where myCanvas is set by the tab. And in addition, you do not have to use a switch case :) Ben On Aug 26, 2013, at 3:58 PM, Er

Re: [Pharo-dev] Sticky Morph ?

2013-08-20 Thread Benjamin
Not existing as far as I know :s On the other hand, it shouldn't be that complicated to have a manager for that Ben On Aug 20, 2013, at 2:44 PM, Erwan Douaille wrote: > Hi, > > I'm looking for "sticky" morph. I means, i would like an automatic alignment > when 2 morphs are close both of them

Re: [Pharo-dev] Too much

2013-08-16 Thread Benjamin
+10 000 Ben On Aug 16, 2013, at 9:21 PM, Esteban Lorenzano wrote: > Ok, GitHub, you are exaggerating. A lot. >

Re: [Pharo-dev] Drag-and-drop behavior with multiple selection

2013-08-16 Thread Benjamin
It's a known issue of PluggableListMorph. It's a pain to fix it in the current implementation. On the other hand NewList (a new morphic implementation of List) handle this scenario as expected. I think that to make it works, the selection should be n mouse up and not on mouse down. Ben On Au

Re: [Pharo-dev] about new class organization

2013-08-16 Thread Benjamin
We should have a look when I come back from holidays :) I designed that almost one year ago, so do not expect my tiny brain to remember that :P Ben On Aug 10, 2013, at 10:03 PM, Stéphane Ducasse wrote: > Hi esteban/ben > > I'm trying to understand the new class organisation. > Now would it

Re: [Pharo-dev] [update 3.0] #30324

2013-08-06 Thread Benjamin
That's the default comment when the method is generated by Nautilus Ben On Aug 6, 2013, at 3:15 PM, Guillermo Polito wrote: > I don't understand all those > UsersManager>>initialize > + "Initialization code for UsersManager" > > isn't that pretty obvious that the initialize method contains

Re: [Pharo-dev] Windows problem with FilePlugin ?

2013-08-01 Thread Benjamin
ing at it. > > Stef > > On Aug 1, 2013, at 1:01 PM, Benjamin > wrote: > >> On my image, when opened in Windows, opening the File Browser leads to a red >> square of death :s >> >> And using the UIManager to popup the file picker leads to an infinite loo

[Pharo-dev] Windows problem with FilePlugin ?

2013-08-01 Thread Benjamin
On my image, when opened in Windows, opening the File Browser leads to a red square of death :s And using the UIManager to popup the file picker leads to an infinite loop of halt :s Do you experienced that too ? Can people using windows try the following line: (FileSystem disk root) director

Re: [Pharo-dev] question about mars

2013-07-27 Thread Benjamin
It's part of my GSoC project to integrate Mars in Spec :) Ben On Jul 27, 2013, at 12:14 PM, Stéphane Ducasse wrote: > thanks carla. > I was wondering how it compares with Spec because the idea behind spec is to > factor out the logic of the application. > I will discuss with esteban. > > St

Re: [Pharo-dev] smalltalkHub and Watch Project - espeically 'recently watched events'

2013-07-24 Thread Benjamin
Nicolas is on vacations, so you may not have an answer soon :S Ben On Jul 25, 2013, at 1:26 AM, Chris Cunningham wrote: > Hi. so, I have about 5 projects that I'm 'watching' in SmalltalkHub. On the > home page (after I'm logged in), 1/2 of that page is taken up with the > 'Recent watched ev

[Pharo-dev] Fogbugz update

2013-07-20 Thread Benjamin
Hi guys, just an email to announce that I changed the link pointed by the pharo logo in fogbugz. It used to point to an odd page which nobody uses (https://pharo.fogbugz.com/default.asp?pg=pgOldMainMenu). As Damien Pollet suggested, now it points to the Pharo Welcome page (https://pharo.fogb

[Pharo-dev] Spec update

2013-07-19 Thread Benjamin
Hi guys :) Spec just got updated in 3.0 and the old TreeModel is now deprecated :) So the AlainTreeModel is now known as TreeModel, and TreeModel is now OldTreeModel (in Spec-Deprecated). The migration should be simple since both API are the same. Just think to change the name of the widget duri

[Pharo-dev] Penelope update

2013-07-19 Thread Benjamin
Hello :) Nicolas and I did a new pass on Penelope and finally fixed (we hope) the email address issue :) Moreover, there is now a permalink for registration: http://bugs.pharo.org/issues/register Ben

Re: [Pharo-dev] Spec delete method

2013-07-17 Thread Benjamin
SOrry, it was not my intention :( Ben On Jul 17, 2013, at 8:07 PM, Stéphane Ducasse wrote: > >> I do not think it's a UI framework concern to handle model behaviour (like >> registration to announcement) > > Ben > I notice that more frequently in your replies. To not judge people. We do not

Re: [Pharo-dev] Spec delete method

2013-07-17 Thread Benjamin
d then use this for his > purpose of unregistering from some announcer. > > Cheers, > Doru > > > On Wed, Jul 17, 2013 at 2:36 PM, Benjamin > wrote: > I do not think it's a UI framework concern to handle model behaviour (like > registration to announcement)

Re: [Pharo-dev] Config browser with filter

2013-07-17 Thread Benjamin
Just for info, there is in Spec a SearchableList and a SearchableTree :) Ben On Jul 17, 2013, at 2:55 PM, Torsten Bergmann wrote: > screen attached > > Pharo 2.0: Slice and issue 11179 together with a fix for broken buttons > Pharo 3.0: Slice and issue 11180 > >

Re: [Pharo-dev] Spec delete method

2013-07-17 Thread Benjamin
I do not think it's a UI framework concern to handle model behaviour (like registration to announcement) Ben On Jul 17, 2013, at 9:40 AM, Stéphane Ducasse wrote: > Hi ben > > I would like to unsubscribe announcement when the window is closed. > Is there a hook for that in Spec? > > Stef > >

Re: [Pharo-dev] My Del key not works anymore

2013-07-15 Thread Benjamin
The solution for you is to fix the VM :) Ben On Jul 15, 2013, at 5:56 PM, Igor Stasenko wrote: > On 15 July 2013 17:50, Stephan Eggermont wrote: >> Igor wrote: >>> can i have it back, >> >> I haven't had a Del key on my Macs since 1990 or so. >> Fn Backspace to delete (US Intl) works for me.

Re: [Pharo-dev] New Wiki page on Fogbugz

2013-07-15 Thread Benjamin
hane Ducasse > wrote: >> May be Stefan Eggermont has one. you should ask him. >> >> Stef >> >> On Jul 15, 2013, at 10:59 AM, Benjamin >> wrote: >> >> Did I do a video? >> >> Ben >> >> On Jul 15, 2013, at 10:48 AM, S

Re: [Pharo-dev] New Wiki page on Fogbugz

2013-07-15 Thread Benjamin
Did I do a video? Ben On Jul 15, 2013, at 10:48 AM, Stéphane Ducasse wrote: > do you have the videos of the demo you did on dynamic aspects? > > Stef > On Jul 15, 2013, at 10:06 AM, Benjamin > wrote: > >> Hi guys :) >> >> I just created a public wik

[Pharo-dev] New Wiki page on Fogbugz

2013-07-15 Thread Benjamin
Hi guys :) I just created a public wiki page on Fogbugz gathering links to Spec Documentation Here is the link https://pharo.fogbugz.com/default.asp?W67 I hope it will be useful :) Ben

Re: [Pharo-dev] Some Spec questions

2013-07-09 Thread Benjamin
On Jul 9, 2013, at 11:35 PM, Clara Allende wrote: > Hi folks, while working on the new debugger, I've come up with some > questions... > > *is there any other implementation for dynamic widgets other that the current > one? I do not get your question ... > > *right now the toolbar is a stat

Re: [Pharo-dev] filetree jenkins job

2013-07-07 Thread Benjamin
Cool :) Ben On Jul 7, 2013, at 11:00 PM, Camillo Bruni wrote: > after I tried to get filetree with the tests installed and I didn't get it > the first time I decided to create a jenkins job. > > https://ci.inria.fr/pharo-contribution/job/FileTree/ >

Re: [Pharo-dev] Visual element - Pogress bar.

2013-07-05 Thread Benjamin
se it? I > write in the workspace and is unknow. > Should download some package? ​ ​(I'm using pharo 3.0) > > ​Regards, > Mariano > > > On Fri, Jul 5, 2013 at 6:51 AM, Benjamin > wrote: > Is a SlideMorph what you are looking for ? > > > Ben >

Re: [Pharo-dev] Visual element - Pogress bar.

2013-07-05 Thread Benjamin
> On Fri, Jul 5, 2013 at 6:51 AM, Benjamin > wrote: > Is a SlideMorph what you are looking for ? > > > Ben > > On Jul 5, 2013, at 11:36 AM, Mariano Vicente wrote: > >> Hello >> I'm searching for a visual component such as ​ video ​progress bar ​

Re: [Pharo-dev] Visual element - Pogress bar.

2013-07-05 Thread Benjamin
Is a SlideMorph what you are looking for ? Ben On Jul 5, 2013, at 11:36 AM, Mariano Vicente wrote:HelloI'm searching for a visual component such as ​ video ​progress bar ​ / seek bar or something like this:are there something like it ? ​Regards,Mariano

Re: [Pharo-dev] Roassal 3d is on its way

2013-07-04 Thread Benjamin
Cool :P Ben On Jul 4, 2013, at 3:22 PM, Alexandre Bergel wrote: > One good news never come alone :-) > > We are working on a 3d version of Roassal. Here is a preliminary screenshot: > > > > More to come soon! > > Cheers, > Ronie, Milton, Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._

Re: [Pharo-dev] All websites are back online!

2013-07-04 Thread Benjamin
Cool :) Congratulation for your reactivity :) Ben On Jul 4, 2013, at 12:08 PM, Nicolas Petton wrote: > We got the power back :) > I recovered the databases for all 3 websites, and restarted them. > > Cheers, > Nico > > > > > On Jul 4, 2013, at 11:47 AM, Nicolas Petton wrote: > >> Hi! >>

[Pharo-dev] WorldMorph issue

2013-07-02 Thread Benjamin
onPrimitiveError: do a World install And this lead to an issue since some submorphs do not belong to Wolrd submorphs anymore Ben

Re: [Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Benjamin
What I didi for Nautilus was to use pragmas, this way I have my domain object (Nautilus), and menus are defined in another class (NautilusRefactoring by example). And NautilusRefactoring knows how to communicate with Nautilus. This way, the domain abject can stay clean, and I have a special class

Re: [Pharo-dev] List auto-selection of next item on delete

2013-06-30 Thread Benjamin
It's the default behaviour Ben On Jun 30, 2013, at 4:31 PM, Stéphane Ducasse wrote: > Hi > > Is there a way to say to a list that when we delete a selected element, the > selection should > be the next one if possible? > > Stef

Re: [Pharo-dev] HandMorph startup is fun

2013-06-26 Thread Benjamin
Welcome in my world :P Ben On Jun 26, 2013, at 2:48 PM, Stéphane Ducasse wrote: > startUp > > self clearCompositionWindowManager > > and guess what :) > > clearCompositionWindowManager is not implemented…. > > Alain is just disturbing me with all kinds of bogus morphic code :) > > St

Re: [Pharo-dev] Nautilus category filter

2013-06-26 Thread Benjamin
It should still be available since it's implemented on PluggaleListMorph Ben On Jun 26, 2013, at 12:54 PM, Torsten Bergmann wrote: > Back in the days the Nautilus Browser had a "filter" text field > directly above the category pane. One just had to click and > enter the name and the list got f

Re: [Pharo-dev] Can't add a class-side instvar.

2013-06-24 Thread Benjamin
Yes :) In Nautilus, there is an acceptor, an object knowing how to accept text depending of the contents. I bet the one used on class side is not the good one :) Ben On Jun 24, 2013, at 1:05 PM, Martin Dias wrote: > Hi > > I reported this issue some time ago*, and is still reproducible in 30

Re: [Pharo-dev] Startup preferences

2013-06-22 Thread Benjamin
There are at list 3 examples as far as I remember :) Ben On Jun 22, 2013, at 8:54 AM, Stéphane Ducasse wrote: > > On Jun 22, 2013, at 4:03 AM, Mariano Martinez Peck > wrote: > >> Stef, the basis should be more or less the same. What has changed is mostly >> the directories in which they ar

Re: [Pharo-dev] Running tests from Nautilus

2013-06-21 Thread Benjamin
THe api exists in Pharo and is used by the monkey by example. Doing something on top, a usual, takes time and energy Ben On Jun 21, 2013, at 5:55 PM, Sean P. DeNigris wrote: > abergel wrote >> I have tried to enter a bug issue on https://pharo.fogbugz.com but I could >> not. In 2 minutes I cou

Re: [Pharo-dev] Tabs

2013-06-21 Thread Benjamin
gt; Could we work on this? Perhaps we can take the opportunity to try a new > oo-design for the theme code: I proposed to have a theme strategy per morph > and have the theme be a conglomerate of these strategies. > > Cheers, > Doru > > > On Fri, Jun 21, 2013 at 12:16

Re: [Pharo-dev] Tabs

2013-06-21 Thread Benjamin
eat job, Ben. > > Doru > > > On Sun, Jun 9, 2013 at 9:03 PM, Benjamin > wrote: > hello guys :) > > I would like to introduce a new implementation of tabs with the following > features (for now): > - tabs with icon (and a label of course) > - un

Re: [Pharo-dev] on:do: for shortcuts?

2013-06-19 Thread Benjamin
Why not something like bindKeyCombination:toAction: ? Ben On Jun 19, 2013, at 9:28 AM, Stéphane Ducasse wrote: > excellent > so how do we integrate this change? > > I will chnage the chapter on keymapping :) > > > On Jun 18, 2013, at 9:57 PM, Guillermo Polito > wrote: > >> I prefer the

Re: [Pharo-dev] how to define menu in spec

2013-06-18 Thread Benjamin
For menus, there is nothing spec related here (yet). If you use pragmas, for defining your menus/shortcuts, there is (or was) a specific registration class supporting made for defining both in one. It was never adopted, so I do not know where to find it again, sorry Ben On Jun 18, 2013, at 1:48

Re: [Pharo-dev] There are still lots of Delay>>wait Processes

2013-06-18 Thread Benjamin
You may not be the only one, but you probably are the only whose job is to address Pharo issues :) Ben On Jun 18, 2013, at 11:17 AM, Igor Stasenko wrote: > On 18 June 2013 11:11, Stéphane Ducasse wrote: >> Once igor finishes the TxModel and Athens it was planned to address the >> Delay probl

Re: [Pharo-dev] straaannnnge code in SystemWindow>>addMorph:fullFrame:

2013-06-13 Thread Benjamin
I submitted a slice yesterday extracting hardcoded width of splitters for using a theme property. I you want to wrap everything in a container morph, it works pretty well as ing as you do not forget the magic invocation container := Morph new; changeProportionalLayout; yourself

Re: [Pharo-dev] IconicListItem>>text:icon: recently changed with bug

2013-06-11 Thread Benjamin
#image: it is :) Ben On Jun 11, 2013, at 8:35 PM, Damien Cassou wrote: > It looks like a bug got introduced recently in the Polymorph package. > The following code does not work: > > text: aText icon: form > >^ self new >morph:aText asMorph; >icon: (AlphaImageMorph new

Re: [Pharo-dev] Tabs

2013-06-10 Thread Benjamin
Ben On Jun 10, 2013, at 4:54 PM, Stephan Eggermont wrote: > I've taken a more detailed look at the tabs. I like the clean look and > the functionality very much. > > To make multi-selecting tabs perfect: > - I would like to be able to shift-click to multi-select; Indeed :) > - if I command

Re: [Pharo-dev] Tabs

2013-06-10 Thread Benjamin
Thank you :) A preview could be something fun indeed :) Ben On Jun 10, 2013, at 11:14 AM, kilon wrote: > Really Great works Benjamin . The multi select feature with the split is a > brilliant idea. Hovering above tabs gives also a preview of them like what > happens with pharo win

Re: [Pharo-dev] Tabs

2013-06-10 Thread Benjamin
I am not convinced by this one :) Anyway, it's a theme concern :) (or should be ^^) Ben On Jun 10, 2013, at 11:18 AM, Denis Kudriashov wrote: > Cool stuff! > > Another funny task: multicolor tabs like colorfullTabs mozilla plugin > > 2013/6/10 Benjamin > Holidays

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
You better not to know :) Ben On Jun 10, 2013, at 4:03 AM, Igor Stasenko wrote: > On 9 June 2013 21:03, Benjamin wrote: > > doh, Ben, what are you smokin? :) > > nicely done! > >> >> Ben >> > > > > -- > Best regards, > Igor Stasenko. >

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
You better not to know :) Ben On Jun 10, 2013, at 4:03 AM, Igor Stasenko wrote: > On 9 June 2013 21:03, Benjamin wrote: > > doh, Ben, what are you smokin? :) > > nicely done! > >> >> Ben >> > > > > -- > Best regards, > Igor Stasenko. >

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
Holidays are for doing fun stuff :) And it was fun :) (and actually pretty easy except the very last steps :P) Ben On Jun 9, 2013, at 11:49 PM, "Sean P. DeNigris" wrote: > Benjamin Van Ryseghem-2 wrote >> I would like to introduce a new implementation of tabs with the fo

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
Thank you :) Ben On Jun 9, 2013, at 11:55 PM, Sven Van Caekenberghe wrote: > > On 09 Jun 2013, at 21:03, Benjamin > wrote: > >> Here is a little (geeky) video showing a bit of everything: >> https://dl.dropboxusercontent.com/u/24369478/Tabs.m4v > > Very nice ! > >

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
The order of panels is the order of tabs (not the order of selection) I was thinking of adding something, but the only thing which came to my mind was something like the diff browser. But it is to invasive :( If you have an idea :) Ben On Jun 9, 2013, at 11:32 PM, Stephan Eggermont wrote: > L

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
ion: > selecting multiple tabs show the results in the current one. > Do safari, chrome have the same ? > > Stef > > On Jun 9, 2013, at 9:22 PM, Stéphane Ducasse > wrote: > >> >> On Jun 9, 2013, at 9:03 PM, Benjamin >> wrote: >> >>

Re: [Pharo-dev] Tabs

2013-06-09 Thread Benjamin
issing. > Thanks Ben! > Cheers > Alain > > On 9 juin 2013, at 21:03, Benjamin > wrote: > >> hello guys :) >> >> I would like to introduce a new implementation of tabs with the following >> features (for now): >> - tabs with icon (and a label

[Pharo-dev] Tabs

2013-06-09 Thread Benjamin
hello guys :) I would like to introduce a new implementation of tabs with the following features (for now): - tabs with icon (and a label of course) - un-closable tabs - threaded contents loading (with animated icon) - shortcuts handling (to navigate from one tab t

Re: [Pharo-dev] taking a custom screenshot of a submorph

2013-06-09 Thread Benjamin
One could use the halo, seems faster to me Ben On Jun 6, 2013, at 11:04 PM, Tudor Girba wrote: > Hi, > > Just in case you want to take a screenshot of a submorph, here is a > description + video of how you can do it using the GTInspector: > > http://www.humane-assessment.com/blog/custom-morp

Re: [Pharo-dev] Pharo 3.2 Meeting

2013-06-09 Thread Benjamin
Here is a short teaser https://dl.dropboxusercontent.com/u/24369478/CircularMenu2.mov Ben On Jun 1, 2013, at 1:26 AM, Alexandre Bergel wrote: > Excellent! > > Alexandre > > > On May 31, 2013, at 12:05 PM, Camille Teruel wrote: > >> Hello everyone! >> >> Here is the plan for pharo 3.2. As

Re: [Pharo-dev] Auto-Subscribe in Fogbugz

2013-06-09 Thread Benjamin
This was described in the fogbugz wiki :) But I like you send it to the mailing list :P (BTW if someone discover cool features, feel free to add an entry in the wiki page) Ben On May 29, 2013, at 3:27 PM, Sean P. DeNigris wrote: > I was wondering if it could be set up like google was where y

Re: [Pharo-dev] Memory leaks with Spec?

2013-05-25 Thread Benjamin
I am pretty sure to only use weak registration (why aren't all the registration weak btw ??) It may be a problem somewhere else :( Ben On May 25, 2013, at 1:55 PM, Igor Stasenko wrote: > On 25 May 2013 13:49, Stéphane Ducasse wrote: >> Hi guys >> >> this is strange I cannot get rid of Spec b

Re: [Pharo-dev] Spec and list item size

2013-05-25 Thread Benjamin
PluggableListMorph do not support that Ben On May 25, 2013, at 8:45 AM, Stéphane Ducasse wrote: > Hi > > How can I specify that the size of a liste element is two lines? > > Stef >

Re: [Pharo-dev] TxText new version 0.8

2013-05-21 Thread Benjamin
Use Nautilus to generate them, so you will not have to think about it :) (and you can blame someone else in case of bad naming ^^) Ben On May 21, 2013, at 10:24 PM, Denis Kudriashov wrote: > 2013/5/21 stephane ducasse > > On May 21, 2013, at 9:00 AM, Denis Kudriashov wrote: > >> 2013/5/20 s

Re: [Pharo-dev] Spec Dialogs auto-accepting text

2013-05-20 Thread Benjamin
Indeed, maybe it should. I have hit this a couple of time too Ben On May 21, 2013, at 12:01 AM, Sean P. DeNigris wrote: > I started out writing this surprised that spec dialogs don't autoaccept their > text fields by default. Now, I'm not sure whether they should, but in case > anyone else runs

Re: [Pharo-dev] Bug in SimpleSwitchMorph

2013-05-20 Thread Benjamin
I will try to have a look tomorrow afternoon :) Ben On May 20, 2013, at 10:50 PM, Stéphane Ducasse wrote: > Hi > > It seems that the bug is link with the fact that the cursor get outside the > bounds or not. > If you click and do not move or move but stay inside the morph it is ok > Now if y

Re: [Pharo-dev] Scrolling without clicking in lists

2013-05-20 Thread Benjamin
Mine too ! I opened an issue for that yesterday: https://pharo.fogbugz.com/default.asp?10670 Ben On May 20, 2013, at 6:17 PM, Sven Van Caekenberghe wrote: > Hi, > > In 2.0 you can scroll (using a scroll wheel or the track pad 2-finger swipe) > in any list (of a browser for example) just by

Re: [Pharo-dev] Printing of BlockClosures

2013-05-20 Thread Benjamin
Hope not, since it's a real pain :( Ben On May 20, 2013, at 6:08 PM, Sven Van Caekenberghe wrote: > Hi, > > One of the things that always positively surprised me about Smalltalk was the > fact that BlockClosures are printing showing their actual source code, you > don't get that in many lang

Re: [Pharo-dev] Penelope does not like my email...

2013-05-17 Thread Benjamin
on gmail address, dots are pointless :) If you send a mail at c.i.p.r.i.a.n.t.e.o.d.o.r@gmail.com, you will receive it :) As well as ciprianteodo...@gmail.com Try it :) Ben On May 17, 2013, at 10:50 PM, Ciprian Teodorov wrote: > Hi guys, > > Some time ago there were some issues with em

Re: [Pharo-dev] TxTextLayout

2013-05-16 Thread Benjamin
If the workspace also support Morphic Text Inlining, then you could duplicate the variable morphic element, and reuse it later :) Ben On May 16, 2013, at 10:38 PM, Denis Kudriashov wrote: > 2013/5/17 Igor Stasenko > On 16 May 2013 14:37, Camillo Bruni wrote: > > > > On 2013-05-16, at 13:04,

Re: [Pharo-dev] TxTextLayout

2013-05-16 Thread Benjamin
I think what Camillo want is to be able to interact with an object through a Morph Ben On May 16, 2013, at 1:04 PM, Denis Kudriashov wrote: > Hello. > > 2013/5/16 Camillo Bruni > I have a question concerning the new TxText layout. > How hard is it support inline non-text nodes (aka inline mo

Re: [Pharo-dev] vm fixes

2013-05-16 Thread Benjamin
st to set up the size of the > hostwindow to the one of a morph. > > Stef > > > > cheers -ben > > > > Benjamin wrote: > >> In the following picture, instead of doing the classical MessageBrowser > >> new openWithSpec, and get a Morphic window inside

Re: [Pharo-dev] vm fixes

2013-05-16 Thread Benjamin
I am afraid not to understand your question Ben On May 16, 2013, at 4:04 AM, b...@openinworld.com wrote: > Could this be used make Pharo dual-screened ? If yes, what would be the > limitations ? > > cheers -ben > > Benjamin wrote: >> In the following picture, instea

Re: [Pharo-dev] TxTextLayout

2013-05-15 Thread Benjamin
+1 Ben On May 15, 2013, at 10:18 PM, Camillo Bruni wrote: > I have a question concerning the new TxText layout. > How hard is it support inline non-text nodes (aka inline morphs) in a text > layout? > > My dream is still to be able to drag and drop an "instance" from an inspector > to a work

Re: [Pharo-dev] vm fixes

2013-05-15 Thread Benjamin
Tue, May 14, 2013 at 10:51 PM, Benjamin > wrote: > In the following picture, instead of doing the classical > MessageBrowser new openWithSpec, and get a Morphic window inside the os > window of Pharo > > I do > MessageBrowser openWorldWithSpec > And here the

Re: [Pharo-dev] vm fixes

2013-05-14 Thread Benjamin
> > On May 14, 2013, at 10:23 PM, Benjamin > wrote: > > > Thank you :) > > > > This fix goes with pair with > > https://pharo.fogbugz.com/default.asp?10619 > > > > Thanks to Esteban, one can now deploy a Spec widget with the os window as > >

Re: [Pharo-dev] Killing respondsTo:

2013-05-14 Thread Benjamin
] ifFalse: [ .. ] … Ben On May 14, 2013, at 10:32 PM, stephane ducasse wrote: > > On May 14, 2013, at 10:25 PM, Benjamin > wrote: > >> Then you will have >> >> [ receiver strangeMessage ] >> on: Error >> do: [ receiver otherMessage >>

<    1   2   3   4   5   >