Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Yuriy Tymchuk
Yes, but as I’ve mentioned earlier, I’m interested in drag-n-drop recategorization. I don’t know if it’s doable with glamour. Uko On 04 Oct 2014, at 15:58, Esteban Lorenzano esteba...@gmail.com wrote: and this is same with glamour: browser := GLMTabulator new row: [ :row |

Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Esteban Lorenzano
lazy Yury browser := GLMTabulator new row: [ :row | row column: #protocols; column: #methods ]; row: #code; yourself. browser transmit to: #protocols;

Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Sven Van Caekenberghe
Nice ;-) On 05 Oct 2014, at 11:56, Esteban Lorenzano esteba...@gmail.com wrote: lazy Yury browser := GLMTabulator new row: [ :row | row column: #protocols; column: #methods ]; row: #code;

Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Nicolai Hess
Yes, Glamour is cool. But two issues (can you solve them? :) ) 1. the source list is not updated, the dragged method is still visible in the old protocol until you change the selected protocol item 2. (critical) the image hangs if you drop the methods list item in the methods list. 2014-10-05

Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Esteban Lorenzano
On 05 Oct 2014, at 13:21, Nicolai Hess nicolaih...@web.de wrote: Yes, Glamour is cool. But two issues (can you solve them? :) ) 1. the source list is not updated, the dragged method is still visible in the old protocol until you change the selected protocol item 2. (critical) the image

Re: [Pharo-dev] Browser on a single class

2014-10-05 Thread Yuriy Tymchuk
On 05 Oct 2014, at 11:56, Esteban Lorenzano esteba...@gmail.com wrote: lazy Yury I’m just not so UI hacker as you are :). Thanks! browser := GLMTabulator new row: [ :row | row column: #protocols;

Re: [Pharo-dev] Browser on a single class

2014-10-04 Thread Nicolai Hess
2014-10-03 13:26 GMT+02:00 Esteban Lorenzano esteba...@gmail.com: On 03 Oct 2014, at 13:14, Nicolai Hess nicolaih...@web.de wrote: Am 03.10.2014 12:34 schrieb Yuriy Tymchuk yuriy.tymc...@me.com: Hi. I want to make something like a browser on a single class. I.e. just use 2 last

[Pharo-dev] Browser on a single class

2014-10-03 Thread Yuriy Tymchuk
Hi. I want to make something like a browser on a single class. I.e. just use 2 last lists out if 4 in standard browser. Is there already something like that? If not, should I use existing widgets, or implement my own using spec? Cheers! Uko Sent from my iPhone

Re: [Pharo-dev] Browser on a single class

2014-10-03 Thread Esteban Lorenzano
If just in a class, it will be a lot simpler doing it with glamour, I think On 3 Oct 2014, at 12:34, Yuriy Tymchuk yuriy.tymc...@me.com wrote: Hi. I want to make something like a browser on a single class. I.e. just use 2 last lists out if 4 in standard browser. Is there already

Re: [Pharo-dev] Browser on a single class

2014-10-03 Thread Nicolai Hess
Am 03.10.2014 12:34 schrieb Yuriy Tymchuk yuriy.tymc...@me.com: Hi. I want to make something like a browser on a single class. I.e. just use 2 last lists out if 4 in standard browser. Is there already something like that? If not, should I use existing widgets, or implement my own using spec?

Re: [Pharo-dev] Browser on a single class

2014-10-03 Thread Esteban Lorenzano
On 03 Oct 2014, at 13:14, Nicolai Hess nicolaih...@web.de wrote: Am 03.10.2014 12:34 schrieb Yuriy Tymchuk yuriy.tymc...@me.com mailto:yuriy.tymc...@me.com: Hi. I want to make something like a browser on a single class. I.e. just use 2 last lists out if 4 in standard browser.

Re: [Pharo-dev] Browser on a single class

2014-10-03 Thread Yuriy Tymchuk
My main interest in fact is recategorisation of methods. And dragging them into protocols looks pretty good for now. Can I do the same with glamour? Uko On 03 Oct 2014, at 13:26, Esteban Lorenzano esteba...@gmail.com wrote: On 03 Oct 2014, at 13:14, Nicolai Hess nicolaih...@web.de