Re: [lazarus] ListView question

2005-11-21 Thread Vincent Snijders
Darius Blaszijk wrote: Hi, I'm using two listviews in an app that hold items. The user can select items in both and link them by pressing a button. The problem now is, that as soon as focus leaves a listview there is no indication anymore what item is selected, although ItemFocussed stil

Re: [lazarus] ListView question

2005-11-21 Thread dhkblaszyk
It could be implemented for win32 interface by setting the LVS_SHOWSELALWAYS style if HideSelection is false. I'm thinking multiplatform here ;) _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as

Re: [lazarus] ListView question

2005-11-21 Thread Vincent Snijders
[EMAIL PROTECTED] wrote: It could be implemented for win32 interface by setting the LVS_SHOWSELALWAYS style if HideSelection is false. I'm thinking multiplatform here ;) Yes, for the other platfroms there need to be a solution too, but I am not familiar with those. Maybe some the gtk

Re: [lazarus] ListView question

2005-11-21 Thread Vincent Snijders
[EMAIL PROTECTED] wrote: Should I add a bugreport then, so it does not get forgotten?? That seems ok: TListView.HideSelection not implemented. Vincent. _ To unsubscribe: mail [EMAIL PROTECTED] with

Re: [lazarus] ListView question

2005-11-21 Thread Graeme Geldenhuys
Hi, I noticed that there are a few other methods not published either. eg: //property HotTrack; //property HotTrackStyles; //property HoverTime; Using HotTrackStyles as follows does work under Win32 Laz 0.9.10 ListView1.HotTrackStyles := [htHandPoint]; Is it not published due to

Re: [lazarus] ListView question

2005-11-21 Thread dhkblaszyk
Vincent, I need some help here. I'm not familiar with the widgetset at all. TCustomListView has a HideSelection property, not yet published by TListView. I removed the comments so the property gets published. It could be implemented for win32 interface by setting the LVS_SHOWSELALWAYS style

Re: [lazarus] ListView question

2005-11-21 Thread Marc Weustink
[EMAIL PROTECTED] wrote: Vincent, I need some help here. I'm not familiar with the widgetset at all. TCustomListView has a HideSelection property, not yet published by TListView. I removed the comments so the property gets published. It could be implemented for win32 interface by

[lazarus] ListView question

2005-11-20 Thread Darius Blaszijk
Hi, I'm using two listviews in an app that hold items. The user can select items in both and link them by pressing a button. The problem now is, that as soon as focus leaves a listview there is no indication anymore what item is selected, although ItemFocussed stil contains data. I noticed