Re: [Lazarus] Run w/o Debugging

2009-10-22 Thread Graeme Geldenhuys
On 22/10/2009, Lee Jenkins l...@datatrakpos.com wrote: Has there been discussed, a command placed onto the Run menu of the IDE, with assignable keyboard mapping that will simply run the compiled executable? You can use the External Tools menu for that. At the moment I have about 10 options

[Lazarus] GetAppConfigDir Question

2009-10-22 Thread Lee Jenkins
Are there any similar methods which I can use to get the root directory inside of which Lazarus/fpc create the folder named after the application. For instance, on Windows Vista, GetAppConfigDir(True) returns the Windows Vista: C:\Program Data\AppName\ Linux: /home/user/.config/AppName/

Re: [Lazarus] GetAppConfigDir Question

2009-10-22 Thread Graeme Geldenhuys
On 22/10/2009, Lee Jenkins l...@datatrakpos.com wrote: For instance, on Windows Vista, GetAppConfigDir(True) returns the You can still use GetAppConfigDir, just override the OnGetApplicationName event and return the common application name you want to use. -- Regards, - Graeme -

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread dominique
For my app having SmallImages viewable would be better, but I think the client will accept this version for now. Thanks for pointing it out. Dominique. On Thu, 22 Oct 2009 19:53:09 +0400, dmitry boyarintsev skalogryz.li...@gmail.com wrote: On Thu, Oct 22, 2009 at 6:53 PM,

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Boian Mitov
I am adding the StateImage support for the Windows version, and it seems that adding missing properties is not that difficult. The architecture of the LCL implementations seems very straightforward and simple to expand on. You can probably spend some time to add the missing functionality in the

Re: [Lazarus] Run w/o Debugging

2009-10-22 Thread Marc Santhoff
Am Donnerstag, den 22.10.2009, 10:14 -0400 schrieb Lee Jenkins: Has there been discussed, a command placed onto the Run menu of the IDE, with assignable keyboard mapping that will simply run the compiled executable? For convenience on FreeBSD I have configured an external tools item for

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Paul Ishenin
Boian Mitov wrote: It seems that I have completed the implementation in Windows, and so far it seems to work well. I am now working to change the ListView item editor to allow editing the state. In the next few days I will see if I can figure out how to implement the same functionality in Qt.

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Paul Ishenin
Boian Mitov wrote: Are there any other Windows SVN UIs aside from tortoise . I have had bad experience with tortoise CVS in the past since it is Windows Explorer plug-in. It used to slow down my system, and occasionally crash the Windows explorer, so I am very nervous about installing

Re: [Lazarus] GetAppConfigDir Question

2009-10-22 Thread Hans-Peter Diettrich
Graeme Geldenhuys schrieb: - GetSpecialDir (e.g. My Documents) What's that going to return under Linux, FreeBSD, Mac OS X? For the first two, I know I don't have that directory anywhere on my drive. Maybe KDE specific, at least I have ~/Documents on openSUSE Linux. DoDi --

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Boian Mitov
Hi Paul, Thank you! I am actually rebuilding it from the IDE now. Is that a problem? I have just finished integrating my changes into the checked out version and rebuilding now. With best regards, Boian Mitov --- Mitov Software

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Paul Ishenin
Boian Mitov wrote: I am actually rebuilding it from the IDE now. Is that a problem? I have just finished integrating my changes into the checked out version and rebuilding now. No problems. I usualy build LCL from the IDE too. But usually use my build script when I want to rebuild the whole

Re: [Lazarus] StateImages support in TListView

2009-10-22 Thread Boian Mitov
Hi Paul, I think I am done. I actually have a large number of packages that I am porting to the IDE - 20 or so packages with well over 200 components ;-) . They are all ported and work in Windows, and now I am porting the design time packages, and making them Delphi/Lazarus compatible.