Re: [Pharo-dev] FastTable question

2015-10-26 Thread Thierry Goubier
Le 26/10/2015 14:09, Esteban Lorenzano a écrit : On 26 Oct 2015, at 14:05, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote: Le 26/10/2015 11:37, Esteban Lorenzano a écrit : On 22 Oct 2015, at 09:13, Cyril Ferlicot mailto:cyril.ferli...@gmail.com>> wrote: For now On Thu, Oct 22, 2

Re: [Pharo-dev] FastTable question

2015-10-26 Thread Esteban Lorenzano
> On 26 Oct 2015, at 14:05, Thierry Goubier wrote: > > Le 26/10/2015 11:37, Esteban Lorenzano a écrit : >> >>> On 22 Oct 2015, at 09:13, Cyril Ferlicot wrote: >>> >>> For now >>> >>> On Thu, Oct 22, 2015 at 8:57 AM, stepharo wrote: Excellent How did you do it? >>> >>>

Re: [Pharo-dev] FastTable question

2015-10-26 Thread Thierry Goubier
Le 26/10/2015 11:37, Esteban Lorenzano a écrit : On 22 Oct 2015, at 09:13, Cyril Ferlicot wrote: For now On Thu, Oct 22, 2015 at 8:57 AM, stepharo wrote: Excellent How did you do it? I removed the hardcode value of the default row height in order use the size of the default font. "Stan

Re: [Pharo-dev] FastTable question

2015-10-26 Thread Esteban Lorenzano
> On 22 Oct 2015, at 09:09, Cyril Ferlicot wrote: > > We will at least keep it for Synectique in order to have a widget with > an action button for now. I do not want it in the main distribution :S As we talked, for me correct way to implement such behaviour is: - Transmit to FTSearchFunction

Re: [Pharo-dev] FastTable question

2015-10-26 Thread Esteban Lorenzano
> On 22 Oct 2015, at 09:13, Cyril Ferlicot wrote: > > For now > > On Thu, Oct 22, 2015 at 8:57 AM, stepharo wrote: >> Excellent >> >> How did you do it? >> > > I removed the hardcode value of the default row height in order use > the size of the default font. "StandardFont defaultfont pixel

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Thierry Goubier
2015-10-22 8:54 GMT+02:00 Esteban Lorenzano : > Hi, > > Sorry late response but yesterday I was not around. > > > > On 20 Oct 2015, at 18:42, stepharo wrote: > > > > for the mooc videos I must use larger fonts. > > So I ended up hacking and changing the hardcoded number in default > > > > default

Re: [Pharo-dev] FastTable question

2015-10-22 Thread stepharo
- when I read the code of FTmorph I was thinking that a lot of it has not much to do with UI but looks like a model :). this is not a question :) I know it was more a general feeling that I wanted to share with you in the case of rowHeight, it determines how the row looks (and not what it

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Cyril Ferlicot
For now On Thu, Oct 22, 2015 at 8:57 AM, stepharo wrote: > Excellent > > How did you do it? > I removed the hardcode value of the default row height in order use the size of the default font. "StandardFont defaultfont pixelSize" or something like that. (Can't check now). But as Esteban said this

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Cyril Ferlicot
We will at least keep it for Synectique in order to have a widget with an action button for now. I don't think you want an action button to be integrated inside the FTTableMorph ? When we will integrate the next configuration of FT into Pharo I will remove it from the FastTable package. On Thu,

Re: [Pharo-dev] FastTable question

2015-10-21 Thread stepharo
Excellent How did you do it? Le 20/10/15 18:47, Ferlicot D. Cyril a écrit : Le 20/10/2015 18:42, stepharo a écrit : for the mooc videos I must use larger fonts. So I ended up hacking and changing the hardcoded number in default defaultRowHeight ^ 24 rowHeight "This is the row heigh

Re: [Pharo-dev] FastTable question

2015-10-21 Thread Esteban Lorenzano
> On 20 Oct 2015, at 18:47, Ferlicot D. Cyril wrote: > > Le 20/10/2015 18:42, stepharo a écrit : >> for the mooc videos I must use larger fonts. >> So I ended up hacking and changing the hardcoded number in default >> >> defaultRowHeight >>^ 24 >> >> rowHeight >>"This is the row height

Re: [Pharo-dev] FastTable question

2015-10-21 Thread Esteban Lorenzano
Hi, Sorry late response but yesterday I was not around. > On 20 Oct 2015, at 18:42, stepharo wrote: > > for the mooc videos I must use larger fonts. > So I ended up hacking and changing the hardcoded number in default > > defaultRowHeight >^ 24 > > rowHeight >"This is the row height

Re: [Pharo-dev] FastTable question

2015-10-20 Thread Ferlicot D. Cyril
Le 20/10/2015 18:42, stepharo a écrit : > for the mooc videos I must use larger fonts. > So I ended up hacking and changing the hardcoded number in default > > defaultRowHeight > ^ 24 > > rowHeight > "This is the row height your rows will have. Cells answered in > dataSource will be force

[Pharo-dev] FastTable question

2015-10-20 Thread stepharo
for the mooc videos I must use larger fonts. So I ended up hacking and changing the hardcoded number in default defaultRowHeight ^ 24 rowHeight "This is the row height your rows will have. Cells answered in dataSource will be forced to have this height number... We force it instead