Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
19 messages Options
Reply | Threaded
Open this post in threaded view
|

Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Nicolai Hess
Is there some more information about this?

I opened that issue and I asks quesions about the NewList implementation on the mailing
list and commented on some other issues about NewList (for example 13554 Red cross in EyeDateAndTimeInspector).
(With not so much feedback).
And making NewListRender working with athens caused quite some headache to me.
But this is the first time I hear someone is working on a new list.

I would like to encourage people to make more comments on the bugtracker.

And, as we have already quite some mess in our widget libraries, because we
have all kinds of list/tree-morph-nomorph-pluggable-or-simple-with-or-without-icons-things,
I would like some more discussion/background info about this.

Especially how we prevent to not have  "just-another-list" in the image, but
a way/plan to migrate or exchange the current list class to use the new/better one.

thanks
nicolai






Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
Hi nicolai

Esteban is rewriting the list/table widgets and it is much much faster.
He should announce a beta any soon.
With it we will be able to remove
    - NewList (because its implementation is not good)
    - pluggableListMorph
    - and potentially the paginated and morph tree morph.

Stef
   

Le 23/5/15 00:20, Nicolai Hess a écrit :
Is there some more information about this?

I opened that issue and I asks quesions about the NewList implementation on the mailing
list and commented on some other issues about NewList (for example 13554 Red cross in EyeDateAndTimeInspector).
(With not so much feedback).
And making NewListRender working with athens caused quite some headache to me.
But this is the first time I hear someone is working on a new list.

I would like to encourage people to make more comments on the bugtracker.

And, as we have already quite some mess in our widget libraries, because we
have all kinds of list/tree-morph-nomorph-pluggable-or-simple-with-or-without-icons-things,
I would like some more discussion/background info about this.

I agree.
I would like to remove them all and get only one

Especially how we prevent to not have  "just-another-list" in the image, but
a way/plan to migrate or exchange the current list class to use the new/better one.

Why the migration to NewList was stopped is that we realised that it was not good.
Alain told us that 8 months ago.


thanks
nicolai





---------- Forwarded message ----------
From: Pharo Issue Tracker <[hidden email]>
Date: 2015-05-22 11:23 GMT+02:00
Subject: FogBugz (Case [Issue]13315) Morphic - NewList without icons
To: "[hidden email]" <[hidden email]>


avatar
Marcus Denker resolved Case 13315: NewList without icons and assigned it to you:
Bug in Project:
                                                           Morphic: 1. Pharo Image
We have a better list done by esteban soon
Status changed:
Work Needed  changed
                                                          to  Resolved (Invalid)

Assigned To changed:
Everyone  changed
                                                          to  Nicolai Hess

Priority Priority: 3 – Must Fix Status Status: Resolved (Invalid)
Assigned
                                                          To Assigned to: Nicolai Hess Milestone Milestone: Pharo5.0

Go to Case
Don't want FogBugz notifications anymore? Update your preferences.

FogBugz
A case which you opened has been resolved ( Resolved (Invalid) ) by Marcus Denker in FogBugz. It is your responsibility to verify the resolution and close or reactivate the case. Case ID: 13315 Title: NewList without icons Status: Resolved (Invalid) Category: Bug Project: Morphic Area: 1. Pharo Image Priority: 3 - Must Fix Milestone: Pharo5.0: 4/1/2016 Assigned To: Nicolai Hess URL: https://pharo.fogbugz.com/default.asp?13315 Changes: Status changed from 'Work Needed' to 'Resolved (Invalid)'. Last message: We have a better list done by esteban soon If you do not want to receive automatic notifications anymore, change your preferences in the Options screen. (https://pharo.fogbugz.com/f/userPrefs)


Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

EstebanLM
you can already play with it: 

Gofer it 
smalltalkhubUser: 'estebanlm' project: 'FastTable';
configuration;
loadStable.

not in my place this weekend so I cannot finish it as I wanted before pushing it.

My idea is to ask community help finish it. 

Implementation uses datasources to feed the list, so in theory you can browse infinite rows without loosing speed.
according to my tests (in my machine):

[ Object browse ] timeToRun asMilliSeconds. -> ~3000ms (without cache)
[ Object browse ] timeToRun asMilliSeconds. -> ~350ms (with cache active)
[ Object browse ] timeToRun asMilliSeconds. -> ~150ms with FastTable, always. 

There is an adaptor FTPluggableIconListMorphAdaptor that has the same format as a PluggableIconListMorph so changing already existing calls will be easy (even if there should not be done like that in the long term :)
 
So, so far, list works fine, but

- still missing drag&drop support
- there are some issues remaining:
-- cells escaping his width
-- last elements in long lists sometimes are not visible

some details has to be around too... but this is a good design, taken from Cocoa... is years better than the naive implementation of old PluggableListMorph and better than the strategy used by NewList (spawning threads all around).

Please, help me finish!
Repository is open so anybody can contribute. 

FTExamples has a set of wxamples with all things implemented :)

Esteban

ps: I already has the adaptor working with Nautilus, but since it depends on some changes on it I will wait until is integrated to push it. But basically if you want to try you just need to go to: CategoryWidget>>#buildCategoriesList, ClassWidget>>#buildClassesList and MethodWidget>>#buildMethodList and change PluggableIconListMorph with FTPluggableIconListMorphAdaptor




On Sun, May 24, 2015 at 7:41 AM, stepharo <[hidden email]> wrote:
Hi nicolai

Esteban is rewriting the list/table widgets and it is much much faster.
He should announce a beta any soon.
With it we will be able to remove
    - NewList (because its implementation is not good)
    - pluggableListMorph
    - and potentially the paginated and morph tree morph.

Stef
   

Le 23/5/15 00:20, Nicolai Hess a écrit :
Is there some more information about this?

I opened that issue and I asks quesions about the NewList implementation on the mailing
list and commented on some other issues about NewList (for example 13554 Red cross in EyeDateAndTimeInspector).
(With not so much feedback).
And making NewListRender working with athens caused quite some headache to me.
But this is the first time I hear someone is working on a new list.

I would like to encourage people to make more comments on the bugtracker.

And, as we have already quite some mess in our widget libraries, because we
have all kinds of list/tree-morph-nomorph-pluggable-or-simple-with-or-without-icons-things,
I would like some more discussion/background info about this.

I agree.
I would like to remove them all and get only one

Especially how we prevent to not have  "just-another-list" in the image, but
a way/plan to migrate or exchange the current list class to use the new/better one.

Why the migration to NewList was stopped is that we realised that it was not good.
Alain told us that 8 months ago.


thanks
nicolai





---------- Forwarded message ----------
From: Pharo Issue Tracker <[hidden email]>
Date: 2015-05-22 11:23 GMT+02:00
Subject: FogBugz (Case [Issue]13315) Morphic - NewList without icons
To: "[hidden email]" <[hidden email]>


avatar
Marcus Denker resolved Case 13315: NewList without icons and assigned it to you:
Bug in Project:
                                                           Morphic: 1. Pharo Image
We have a better list done by esteban soon
Status changed:
Work Needed  changed
                                                          to  Resolved (Invalid)

Assigned To changed:
Everyone  changed
                                                          to  Nicolai Hess

Priority Priority: 3 – Must Fix Status Status: Resolved (Invalid)
Assigned
                                                          To Assigned to: Nicolai Hess Milestone Milestone: Pharo5.0

Go to Case
Don't want FogBugz notifications anymore? Update your preferences.

FogBugz
A case which you opened has been resolved ( Resolved (Invalid) ) by Marcus Denker in FogBugz. It is your responsibility to verify the resolution and close or reactivate the case. Case ID: 13315 Title: NewList without icons Status: Resolved (Invalid) Category: Bug Project: Morphic Area: 1. Pharo Image Priority: 3 - Must Fix Milestone: Pharo5.0: 4/1/2016 Assigned To: Nicolai Hess URL: https://pharo.fogbugz.com/default.asp?13315 Changes: Status changed from 'Work Needed' to 'Resolved (Invalid)'. Last message: We have a better list done by esteban soon If you do not want to receive automatic notifications anymore, change your preferences in the Options screen. (https://pharo.fogbugz.com/f/userPrefs)



Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Nicolai Hess
Thank your reply

2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:
you can already play with it: 

Gofer it 
smalltalkhubUser: 'estebanlm' project: 'FastTable';
configuration;
loadStable.

not in my place this weekend so I cannot finish it as I wanted before pushing it.

My idea is to ask community help finish it. 

Implementation uses datasources to feed the list, so in theory you can browse infinite rows without loosing speed.
according to my tests (in my machine):

[ Object browse ] timeToRun asMilliSeconds. -> ~3000ms (without cache)
[ Object browse ] timeToRun asMilliSeconds. -> ~350ms (with cache active)
[ Object browse ] timeToRun asMilliSeconds. -> ~150ms with FastTable, always. 

There is an adaptor FTPluggableIconListMorphAdaptor that has the same format as a PluggableIconListMorph so changing already existing calls will be easy (even if there should not be done like that in the long term :)
 
So, so far, list works fine, but

- still missing drag&drop support
- there are some issues remaining:
-- cells escaping his width
-- last elements in long lists sometimes are not visible

some details has to be around too... but this is a good design, taken from Cocoa... is years better than the naive implementation of old PluggableListMorph and better than the strategy used by NewList (spawning threads all around).

Some info about this? Is this in some mac developer guide or a paper written about the design behind cocoa?

 

Please, help me finish!
Repository is open so anybody can contribute. 

+1
 

FTExamples has a set of wxamples with all things implemented :)

Thank you for not only having examples but class comments too!
 

Esteban

ps: I already has the adaptor working with Nautilus, but since it depends on some changes on it I will wait until is integrated to push it. But basically if you want to try you just need to go to: CategoryWidget>>#buildCategoriesList, ClassWidget>>#buildClassesList and MethodWidget>>#buildMethodList and change PluggableIconListMorph with FTPluggableIconListMorphAdaptor




On Sun, May 24, 2015 at 7:41 AM, stepharo <[hidden email]> wrote:
Hi nicolai

Esteban is rewriting the list/table widgets and it is much much faster.
He should announce a beta any soon.
With it we will be able to remove
    - NewList (because its implementation is not good)
    - pluggableListMorph
    - and potentially the paginated and morph tree morph.

Stef
   

Le 23/5/15 00:20, Nicolai Hess a écrit :
Is there some more information about this?

I opened that issue and I asks quesions about the NewList implementation on the mailing
list and commented on some other issues about NewList (for example 13554 Red cross in EyeDateAndTimeInspector).
(With not so much feedback).
And making NewListRender working with athens caused quite some headache to me.
But this is the first time I hear someone is working on a new list.

I would like to encourage people to make more comments on the bugtracker.

And, as we have already quite some mess in our widget libraries, because we
have all kinds of list/tree-morph-nomorph-pluggable-or-simple-with-or-without-icons-things,
I would like some more discussion/background info about this.

I agree.
I would like to remove them all and get only one

Especially how we prevent to not have  "just-another-list" in the image, but
a way/plan to migrate or exchange the current list class to use the new/better one.

Why the migration to NewList was stopped is that we realised that it was not good.
Alain told us that 8 months ago.


thanks
nicolai





---------- Forwarded message ----------
From: Pharo Issue Tracker <[hidden email]>
Date: 2015-05-22 11:23 GMT+02:00
Subject: FogBugz (Case [Issue]13315) Morphic - NewList without icons
To: "[hidden email]" <[hidden email]>


avatar
Marcus Denker resolved Case 13315: NewList without icons and assigned it to you:
Bug in Project:
                                                           Morphic: 1. Pharo Image
We have a better list done by esteban soon
Status changed:
Work Needed  changed
                                                          to  Resolved (Invalid)

Assigned To changed:
Everyone  changed
                                                          to  Nicolai Hess

Priority Priority: 3 – Must Fix Status Status: Resolved (Invalid)
Assigned
                                                          To Assigned to: Nicolai Hess Milestone Milestone: Pharo5.0

Go to Case
Don't want FogBugz notifications anymore? Update your preferences.

FogBugz
A case which you opened has been resolved ( Resolved (Invalid) ) by Marcus Denker in FogBugz. It is your responsibility to verify the resolution and close or reactivate the case. Case ID: 13315 Title: NewList without icons Status: Resolved (Invalid) Category: Bug Project: Morphic Area: 1. Pharo Image Priority: 3 - Must Fix Milestone: Pharo5.0: 4/1/2016 Assigned To: Nicolai Hess URL: https://pharo.fogbugz.com/default.asp?13315 Changes: Status changed from 'Work Needed' to 'Resolved (Invalid)'. Last message: We have a better list done by esteban soon If you do not want to receive automatic notifications anymore, change your preferences in the Options screen. (https://pharo.fogbugz.com/f/userPrefs)




Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Nicolai Hess
In reply to this post by EstebanLM


2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:



- there are some issues remaining:
-- cells escaping his width


Morphic-Widgets-FastTable-NicolaiHess.7
calculate column width (needed if all are undefined / see FTExamples exampleTable1)


Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Nicolai Hess


2015-05-25 13:23 GMT+02:00 Nicolai Hess <[hidden email]>:


2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:



- there are some issues remaining:
-- cells escaping his width


Morphic-Widgets-FastTable-NicolaiHess.7
calculate column width (needed if all are undefined / see FTExamples exampleTable1)



Name: Morphic-Widgets-FastTable-NicolaiHess.8
better calculation of visible number of rows for scrolling, not perfect.



Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
Thanks


- there are some issues remaining:
-- cells escaping his width


Morphic-Widgets-FastTable-NicolaiHess.7
calculate column width (needed if all are undefined / see FTExamples exampleTable1)



Name: Morphic-Widgets-FastTable-NicolaiHess.8
better calculation of visible number of rows for scrolling, not perfect.
Reply | Threaded
Open this post in threaded view
|

Re: Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Nicolai Hess
In reply to this post by EstebanLM


2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:


- still missing drag&drop support
- there are some issues remaining:
-- cells escaping his width
-- last elements in long lists sometimes are not visible


Any special reasons why you omitted doubleClick and drag&drop ? Didn't it fit into the actual design or
is it ok to implement it the same way like it is in PluggableListMorph?



Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

EstebanLM
In reply to this post by Nicolai Hess
thanks! this is exactly what I was hoping for (community help) :)

Esteban

On 25 May 2015, at 23:59, Nicolai Hess <[hidden email]> wrote:



2015-05-25 13:23 GMT+02:00 Nicolai Hess <[hidden email]>:


2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:



- there are some issues remaining:
-- cells escaping his width


Morphic-Widgets-FastTable-NicolaiHess.7
calculate column width (needed if all are undefined / see FTExamples exampleTable1)



Name: Morphic-Widgets-FastTable-NicolaiHess.8
better calculation of visible number of rows for scrolling, not perfect.




Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

EstebanLM
In reply to this post by Nicolai Hess
Hi, 

On 26 May 2015, at 10:37, Nicolai Hess <[hidden email]> wrote:



2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:


- still missing drag&drop support
- there are some issues remaining:
-- cells escaping his width
-- last elements in long lists sometimes are not visible


Any special reasons why you omitted doubleClick and drag&drop ? Didn't it fit into the actual design or
is it ok to implement it the same way like it is in PluggableListMorph?


I didn’t omit, just still did not implemented part of them:

- double click is implemented, it announces a FTStrongSelectionChanged (and the examples show it). 
- double click is still not implemented for the PluggableEtcAdaptor… but this was lack of time, not by design :)
- drag&drop is not implemented at all but again, because lack of time. I was targeting to work on it this week, but I’m also full of other stuff, so you will made me happy if you took it :)

cheers, 
Esteban
Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

EstebanLM
In reply to this post by Nicolai Hess
Hi,

On 24 May 2015, at 18:08, Nicolai Hess <[hidden email]> wrote:

Thank your reply

2015-05-24 10:02 GMT+02:00 Esteban Lorenzano <[hidden email]>:
you can already play with it: 

Gofer it 
smalltalkhubUser: 'estebanlm' project: 'FastTable';
configuration;
loadStable.

not in my place this weekend so I cannot finish it as I wanted before pushing it.

My idea is to ask community help finish it. 

Implementation uses datasources to feed the list, so in theory you can browse infinite rows without loosing speed.
according to my tests (in my machine):

[ Object browse ] timeToRun asMilliSeconds. -> ~3000ms (without cache)
[ Object browse ] timeToRun asMilliSeconds. -> ~350ms (with cache active)
[ Object browse ] timeToRun asMilliSeconds. -> ~150ms with FastTable, always. 

There is an adaptor FTPluggableIconListMorphAdaptor that has the same format as a PluggableIconListMorph so changing already existing calls will be easy (even if there should not be done like that in the long term :)
 
So, so far, list works fine, but

- still missing drag&drop support
- there are some issues remaining:
-- cells escaping his width
-- last elements in long lists sometimes are not visible

some details has to be around too... but this is a good design, taken from Cocoa... is years better than the naive implementation of old PluggableListMorph and better than the strategy used by NewList (spawning threads all around).

Some info about this? Is this in some mac developer guide or a paper written about the design behind cocoa?


there is some that I use as reference frequently:

this one:
is a “retired” document, but is retired because is old (old version of objective-c and old version of cocoa), but fundamentals remains ok. 
instead that document, apple refers now to here: 

last, I use as a source of inspiration this project: http://www.cocotron.org
which basically is a rewrite of cocoa but open source (and portable). Project is at least slow (if not stagnated), but I use it to consult algorithms and solutions they found to UI problems I find time to time. 

cheers, 
Esteban

 

Please, help me finish!
Repository is open so anybody can contribute. 

+1 
 

FTExamples has a set of wxamples with all things implemented :)

Thank you for not only having examples but class comments too!
 

Esteban

ps: I already has the adaptor working with Nautilus, but since it depends on some changes on it I will wait until is integrated to push it. But basically if you want to try you just need to go to: CategoryWidget>>#buildCategoriesList, ClassWidget>>#buildClassesList and MethodWidget>>#buildMethodList and change PluggableIconListMorph with FTPluggableIconListMorphAdaptor




On Sun, May 24, 2015 at 7:41 AM, stepharo <[hidden email]> wrote:
Hi nicolai

Esteban is rewriting the list/table widgets and it is much much faster.
He should announce a beta any soon. 
With it we will be able to remove 
    - NewList (because its implementation is not good)
    - pluggableListMorph
    - and potentially the paginated and morph tree morph.

Stef
    

Le 23/5/15 00:20, Nicolai Hess a écrit :
Is there some more information about this?

I opened that issue and I asks quesions about the NewList implementation on the mailing
list and commented on some other issues about NewList (for example 13554 Red cross in EyeDateAndTimeInspector).
(With not so much feedback).
And making NewListRender working with athens caused quite some headache to me. 
But this is the first time I hear someone is working on a new list.

I would like to encourage people to make more comments on the bugtracker.

And, as we have already quite some mess in our widget libraries, because we
have all kinds of list/tree-morph-nomorph-pluggable-or-simple-with-or-without-icons-things,
I would like some more discussion/background info about this.

I agree. 
I would like to remove them all and get only one

Especially how we prevent to not have  "just-another-list" in the image, but
a way/plan to migrate or exchange the current list class to use the new/better one.

Why the migration to NewList was stopped is that we realised that it was not good. 
Alain told us that 8 months ago. 


thanks
nicolai





---------- Forwarded message ----------
From: Pharo Issue Tracker <[hidden email]>
Date: 2015-05-22 11:23 GMT+02:00
Subject: FogBugz (Case [Issue]13315) Morphic - NewList without icons
To: "[hidden email]" <[hidden email]>


avatar
Marcus Denker resolved Case 13315: NewList without icons and assigned it to you: 
Bug in Project:
                                                           Morphic: 1. Pharo Image
We have a better list done by esteban soon
Status changed: 
Work Needed  changed
                                                          to  Resolved (Invalid) 

Assigned To changed: 
Everyone  changed
                                                          to  Nicolai Hess 

PriorityPriority: 3 – Must Fix StatusStatus: Resolved (Invalid) 
Assigned
                                                          ToAssigned to: Nicolai Hess MilestoneMilestone: Pharo5.0 

Go to Case
Don't want FogBugz notifications anymore? Update your preferences.

FogBugz
A case which you opened has been resolved ( Resolved (Invalid) ) by Marcus Denker in FogBugz. It is your responsibility to verify the resolution and close or reactivate the case. Case ID: 13315 Title: NewList without icons Status: Resolved (Invalid) Category: Bug Project: Morphic Area: 1. Pharo Image Priority: 3 - Must Fix Milestone: Pharo5.0: 4/1/2016 Assigned To: Nicolai Hess URL: https://pharo.fogbugz.com/default.asp?13315 Changes: Status changed from 'Work Needed' to 'Resolved (Invalid)'. Last message: We have a better list done by esteban soon If you do not want to receive automatic notifications anymore, change your preferences in the Options screen. (https://pharo.fogbugz.com/f/userPrefs)

Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Aliaksei Syrel
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex
Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Thomas Heniart
It looks nice
I want to play with it

2015-05-29 21:24 GMT+02:00 Aliaksei Syrel <[hidden email]>:
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex

Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
In reply to this post by Aliaksei Syrel
EXCELLENT

Aliaksei I can tell you that we presented bloc to thales people and they loved it.
Bloc passed the acid test!
Alain also shows me the logic of the PopUp with the event listener and this event listeners are great.
Now I imagine that we can do inplace edit of the list items (for example for changing the protocols we will be able to
double click on them :).

Stef

PS: Alain proposed to ask an Summer Code for you and indeed please do it.
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex

Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
In reply to this post by Aliaksei Syrel
Aliaksei

do you have a configuration of Brick?
I can do one and do you have  a jenkins job?
Because we can do it.
Stef

Le 29/5/15 21:24, Aliaksei Syrel a écrit :
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex

Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
In reply to this post by Aliaksei Syrel
https://pharoweekly.wordpress.com/2015/05/30/future-new-widget-sets-is-coming-to-you/

Le 29/5/15 21:24, Aliaksei Syrel a écrit :
> If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
> Examples included.
>
> Cheers,
> Alex


Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Aliaksei Syrel
In reply to this post by stepharo

No, I don't have both of them. It would be great to have a Jenkins job. With increasing amount of tests it already becomes complicated to check stability.

Cheers,
Alex

On May 30, 2015 7:41 AM, "stepharo" <[hidden email]> wrote:
Aliaksei

do you have a configuration of Brick?
I can do one and do you have  a jenkins job?
Because we can do it.
Stef

Le 29/5/15 21:24, Aliaksei Syrel a écrit :
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex

Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

stepharo
Ok I will build one when I have time.
Do you have an account on ci.inria.fr?
If not please request one for the Pharo project.

Le 30/5/15 11:29, Aliaksei Syrel a écrit :

No, I don't have both of them. It would be great to have a Jenkins job. With increasing amount of tests it already becomes complicated to check stability.

Cheers,
Alex

On May 30, 2015 7:41 AM, "stepharo" <[hidden email]> wrote:
Aliaksei

do you have a configuration of Brick?
I can do one and do you have  a jenkins job?
Because we can do it.
Stef

Le 29/5/15 21:24, Aliaksei Syrel a écrit :
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex


Reply | Threaded
Open this post in threaded view
|

Re: FogBugz (Case [Issue]13315) Morphic - NewList without icons

Aliaksei Syrel
EXCELLENT

Thanks:)

Alain also shows me the logic of the PopUp with the event listener and this event listeners are great.
Now I imagine that we can do inplace edit of the list items (for example for changing the protocols we will be able to 
double click on them :).

Exactly! Event listeners are extremely powerful. And popup is very nice example in sense that from the beginning it wasn't obvious that
it can be done using only event listener. And I'm sure there will be more use cases.

BTW, key binding logic in the list is added as local event listener, so there is absolutely no need to subclass list morph - just add custom listener and be
done) Yes, I would like to do the summer project ;)

Do you have an account on ci.inria.fr?

yes, login is my gmail address

Ok I will build one when I have time.

Perfect :)

Cheers,
Alex

On Sat, May 30, 2015 at 11:36 AM, stepharo <[hidden email]> wrote:
Ok I will build one when I have time.
Do you have an account on ci.inria.fr?
If not please request one for the Pharo project.

Le 30/5/15 11:29, Aliaksei Syrel a écrit :

No, I don't have both of them. It would be great to have a Jenkins job. With increasing amount of tests it already becomes complicated to check stability.

Cheers,
Alex

On May 30, 2015 7:41 AM, "stepharo" <[hidden email]> wrote:
Aliaksei

do you have a configuration of Brick?
I can do one and do you have  a jenkins job?
Because we can do it.
Stef

Le 29/5/15 21:24, Aliaksei Syrel a écrit :
Hi,

We do some kind of a List for Bloc:

Inline image 1

Main features:

 - List doesn't care what kind of morphs to contain.
 - Flexible height of elements. Any will do.
 - Items can resize.
 - Elements can be partially visible.
 - Different kind of caches.
 - Selection strategies.

Short demo video:
If you want to play load: http://ws.stfx.eu/F4DRC0CVSDII
Examples included.

Cheers,
Alex