[MSEide-MSEgui-talk] Migration from Lazarus

2016-03-24 Thread Krzysztof
Hi, I would like to try migrate my LCL app to MSEGui but I don't know if something is missing in MSEGui: 1. My app is "chat" kind. In LCL, for messages view I used TIpHTMLPanel. Does MSEGUI has something similar? In fact I don't need HTML, RTF is enough. Selectable formatted text with images (as e

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

2016-03-25 Thread Krzysztof
Thanks Martin for quick answer. Note that I'm very newbie in MSEGUI but I'm familiar with concept because I often use fpGUI > MSEgui has TTextEdit which must be placed in a TWidgetGrid. The MSEide source > editor uses that combination. TTextEdit supports formatted text but no > images. The best pr

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

2016-03-25 Thread Krzysztof
> What do you think about WebKit? Well it is always great to have a real browser widget in any programming environment :D . But as I said, in my case I need only 0.1% what WebKit offer. Even HTML 4.0 is too much. Simple RTF is enough. Webkit = 20-30MB binary + dependencies + RAM + CPU. In fact, su

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

2016-03-25 Thread Krzysztof
> Here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/widgets/layout > One with TSpacer, one with TLayouter. Thanks again! BTW: Do you know which audio library Xelplayer is using in backend? -- Transf

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

2016-03-26 Thread Krzysztof
> That should be possible with TWidgetGrid. Activate TWidgetGrid.OptionsGrid > og_rowheihgt in order to enable variable rowheight, insert a TDataIcon or a > TDataImage for the icon colum, a TTextEdit for the textcolumn and a > TDateTimeEdit for the date (all available in component palette 'Edit').

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

2016-03-26 Thread Krzysztof
> Yes, MSEide's docking is years ahead of Lazarus's. Simply select "View > -> Panels -> New Panel". Create as many as you need, drag any IDE > windows using the right edge double-grip and dock them as you need in > the panels. > > Something you might not be aware of. With MSEide each project conta

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

2016-03-26 Thread Krzysztof
> An example is here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/graphics/ftglyphs > > It needs MSEgui git master 0277701d9fb48394343e5d415dbc858a51f5c573 > https://gitlab.com/mseide-msegui/mseide-msegui Thanks! It is going to be an interesting weekend :) -

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

2016-03-30 Thread Krzysztof
> Here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/widgets/layout > One with TSpacer, one with TLayouter. > > Martin Sorry for delay. Had less time on weekend than I thought. I'm analyzing now your examples by trying to reproduce them by my self in empty project. The one wi

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

2016-03-30 Thread Krzysztof
> An example is here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/graphics/ftglyphs > > It needs MSEgui git master 0277701d9fb48394343e5d415dbc858a51f5c573 > https://gitlab.com/mseide-msegui/mseide-msegui > > Martin Trying this example now. Downloaded msegui from git repo. I

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

2016-03-31 Thread Krzysztof
Yes. Forgot to mention that I'm on 64bit linux. Now it is working perfect. Thank you! -- Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration Library. Click

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

2016-03-31 Thread Krzysztof
>> Sorry for delay. Had less time on weekend than I thought. I'm >> analyzing now your examples by trying to reproduce them by my self in >> empty project. The one with TSpacer was easy. With TLayouter not. When >> reducing form width, edit stop moving on half form while there is >> still space to

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

2016-03-31 Thread Krzysztof
> On Thursday 31 March 2016 14:02:41 Krzysztof wrote: >> >> Here is example. Try to run it and shrink form width. Edit stop moving >> in half way. Can't find which property is responsible for this. > > It is because of tdrawgrid1. Please set tdrawgrid1.anchor

[MSEide-MSEgui-talk] Stacked widget?

2016-03-31 Thread Krzysztof
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: Control.ManualDock(Panel, nil, alClient). I guess that in MSEgui I can simpl

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

[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 butto

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' > http://www.free

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 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 applicat

[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 de

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 int

[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 do

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. http://pubads.g.doub

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

2016-04-02 Thread Krzysztof
> 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. Thanks, that is enough for me :) ---

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

2016-04-02 Thread Krzysztof
> Are there no problems with a single running MSEide? Didn't notice such problem with only one IDE -- Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration L

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

2016-04-02 Thread Krzysztof
> Then it becomes difficult... > Currently I often work with three running MSEide's for MSElang development and > I didn't see such problems on 32bit Linux. Do not bother yourself :) . It is not such annoying thing -- Tra

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

2016-04-02 Thread Krzysztof
> An example is here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/widgets/buttons/hoverframe > it needs MSEgui git master e037c5246cfe1c3ac242f850762fbe6193a724fd. Great example, thanks > I suggest to extend the frameimagemaker tool to a complete frame/face designer > which

[MSEide-MSEgui-talk] TCanvas.RoundRect ?

2016-04-02 Thread Krzysztof
Hi Martin, I'm playing with TPaintBox and MSEgui canvas to see diferences between LCL TCanvas. Does MSEgui have equivalent for LCL RoundRect? There is DrawEllipse, DrawCircle but what aboud rounded rectangle? Regards --

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

2016-04-02 Thread Krzysztof
> An example is here: > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/samples/widgets/buttons/hoverframe > it needs MSEgui git master e037c5246cfe1c3ac242f850762fbe6193a724fd. Ahh one thing. You forgot to remove your macros from project options and it is not compiling by default ;) ---

[MSEide-MSEgui-talk] IDE code editor - double click selection

2016-04-03 Thread Krzysztof
Hi Martin, In IDE code editor is missing double click selection. Often used for copy & paste. This is just my habit from Lazarus - double click on procedure or var name, CTRL+C and paste elsewhere. Currently doubleclick does nothing. My suggestion is that double click should select word (dot and s

[MSEide-MSEgui-talk] Custom component and hidding published properties

2016-04-08 Thread Krzysztof
Hi Martin, I have created own Tlayouter descendant which have other controls as childs (TButton and also Tlayouter). I got weird behavior by setting properties in costructor. Finally found out that I placed my new component on form before changes in its constructor so they were saved in mfm and on

[MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-08 Thread Krzysztof
Hi, Is there control for showing directories tree (with custom folder icon)? I'm looking at tfilelistview but I'm not sure if this is right control. A lot of settings, maybe I missed something. Regards -- Find and fix ap

[MSEide-MSEgui-talk] TListView and "ownerdata"

2016-04-08 Thread Krzysztof
Hi Martin, I mentioned about this in topic "Migration from Lazarus". You respond: > TTreeItemEdit placed in a TWidgetGrid. TWidgedGrid (component palette > tab 'Edit') is a grid widget where inserted edit widgets build data columns. > That means it is possible to combine a TreeItemEdit column wit

Re: [MSEide-MSEgui-talk] Custom component and hidding published properties

2016-04-09 Thread Krzysztof
Thanks! Everything is working fine now :) -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applica

Re: [MSEide-MSEgui-talk] TListView and "ownerdata"

2016-04-09 Thread Krzysztof
Thanks. I'm playing with TDrawGrid and I think that it fit my needs. It is also more economical using simple lite record structure instead of TListItem object -- Find and fix application performance issues faster with Appl

[MSEide-MSEgui-talk] TStringEdit - Empty_ visible when focused

2016-04-09 Thread Krzysztof
Hi Martin, I guess that TStringEdit.Empty_X is a "text hint" or more commonly known as "placeholder" right? Looking at options, is it possible to show it even when it is focused (but still empty)? Qt edits from version 5.0 are showing placeholders that way by default. Very helpful in case when hav

[MSEide-MSEgui-talk] Adding icon actions into TStringEdit

2016-04-09 Thread Krzysztof
Hi Martin, Is it possible to add action icons into TEdit? I mean icon for custom purpose like clear text, filter, open something etc. Something like button inside tdropdownitemedit. Knowing the fact that any widget can contain child widgets, I added TIcon into TEdit on the left side with cl_Transp

[MSEide-MSEgui-talk] TDirDropdownEdit - how to make button flat and transparent?

2016-04-09 Thread Krzysztof
Hi Martin, I want to make dropdown button flat, transparent and with custom icon. I changed icon, made button flat but can't make it transparent (see attached screen). Changing tdirdropdownedit.frame.button.color := cl_transparent has no effect, it is still gray. Regards -

Re: [MSEide-MSEgui-talk] Adding icon actions into TStringEdit

2016-04-10 Thread Krzysztof
Thank you! -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application

Re: [MSEide-MSEgui-talk] TDirDropdownEdit - how to make button flat and transparent?

2016-04-10 Thread Krzysztof
> On Saturday 09 April 2016 23:39:17 Krzysztof wrote: >> Hi Martin, >> >> I want to make dropdown button flat, transparent and with custom icon. >> I changed icon, made button flat but can't make it transparent (see >> attached screen). Changi

[MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-10 Thread Krzysztof
Hi Martin, A lot of FA icons can have disproportionate size. This issue also was a struggle in Lazarus LCL . For example folder icon (code point 61563) has size 16x13. If TImageList has fixed 16x16 size then icons which have disproportionate size, have small but annoying offset even when adding th

Re: [MSEide-MSEgui-talk] TDirDropdownEdit - how to make button flat and transparent?

2016-04-10 Thread Krzysztof
> Or better set tdirdropdownedit.frame.button.color to cl_foreground. Ok thanks. BTW: How can I change dir icon in dropdown tree? Is it also in stockdata.glyph or somewhere? Can I somehow replace them? -- Find and fix app

Re: [MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-11 Thread Krzysztof
So what can I do for now? -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolv

[MSEide-MSEgui-talk] Up-down / grouped button

2016-04-12 Thread Krzysztof
Hi Martin, How to make TButton to act as "radio button"? I mean it can be down and click on another button with same group make it up and make down new button. In LCL it was enough to set TSpeedButton.GroupIndex. Regards ---

Re: [MSEide-MSEgui-talk] TDirDropdownEdit - how to make button flat and transparent?

2016-04-12 Thread Krzysztof
2016-04-11 8:37 GMT+02:00 Martin Schreiber : > They are in lib/common/dialogs/msefiledialogres.pas. > On runtime: > " > filedialogres.images.setimage(ord(fdi_dir),newbitmap, >[al_xcentered,al_ycentered]); Why result has weird artifacts (see attached screen)? Normal

Re: [MSEide-MSEgui-talk] TDirDropdownEdit - how to make button flat and transparent?

2016-04-13 Thread Krzysztof
2016-04-13 13:21 GMT+02:00 Martin Schreiber : > If the destination bitmap has no mask the source mask is used to draw the > image on the destination bitmap, the masked pixels are untouched -> random. > > " > var > b: tmaskedbitmap; > begin > b:= tmaskedbitmap.create(bmk_rgb); > try > b.masked:

Re: [MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-13 Thread Krzysztof
2016-04-13 18:08 GMT+02:00 Martin Schreiber : > f.left := 1; > f.top := 0; > f.right := 0; > f.bottom := -2; Indeed that is better. Result same (or even better) and bitmap smaller. Thanks -- Find and fix a

Re: [MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-13 Thread Krzysztof
Could you also add "rotate" option? I think that then we can create set of images and create sprite animation for spinners. Look at "spinner" section https://fortawesome.github.io/Font-Awesome/icons/ BTW: Is there any component or example for sprite animation? In mseuniverse found only blendanimati

[MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-13 Thread Krzysztof
Hi Martin, Why can't use sqldb unit? Get error: "bufdataset.pas(24,26) Fatal: Cannot find bufdataset_parser used by BufDataset. Make sure all ppu files of a package are in its output directory. ppu in wrong directory=/usr/lib/fpc/2.6.4/units/x86_64-linux/fcl-db/bufdataset_parser.ppu.." sqldb is F

Re: [MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-14 Thread Krzysztof
2016-04-14 9:14 GMT+02:00 Martin Schreiber : > Currently MSEgui has no support for rotating bitmaps. But if FontAwesome is icon then can't it be done on font level? I mean, I'm not familiar on such low level but I see that caption flags has f_rotate90. > Please use AggPas or another image library

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-14 Thread Krzysztof
Yep. Now is compiling fine. Thanks :) I'll probably move to msedb in future but for now I'm focused on porting GUI -- Find and fix application performance issues faster with Applications Manager Applications Manager provid

[MSEide-MSEgui-talk] FindFirstUTF8, UTF8LowerCase etc. Do I need this in MSE?

2016-04-15 Thread Krzysztof
Hi Martin, I'm still porting code from Lazarus project. Now I'm in unicode issues. I often use UTF8LowerCase (and other UTF8XXX) which is from LCL (LazUTF8, LazFileUtils), not from FCL. I need it because I'm using external C libs (e.g. TagLib which extract music tags from mp3 files). Has MSEgui eq

Re: [MSEide-MSEgui-talk] FindFirstUTF8, UTF8LowerCase etc. Do I need this in MSE?

2016-04-15 Thread Krzysztof
This include also DirectoryExistsUTF8(), ForceDirectoriesUTF8, etc -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers

[MSEide-MSEgui-talk] FindAllFiles() alternative

2016-04-15 Thread Krzysztof
Hi Martin, Is there alternative for: function FindAllFiles(const SearchPath: String; SearchMask: String = ''; SearchSubDirs: Boolean = True; DirAttr: Word = faDirectory): TStringList; overload; >From package Lazutils->Fileutil. I know that I can write it by my self using FindFirst/FindNext but

[MSEide-MSEgui-talk] IDE Object inspector - double click switch for boolean properties

2016-04-16 Thread Krzysztof
Hi Martin, Small request from Lazarus IDE habit. Double click on boolean type (or enums items) could switch between TRUE/FALSE (value := not value). It is much faster double click on optionswidget1 items than dropdown each one where is only TRUE and FALSE. It could be active only when double click

[MSEide-MSEgui-talk] TLayouter, osc_shrinky is shrinking too much

2016-04-16 Thread Krzysztof
Hi Martin, Don't know why osc_shrinky is shrinking too much. See attached screen, buttons have top border cut (~1px). Checked your demo widgets/layout/layouter and don't know why here it is ok. What option I don't see? Attached demo. Regards mse_test.7z Description: application/7z-compressed --

[MSEide-MSEgui-talk] Why TSimpleWidget has Visible = False by default?

2016-04-16 Thread Krzysztof
Hi Martin, Simple question :D . It is GUI component on Widget tab, why such exception? To be honest, I dropped it on form and played with frame and face properties and wondered why nothing changed until saw that it is hidden. Took me few minutes of scratching head :D Regards

Re: [MSEide-MSEgui-talk] IDE Object inspector - double click switch for boolean properties

2016-04-17 Thread Krzysztof
Great. Didn't know that. This is enough for me -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business ap

Re: [MSEide-MSEgui-talk] TLayouter, osc_shrinky is shrinking too much

2016-04-17 Thread Krzysztof
Yep, that was it. Thanks -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolve

Re: [MSEide-MSEgui-talk] FontAwesome icons - size regression

2016-04-17 Thread Krzysztof
Perfect!! -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application p

Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-17 Thread Krzysztof
There is odd frame on the right which end at the last directory item, look at screenshot -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insight

Re: [MSEide-MSEgui-talk] Only one instance per application

2016-04-18 Thread Krzysztof
Didn't test but you can normaly use UniqueInstance. It has component for Lazarus IDE components palette and only this is LCL. Backend is FCL. Just add UniqueInstanceRaw to your project "uses" section and before application run, call: begin if InstanceRunning then begin ShowMessage('Applica

Re: [MSEide-MSEgui-talk] Only one instance per application

2016-04-18 Thread Krzysztof
2016-04-18 10:13 GMT+02:00 Graeme Geldenhuys : > In my fpGUI applications I use SimpleIPC (included as standard with FPC) > - it is a cross-platform way of getting the same result UniqueInstance is also basing on simpleipc unit -

Re: [MSEide-MSEgui-talk] TStringEdit - Empty_ visible when focused

2016-04-18 Thread Krzysztof
Great! Are they expected behaviors? 1. With eo_showfocused, when entering, empty text is not tf_xcentered but on the left 2. When clearing text with backspace and eo_showfocused, empty text is not showing up again. They are not cons, just wondering if not a bug ---

Re: [MSEide-MSEgui-talk] FindAllFiles() alternative

2016-04-18 Thread Krzysztof
Is it possible to call SearchFiles() with multiple file mask? This work: SearchFiles('*.jpeg', but these not: SearchFiles('*.jpeg *.bmp', SearchFiles('*.jpeg;*.bmp', SearchFiles('*.jpeg|*.bmp', -- Find and

Re: [MSEide-MSEgui-talk] FindAllFiles() alternative

2016-04-18 Thread Krzysztof
and also could be "case-insensitive" option for ext because sometimes I found *.BMP files on my disk -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep p

Re: [MSEide-MSEgui-talk] FindAllFiles() alternative

2016-04-19 Thread Krzysztof
Thanks a lot! -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves applicati

Re: [MSEide-MSEgui-talk] Up-down / grouped button

2016-04-19 Thread Krzysztof
> git master 67e6cf80e4fb391bd756df0ad93918c6c5ea4c28 has tdatabutton.options > bo_radioitem and "group" property. How to use it? Placed 3 tdatabuttons on form, set group 1 and bo_radioitem for each but they still acting as normal buttons. Clicking on any, doesn't keep it down. Should I check some

Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-19 Thread Krzysztof
Is there option for show selected dir even when widget is not focused / active? Currently, when I change focus to other widget then I don't see which dir is selected. IIRC in LCL this option is known as "HideSelection" for edit kind widgets. Other requests: 1. If dto_expandondblclick is set, then i

Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-20 Thread Krzysztof
2016-04-20 8:39 GMT+02:00 Martin Schreiber : > What is your utilisation of TDirTreeView? I have some kind of file browser. On the left is TDirTreeView, on the right drawgrid. When user select dir then files with specified format are loaded into draw grid --

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-21 Thread Krzysztof
Have it again :( . But now I think that it is my fault. After your fix, everything worked fine. Could compile my project on MSEide but also in Lazarus. Since I'm using MSEide mostly only for designing (I'm too much addicted to code completition after 6 years work with Lazarus IDE) I didn't build pr

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-22 Thread Krzysztof
2016-04-22 6:57 GMT+02:00 Martin Schreiber : > "lib/common/fpccompatibility/mdbf_prscore.pas" should be loaded instead. > Please check why dbf_prscore.ppu is loaded by adding -vu to compiler > parameters. Let me know if you need more logs: (MASKUTILS) Load from MASKUTILS (interface) unit SYSTEM (

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-22 Thread Krzysztof
2016-04-22 11:36 GMT+02:00 Martin Schreiber : > That is the problem. I don't know why it worked before. git master > 13345e403732d1c2a889d6f1c2eeecc4fb7874b8 renamed it to mdbf_prssupp. Please > delete dbf_prssupp.ppu. Thanks. This one is fixed. I'm still porting new units from LCL. Now MSEide com

Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-22 Thread Krzysztof
What does it mean "submodule"? -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It r

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-22 Thread Krzysztof
This is from MSEide: ppcx64 -ochatplayer -Fu/home/dibo/programowanie/mse_git/lib/addon/* -Fi/home/dibo/programowanie/mse_git/lib/addon/* -Fu/home/dibo/programowanie/mse_git/lib/common/kernel/linux -Fu/home/dibo/programowanie/mse_git/lib/common/* -Fu/home/dibo/tc_home/projects/multimediachat_laz_v2

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-22 Thread Krzysztof
2016-04-22 14:00 GMT+02:00 Martin Schreiber : > Please try to insert this link on top > of 'Project'-'Options'-'Make'-'Directories', uncheck 'I','L' and 'O'. The > order is reversed in FPC commandline so that top rows dominate. Still can't find sqlite3conn > I assume there is FPC RTL and FCL? Wh

Re: [MSEide-MSEgui-talk] SQLDB - can't find bufdataset_parser

2016-04-22 Thread Krzysztof
I'm confused too. I'm not familiar with compiling from command line. Always used IDE build option. But finally got it compile with little trick. These are my MSEide project directories: ${MSELIBDIR}*/ ${MSELIBDIR}kernel/$TARGETOSDIR/ ${MSEDIR}lib/addon/*/ /usr/share/fpcsrc/2.6.4/packages/fcl-db/src

[MSEide-MSEgui-talk] GDB Timeut

2016-04-22 Thread Krzysztof
Hi Martin, We had such discussion in other topic. I can confirm it even with one MSEide instance :( . Lazarus is closed. And it is happens often and often. Very annoying. When openning IDE and pressing F9, on 97% cases my whole KDE dekstop is freezing for about 20-30 seconds. Can't click on anythi

Re: [MSEide-MSEgui-talk] GDB Timeut

2016-04-22 Thread Krzysztof
When finally KDE desktop unfreeze and gdb timeout occur, MSEide is even closing long -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights i

Re: [MSEide-MSEgui-talk] GDB Timeut

2016-04-22 Thread Krzysztof
2016-04-22 18:10 GMT+02:00 Martin Schreiber : > Does the problem > persist if the project has been built without debuginfo? How to do that? Meantime downloaded and build latest gdb 7.11. Installed it in /usr/local/bin/gdb. Added path to this file in MSEide - Settings - Configure - Debugger. Don'

Re: [MSEide-MSEgui-talk] GDB Timeut

2016-04-22 Thread Krzysztof
Finally got gdb timeout but it is very very rare compared when these options are checked -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insigh

Re: [MSEide-MSEgui-talk] GDB Timeut

2016-04-22 Thread Krzysztof
so weird -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application pr

[MSEide-MSEgui-talk] TSlider example

2016-04-22 Thread Krzysztof
Hi again :) is there example how to use TSlider? I se "value" property but no "Max". TSlider is equivalent for LCL TTrackbar, right? Searched for "tslider" key in mseuniverse, found "damping" demo but can't understand it. There is no such thing as "range" in mfm: object slider: tslider opti

Re: [MSEide-MSEgui-talk] TSlider example

2016-04-22 Thread Krzysztof
2016-04-22 23:42 GMT+02:00 Krzysztof : > Does it mean that "max" is TSlider width and > value is from 0 to TSlider.Width? Testing it. No, value is float range from 0.0 to 1.0. Ok I think I understand, I need to calculate percentage/scale based on value and expected max, that i

Re: [MSEide-MSEgui-talk] TSlider example

2016-04-22 Thread Krzysztof
2016-04-23 0:39 GMT+02:00 Krzysztof : > It should also correspond with "accept" param in "onsetvalue" > event. Let say that my "accept" is for every 0.25 (4 steps), click on > slider should move button / change value to the closest mouse position > &

Re: [MSEide-MSEgui-talk] TSlider example

2016-04-23 Thread Krzysztof
2016-04-23 9:54 GMT+02:00 Martin Schreiber : > Use Ctrl+LeftClick or activate TSlider.ScrollBar.Options sbo_clicktovalue (git > master 2d26a8281b79bb6f3005036dc28e8232b810998b). Thanks! -- Find and fix application perform

Re: [MSEide-MSEgui-talk] TSlider example

2016-04-23 Thread Krzysztof
Is it possible to have some kind "fill effect"? I mean, different face / color for "passed" value -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performan

[MSEide-MSEgui-talk] TDirDropDownEdit read only

2016-04-23 Thread Krzysztof
Hi Martin, How to make TDirDropDownEdit read only? When set options - oe_readonly then control look like totally disabled (grey, can't click on dropdown button). I would like to block set value from keyboard and force user to set it only from drop down menu. It should behave as normal edit (blinki

Re: [MSEide-MSEgui-talk] TSlider example

2016-04-24 Thread Krzysztof
2016-04-24 8:48 GMT+02:00 Martin Schreiber : > You mean a different faces for the areas below and above the slider button? > git master 8618fb3f2133dbf46da55c841430a83de89ec5e4 has TScrollbar. Face1 and > Face2. Yes, that is it. Thanks!

[MSEide-MSEgui-talk] TTrayWidget, transparent and icon size

2016-04-24 Thread Krzysztof
Hi Martin, Two questions: 1. How to make trayicon transparent? Changed all found color properties to cl_transparent but it is still gray 2. Is it possible to retrieve tray area size at runtime? TTrayWidget.size is widget size and TTrayWidget.icon.size is 0. I'm creating icon at runtime from font a

[MSEide-MSEgui-talk] TPopupmenu - fixed height and width

2016-04-24 Thread Krzysztof
Hi Martin, Popupmenu items by default are very tiny (X and Y autosized). Is it possible to set some kind of margin, space on X and Y? Regards -- Find and fix application performance issues faster with Applications Manage

Re: [MSEide-MSEgui-talk] TTrayWidget, transparent and icon size

2016-04-24 Thread Krzysztof
2016-04-24 18:18 GMT+02:00 Martin Schreiber : > The background can be set by TTrayIcon.color, face and frame. TTrayIcon is a > window with a window handle like a toplevel window. MSEgui does not support > transparent windows with a window handle. I suggest to use a cl_ltgray to > cl_gray colourgrad

Re: [MSEide-MSEgui-talk] TTrayWidget, transparent and icon size

2016-04-24 Thread Krzysztof
Found weird bug in tdirdropdownedit when app has traywidget. Spent half hour wondering what I changed in tdirdropdownedit and finally deleted tray widget and everything is ok :D . When app has traywidget, clicking on dropdown button is hidding main form and you see only dropdown tree popup menu. Ju

Re: [MSEide-MSEgui-talk] TTrayWidget, transparent and icon size

2016-04-24 Thread Krzysztof
2016-04-24 20:23 GMT+02:00 Krzysztof : > There is also second issue with tdirdropdownedit, not related to > traywidget but to the new property eo_showfocused. Entering (by mouse) > into tdirdropdownedit is autoselecting all empty text, I can even > modify it, change marker, add new

Re: [MSEide-MSEgui-talk] TTrayWidget, transparent and icon size

2016-04-25 Thread Krzysztof
2016-04-25 9:23 GMT+02:00 Martin Schreiber : > Please try again with git master 8415b12ab20a25863747a4765510204bfdc10667. Everything is working fine now. Thanks! -- Find and fix application performance issues faster with

[MSEide-MSEgui-talk] TDrawgrid sort

2016-04-25 Thread Krzysztof
Hi Martin, I have own data in TList, I already have sort functions for items but how to connect it to TDrawgrid? Grid should emit some event when clicked on header column so I could sort list and then it should show some kind of indicator which column is sorted and in which direction. Regards --

Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Krzysztof
Can't rebuild mymseide latest git 055154f363ab422e5ce88af018a2a68bba4da8e6: compdesigner.pas(3469,100) Error: Identifier not found "og_noresetselect" -- Find and fix application performance issues faster with Applications

Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Krzysztof
2016-04-26 8:21 GMT+02:00 Martin Schreiber : > In normal datagrids sorting is done by the mergesort mechanism of the grid and > the comparison functions of the TDatalist descendants in the datacolumns or > by comparison in T*Grid.OnSort event. Because you don't use TDatalist you > can't use that, p

Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Krzysztof
2016-04-27 14:30 GMT+02:00 Martin Schreiber : > Works for me. What is "compdesigner.pas"? I don't find it in MSEide+MSEgui > source tree. og_noresetselect has been replaced by optionsgrid1 > og_noresetselect1 several versions before. Ahh, sorry. Forgot that long time ago I tested this package: mse

Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Krzysztof
2016-04-27 14:42 GMT+02:00 Martin Schreiber : >> 1. How tu disable showing sort indicator on not sorted columns? >> Currently if column is not sorted then icon is grayed / disabled. I >> would like to show indicator only on sorted column > > Remove the dco_colsort flag but then the sorting can not

Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Krzysztof
2016-04-27 15:17 GMT+02:00 Martin Schreiber : > Probably, but if is a usefull extension I'll add that option. What do you > think? If it's not a problem then why not :) BTW: I'm drawing text by my self so double click on column resize point is not handling text width and column is collapsed. Is t

  1   2   3   4   >