Re: [MSEide-MSEgui-talk] IDE - missing "Last opened projects"

2016-04-01 Thread Graeme Geldenhuys
On 2016-04-01 20:37, Krzysztof wrote: > As in subject. Very handy option It is there... kind of, but not a very user friendly way. Select "Project -> Open Project" The combobox to the left of the Name caption - click its Down arrow button and you will see a list of previous opened projects.

Re: [MSEide-MSEgui-talk] Flat TRichButton - how to change "on mouse" frame?

2016-04-01 Thread Krzysztof
Thanks Patrick! Good source of new stuff about MSE -- Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration Library. Click to learn more.

Re: [MSEide-MSEgui-talk] Flat TRichButton - how to change "on mouse" frame?

2016-04-01 Thread Patrick Goupell
On 04/01/2016 05:52 PM, Krzysztof wrote: BTW: Is there official full documentation for MSEgui classes? Especialy for enums: options, optionsskin, optionswidget, optionswidget1, state, localprops, localprops1 and all similar properties in frame.* and face*. A lot of enums, if I want something

[MSEide-MSEgui-talk] Flat TRichButton - how to change "on mouse" frame?

2016-04-01 Thread Krzysztof
Hi, I'm still learning Frame and Faces. There is a lot of sub properties so sometimes I'm little lost. I have flat TRichButton (pic1), I want to change "on mouse" / "hover" frame (pic2) from gray 3d / light to the one uniform custom color. I thought that I should look in Frame.Color, but it

Re: [MSEide-MSEgui-talk] Totally rounded button (knob)

2016-04-01 Thread Krzysztof
>> BTW: Is it possible to set little rounding on button edges using >> TFrame and not using FrameImage / TImageList? > > No. There's a tool from Alexandre in order to create the pixmaps. Where is it? -- Transform Data

[MSEide-MSEgui-talk] IDE - missing "Last opened projects"

2016-04-01 Thread Krzysztof
Hi Martin As in subject. Very handy option especially for newbie as me who often switch between MSE examples and own test projects to compare or check something. BTW: Do you also have sometimes "GDB timeout" error? I experience this quite often when have two IDE opened. It freezes my whole KDE

Re: [MSEide-MSEgui-talk] Migration from Lazarus

2016-04-01 Thread Krzysztof
Don't know why, but 'Make 4' even doesn't work without -Cg . I'm getting "error while linking", executable doesn't exists, only .dbg file. Weird -- Transform Data into Opportunity. Accelerate data analysis in your

Re: [MSEide-MSEgui-talk] Migration from Lazarus

2016-04-01 Thread Graeme Geldenhuys
On 2016-04-01 16:16, Krzysztof wrote: > Thanks, working perfect. I noticed that adding -Cg reduces binary size > from 4MB to 1.7MB (linux 64bit). What does PIC code option do? On my 64-bit FreeBSD system it makes my executables slightly bigger (about 100KB larger). Regards, - Graeme - --

Re: [MSEide-MSEgui-talk] Migration from Lazarus

2016-04-01 Thread Krzysztof
> 'Project'-'Make 4' uses smartlinking and optimisation which should reduce > binary size too. Using it by default makes debugging difficult. With 64 bit > FPC 2.6.4 it is not possible to smartlink MSEide with 2GB ram, 32 bit needs > more than 1GB. Right, that is why I added it to 'Make 4' at the

Re: [MSEide-MSEgui-talk] Migration from Lazarus

2016-04-01 Thread Martin Schreiber
On Friday 01 April 2016 17:16:29 Krzysztof wrote: > >> BTW: How to change output dir for all *.o and *.ppu files to local lib > >> dir? Tried Project -> Options -> Make -> Make directory but getting > >> "Make ***ERROR*** 1" in MSEide center (directory "lib" exists) > > > > Please add "-FU" to

Re: [MSEide-MSEgui-talk] Migration from Lazarus

2016-04-01 Thread Krzysztof
>> BTW: How to change output dir for all *.o and *.ppu files to local lib >> dir? Tried Project -> Options -> Make -> Make directory but getting >> "Make ***ERROR*** 1" in MSEide center (directory "lib" exists) >> > Please add "-FU" to 'Project'-'Options'-'Make'-'Make options' >

Re: [MSEide-MSEgui-talk] Totally rounded button (knob)

2016-04-01 Thread Martin Schreiber
On Friday 01 April 2016 14:25:33 Krzysztof wrote: > Hi Martin, > > Is there anything like Knob button? Yes, examples are here: https://gitlab.com/mseide-msegui/mseuniverse/tree/master/attic/msedocumenting/mse/trunk/help/tutorials/widgets/roundbutton see attachment. > > BTW: Is it possible to

Re: [MSEide-MSEgui-talk] Stacked widget?

2016-04-01 Thread Martin Schreiber
On Friday 01 April 2016 14:18:10 Krzysztof wrote: > > In MSEgui it is TWidget. MSEgui does not distinguish between widgets > > which can have children (Delphi TCustomControl) and simple graphic > > elements (Delphi TGraphicControl) > > This is great. I guess that it also use own windows (like

[MSEide-MSEgui-talk] Totally rounded button (knob)

2016-04-01 Thread Krzysztof
Hi Martin, Is there anything like Knob button? If not then I probably need to inherit from TButton, override doonpaint and draw it by my self right? BTW: Is it possible to set little rounding on button edges using TFrame and not using FrameImage / TImageList? Just little smoth rounding like

Re: [MSEide-MSEgui-talk] Stacked widget?

2016-04-01 Thread Krzysztof
> In MSEgui it is TWidget. MSEgui does not distinguish between widgets which can > have children (Delphi TCustomControl) and simple graphic elements (Delphi > TGraphicControl) This is great. I guess that it also use own windows (like AlienWindows in fpGUI) BTW: Can i add own widget to IDE and use

Re: [MSEide-MSEgui-talk] Stacked widget?

2016-04-01 Thread Martin Schreiber
On Thursday 31 March 2016 18:59:19 Krzysztof wrote: > Hi Martin, > > Is there any container widget which show only one widget at same time? > Something like LCL TNotebook (or Qt QStackedWidget). > In fact, in my > Lazarus app I don't use TNotebook but simply TPanel with runtime code: >