Re: [Lazarus] Environment variables in IDE's search path

2009-05-16 Thread dmitry boyarintsev
If you have many test applications with many dependencies, why don't you use 'save project as'? some times i do use it, to save all the project's settings. but, it's something of psychology, i'm pressing 'New Project' and go to compiler options setting up searching paths. It's a matter of

Re: [Lazarus] Environment variables in IDE's search path

2009-05-16 Thread dmitry boyarintsev
Yes, but does Delphi IDE have built-in macros like Lazarus IDE? $(TargetOS), etc... Lazarus IDE needs need to distinguis between marcos and environment variable.  I guess Delphi IDE doesn't (saying that, the last Delphi IDE I used was D7 which didn't). There should be no problems mixing both

Re: [Lazarus] Installation of packages doesn't work

2009-05-18 Thread dmitry boyarintsev
I have tried to get older revision of lazarus and the result is the same. Could it be related to Mac OS X 10.5.7 update? doubtful, but i'm updating now. ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Lazarus users in South Africa

2009-05-19 Thread dmitry boyarintsev
Since, your guys are offtoping about children. I was thinking how cool would it be, to name a kid after FPC or Lazarus team member? Florian is first name in the list :) ...ok... please don't take it seriously. ___ Lazarus mailing list

Re: [Lazarus] Graphical differences between Mac OS X on Intel and PowerPC...

2009-06-04 Thread dmitry boyarintsev
It seems like you have texture pixels byte-order problem. You're trying to use Intel-ordered pixels for PowerPC machine. Could you make a small sample with the bug reproduced? thanks, dmitry ___ Lazarus mailing list

Re: [Lazarus] Everyone, time to vote for lazarus

2009-06-22 Thread dmitry boyarintsev
The direct link worked correctly for me, but maybe that was because I was already logged into the source forge site. It did work for either. I've tried to vote without logging in. SF asked me for email address for vote confirmation to be sent to. So, ppl who are not registered with SF can

Re: [Lazarus] startlazarus: EAccessViolation : Access violation

2009-07-26 Thread dmitry boyarintsev
But I don't have startlazarus.app. startlazarus.app is placed inside lazarus.app bundle. lazarus.app/Contents/Resources/startlazarus.app -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Mac OS X : Using TOpenDialog to select a Mac Application...

2009-07-27 Thread dmitry boyarintsev
Please update Lazarus to r20983 thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Mac OS X : Using TOpenDialog to select a Mac Application...

2009-07-30 Thread dmitry boyarintsev
Can I confirm that the correct way to set up the component to pick up applications is to set a DefaultExt .app and the Filter, in my case, is set to... Programs|*.app ? Confirm. If you have a filter mask * or *.* or *.app then application bundles can be selected. Also if you set filter

Re: [Lazarus] Mac OS X : Drag n Drop within TListBox not working correctly..

2009-08-02 Thread dmitry boyarintsev
Anyone else seeing this? Should I Mantis it? no need: http://bugs.freepascal.org/view.php?id=12545 -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Compile error on ubuntu jaunty

2009-08-11 Thread dmitry boyarintsev
Is there any howto to fix this error? writing to /usr/lib/ requires root rights. you need to change /usr/lib/lazarus write access - or - run as sudo lazarus thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Compile error on ubuntu jaunty

2009-08-11 Thread dmitry boyarintsev
So, everytime run lazarus to create project must use root account or just when installing component? only when you need to recompile LCL or Lazarus itself. I.e. : installing a new component. When you're developing your own project you don't need to user root account, because you don't need to

Re: [Lazarus] Multi-threading support in IDE

2009-08-13 Thread dmitry boyarintsev
OK, after reading all the other responses I now understand the flexibility of keeping FPC and Lazarus separate, but why then is Lazarus non-responsive while the compiler is compiling in a separate process? because IDE is reading FPC output? and gives only a few .ProcessMessages for user

Re: [Lazarus] Multi-threading support in IDE

2009-08-13 Thread dmitry boyarintsev
Can somebody that is more familiar with the internals of the Lazarus IDE tell me, would it be hard to implement the IDE with FPC built in, so that compiling can be done in a separate thread instead of separate process? I'll do the work of course - if it's not a major job. ;-) The most hardest

Re: [Lazarus] Lazarus and Windows 7

2009-08-15 Thread dmitry boyarintsev
Lazarus cannot be recompiled in Program Files directory, because Windows 7 forbids writing and or other modifications of .exe,.bat files in this folder. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] delphi - virus

2009-08-25 Thread dmitry boyarintsev
Without knowing to much about the compiler internals... Wouldn't a SHA1 be a better option than CRC?  For example, Git uses SHA1's to cryptographically ensure that no revision in the repository has been tampered with. Just a single byte change generates a completely different SHA1. isn't

Re: [Lazarus] TTrayIcon on Cocoa

2009-08-26 Thread dmitry boyarintsev
Great. Still the icon does not respond to clicks. Are using some kind of mix of Cocoa and Carbon widgetset? thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TTrayIcon on Cocoa

2009-08-26 Thread dmitry boyarintsev
No, I made a totally clean installation of the latest snapshot and created a new minimal test application for this purpose. If you like I can send you the test application. Or does anybody have a working demo of this? I'm wondering what are you trying to achieve. Even if you make

Re: [Lazarus] TTrayIcon on Cocoa

2009-08-26 Thread dmitry boyarintsev
to dmitry: Maybe we could add PasCocoa to Lazarus until a stable FPC is released with native Cocoa support, what do you think? On the other hand this development may take many years to come in a stable release and when it comes out we can delete PasCocoa from lazarus I'll make an article in

Re: [Lazarus] TTrayIcon on Cocoa

2009-08-26 Thread dmitry boyarintsev
You can't base development on an unstable compiler which isn't even in trunk, but on a separate experimental branch. If you put things in that way, then I can agree with you. Including PasCocoa to Lazarus, would make a lot of things easier. But how should it be added? As part of Cocoa

Re: [Lazarus] TTrayIcon on Carbon

2009-08-26 Thread dmitry boyarintsev
Hello Tobias please read this article: http://wiki.lazarus.freepascal.org/Carbon_Interface#Cocoa_controls_in_Carbon_applications If you mange to do this steps successfully and you have Carbon LCL recompiled with Cocoa support, then you can use TTrayIcon component. One more note. If you mark

Re: [Lazarus] TTrayIcon on Cocoa

2009-08-26 Thread dmitry boyarintsev
In a directory above Cocoa directory. Then we would need to alter the Makefiles in both Carbon and Cocoa interfaces to see them ... I always have trouble with these makefiles. needs to be discussed in lazarus-dev Do you think we should keep the define? I mean, is it a problem to have all

Re: [Lazarus] Mac OS X : Look up in dictionary service...

2009-09-06 Thread dmitry boyarintsev
If I want to have something similar for my application, do I have to do anything programmatically in my Lazarus app to be able to handle things properly, or is adding the various entries to Services enough? please read the following article.

Re: [Lazarus] Mac OS X : Look up in dictionary service...

2009-09-06 Thread dmitry boyarintsev
 Thanks for the link, most useful read. Now, are there any simple Lazarus examples that show how to consume Carbon events? I think from that I can work out how to go about hooking into the Service events. At least I hope so. Carbon Widgetset is the sample on how to consume events. Take a

Re: [Lazarus] Mac OS X : Look up in dictionary service...

2009-09-06 Thread dmitry boyarintsev
I just wanted to point out that I tried to implement the DropFiles as per Lazarus' but when I double click on my file, the FormDropFiles event never fires if the application is shutdown, but does fire correctly if the application is already running. You need to add document bindings at the

Re: [Lazarus] Mac OS X : Need RTF functionality within Lazarus apps

2009-09-13 Thread dmitry boyarintsev
Is anyone working on such a Lazarus component, or has anyone worked out a way to embed the TextEdit app into their application? http://wiki.freepascal.org/RichMemo I'd encourage you to use svn version, rather than downloadable CCR version. Some bugs were fixed, but not the donwloadable version

Re: [Lazarus] Lazarus on Snow Leopard

2009-09-13 Thread dmitry boyarintsev
When you get this error, please attach debuger output as well. You can find it at View - Debug windows - Debug output. You can launch the application with debugger switched off. Environment - Debugger - Debuger Type - change to none thanks, dmitry --

Re: [Lazarus] Lazarus on Snow Leopard

2009-09-14 Thread dmitry boyarintsev
Please, add your problem and system description, to this bug issue: http://bugs.freepascal.org/view.php?id=14588 Please, attach a file with the pastebined text as well. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Case error with cirilyc

2009-09-17 Thread dmitry boyarintsev
But this does not work if the ch is from a LCL component. E.g ch := Label.Caption[1]; Because the caption will be UTF8 encoded. well, it would work for: ch := UTF8Decode(Label.Caption)[1]; thanks, dmitry -- ___ Lazarus mailing list

Re: [Lazarus] Case error with cirilyc

2009-09-17 Thread dmitry boyarintsev
Another idea: use a WideChar instead of Char. I've tried, but it didn't work, for the same reason. Though, i've used objc branch compiler. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Case error with cirilyc

2009-09-17 Thread dmitry boyarintsev
Maybe you ment convert to widestring, or wanted to use the routine UTF8ToAnsi. UTF8Decode returns a widestring. yes. UTF8ToAnsi is correct. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Mac OS X : Need RTF functionality within Lazarus apps

2009-09-18 Thread dmitry boyarintsev
Do you still want me to add these bugs to Mantis? If they're fixed (please test), there's no need to report them to the Mantis. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Mac OS X : Need RTF functionality within Lazarus apps

2009-09-18 Thread dmitry boyarintsev
On Fri, Sep 18, 2009 at 10:26 PM, domini...@savagesoftwaresolutions.com wrote: I might send you a better demo if I have time. Thanks! I appreciate your efforts. regards, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Mac: writing a CFPlugin with Lazarus

2009-09-29 Thread dmitry boyarintsev
On Wed, Sep 30, 2009 at 1:22 AM, Tobias Giesen tobias_subscri...@tgtools.com wrote: Can I create a plug-in with Lazarus or do I have to use FPC outside of Lazarus? You can use Lazarus for the development (since Lazarus can be pure FPC as well IDE). * start Plugin writing, by creating a new

Re: [Lazarus] Mac: writing a CFPlugin with Lazarus

2009-09-30 Thread dmitry boyarintsev
On Wed, Sep 30, 2009 at 11:43 AM, Tobias Giesen tobias_subscri...@tgtools.com wrote: thanks very much for the tips! That should get me working. If I succeed, I will make a sample project in Pascal available. May be it's even better to make a OSX Plugin project template as well. thanks, dmitry

Re: [Lazarus] A broken dummy package was created

2009-10-01 Thread dmitry boyarintsev
Roland, is rotursoft located at lazarus/components dir? if so, try to: - uninstall the package - move to some place other than lazarus/components dir. - install the package again. Mattias, the bug has been introduced with r21923-21924 Prior with r21922 everything works fine. I guess it's related

Re: [Lazarus] debugger feature request created

2009-10-01 Thread dmitry boyarintsev
On Fri, Oct 2, 2009 at 2:12 AM, Paul Ishenin i...@kmiac.ru wrote: Anyway, I am pleased to see that you are working both on linux, mac and windows versions at the same time. Good start. Well, after all, as Marc said for thousands times: writing a proper debugger is not using system API, it's

Re: [Lazarus] Mac OS X : lclproc.pas not building in Revision 22022

2009-10-04 Thread dmitry boyarintsev
Sorry. Fixed in 22023 thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Mac OS X : lclproc.pas not building in Revision 22022

2009-10-04 Thread dmitry boyarintsev
On Sun, Oct 4, 2009 at 9:17 PM, domini...@savagesoftwaresolutions.com wrote: Only thing is that now I can't double click on the Lazarus app bundle to launch Lazarus.  I can only get it running via the startlazarus exe. Could you find out at what revision has the behaviour started? Try to

Re: [Lazarus] Mac OS X : lclproc.pas not building in Revision 22022

2009-10-04 Thread dmitry boyarintsev
On Sun, Oct 4, 2009 at 10:28 PM, domini...@savagesoftwaresolutions.com wrote: Mattias Gaertner did a revision fix around Sat Oct 3 18:22:13 CEST 2009. As that is the one I was using yesterday until 22022. If I do that, I get the message You can't open the application 'lazarus' because it is

Re: [Lazarus] Compiler Options - Compiler Messages

2009-10-06 Thread dmitry boyarintsev
2009/10/6 Marcelo Borges de Paula mar...@terra.com.br: I know that if i check this option in Project-Compiler Options-Messages, the file is used only for current project. Maybe the option should be in Environment - Desktop options. The same place where IDE's interface language is selected.

Re: [Lazarus] Search inside Packages only

2009-10-09 Thread dmitry boyarintsev
On Fri, Oct 9, 2009 at 7:41 AM, Graeme Geldenhuys graemeg.li...@gmail.com wrote: Is there a way to search inside a Lazarus Package (units that are part of a package) only? I often find the need to do this, but don't know of such an option. Hopefully I simply didn't look hard enough. ;-) Use

Re: [Lazarus] Search inside Packages only

2009-10-09 Thread dmitry boyarintsev
On Fri, Oct 9, 2009 at 10:56 AM, Graeme Geldenhuys graemeg.li...@gmail.com wrote: That's what I currently use, but the problem is that maybe not all units are in the same directory structure. Do you mean, if a package uses some FCL/LCL units, the FCL/LCL files should be searched as well?

Re: [Lazarus] Haiku (BeOS)

2009-10-09 Thread dmitry boyarintsev
Should this page be helpful? http://wiki.lazarus.freepascal.org/BeOS_port -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Getting hardware information on Mac OS X

2009-10-12 Thread dmitry boyarintsev
On Tue, Oct 13, 2009 at 2:09 AM, Roland Turčan - RoTurSoft k...@rotursoft.sk wrote: How can I get information about CPU, size of RAM, ... on Mac OS X? There's I/O Registry in Mac OS X for such purposes.

Re: [Lazarus] Mac OS X : Not possible to paste text into any Lazarus dialogs...

2009-10-13 Thread dmitry boyarintsev
On Tue, Oct 13, 2009 at 10:08 PM, domini...@savagesoftwaresolutions.com wrote: I'm unable to copy and paste text from either the IDE or from outside Lazarus into the search form or the Project or Compiler forms. Can you find the revision when this starts to happen? thanks, dmitry --

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread dmitry boyarintsev
Here's the patch for synedit pascal highlighter to support '%' (binary) and '' (octal) as numbers, as shown here: http://imagebin.org/67810 Otherwise the prefix character is colored as symbol rather than as number. thanks, dmitry P.S. sorry, don't have much time for serious development.

Re: [Lazarus] fpchmod illegal character

2009-10-14 Thread dmitry boyarintsev
On Thu, Oct 15, 2009 at 12:25 AM, Martin laza...@mfriebe.de wrote: I will attend to it asap.  Usually it is better to attach them to a mantis report. So they will not be lost/overlooked. If it's forgotten, i'll make a bug report. But i was hoping you have some time, for quick fixes :) thanks,

Re: [Lazarus] StateImages support in TListView

2009-10-21 Thread dmitry boyarintsev
On Thu, Oct 22, 2009 at 12:40 AM, domini...@savagesoftwaresolutions.com wrote: It would be nice if under Mac OS X, any sort of Images in ListViews were supported. SmallImages property is supported by Carbon TListView. But vsReport is the only ViewStyle supported. thanks, dmitry --

Re: [Lazarus] Mac OS X : Zoom Image function...

2009-10-25 Thread dmitry boyarintsev
You can try to switch off AntialiasingMode: Canvas.AntialiasingMode:=amOff; thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Getting Lazarus to run under Snow Leopard

2009-10-27 Thread dmitry boyarintsev
On Tue, Oct 27, 2009 at 2:23 PM, John Coarsey jcoar...@yahoo.com wrote: I have Snow Leopard and have Dev system installed, FPC 2.4, sources and Lazarus. I can build a project and get a success message but when I try to run (test) app form IDE get a assembler not found message. Shall this

Re: [Lazarus] Getting Lazarus to run under Snow Leopard

2009-10-27 Thread dmitry boyarintsev
On Wed, Oct 28, 2009 at 1:37 AM, John Coarsey jcoar...@yahoo.com wrote: Thanks, I did all that and tried a simple app but when I click run I get a debugger error. Is there a source I can follow to do a simple hello world type app to get me started? Please, try to switch the debugger off:

Re: [Lazarus] Carbon: Loosing kAEOpenDocuments AppleEvents before AppRun

2009-10-28 Thread dmitry boyarintsev
It seems like AEOpenDocuments event is processed, but since OnDropFiles event is not yet assigned, it's not fired. So farm I can think of the following solution (in carbon widgetset). AEOpenDocument events and gathered and called on Application.Run, since form events are initialized and would be

Re: [Lazarus] Carbon: Loosing kAEOpenDocuments AppleEvents before AppRun

2009-10-30 Thread dmitry boyarintsev
On Fri, Oct 30, 2009 at 6:37 PM, domini...@savagesoftwaresolutions.com wrote: So is this now working as expected? Yes and no. It's working as expected from LCL point of view. It doesn't work as expected from OSX point of view, because AEOpenDocument is used to start an application with opening

Re: [Lazarus] Carbon: Loosing kAEOpenDocuments AppleEvents before AppRun

2009-10-31 Thread dmitry boyarintsev
On Sat, Oct 31, 2009 at 10:43 PM, Hans-Peter Diettrich drdiettri...@aol.com wrote: Think about multi-platform applications. Lazarus/RTL/LCL should offer one unique way to deal with dropped files on app start, independent from the target platform. I can think of Mac OSX only that's able to start

Re: [Lazarus] Carbon: Loosing kAEOpenDocuments AppleEvents before AppRun

2009-11-02 Thread dmitry boyarintsev
On Mon, Nov 2, 2009 at 3:00 PM, EarMaster - Bent Olsen b...@earmaster.com wrote: I made a small simple test app with latest snapshot of Lazarus/FPC, with two forms, one with TApplicationProperties and OnDropFiles, and the second showing as modal before .Run - it seems to work as it should.

Re: [Lazarus] Lazarus Goal

2009-11-11 Thread dmitry boyarintsev
here's list of the such programs: http://wiki.lazarus.freepascal.org/Lazarus_Projects and here's another one for all 3 OSe: .http://sourceforge.net/projects/devwork (please compile from sources). thanks, dmitry -- ___ Lazarus mailing list

Re: [Lazarus] Lazarus Goal

2009-11-11 Thread dmitry boyarintsev
I've managed to compile the program and launch it on OSX, so i guess Write once, compile anywhere works. Too bad that OSes are too different, so some cross-platform style should be followed while writing the code. thanks, dmitry -- ___ Lazarus mailing

Re: [Lazarus] Lazarus Goal

2009-11-12 Thread dmitry boyarintsev
2009/11/11 Brian Prentice bprent...@webenet.net: I'll take a look at it tonight on my Macs. Since you're [thankfully] not using the Win API anywhere, this app really should work. If not, then that likely means something not right in the underlying Carbon-based widgetset used on OS X. Note that

Re: [Lazarus] Mac OS X 6.2

2009-11-12 Thread dmitry boyarintsev
Hello John Lazarus uses symbol link to maintain MacOSX bundle. The project layout is the following: project (executable binary) project.app (the bundle) project.app/Content/MacOS/project (symbolic link to project binary outside the bundle) When you copy the bundle via Finder, the symbolic link

Re: [Lazarus] Lazarus Goal

2009-11-12 Thread dmitry boyarintsev
On Fri, Nov 13, 2009 at 12:12 AM, Mattias Gaertner nc-gaert...@netcologne.de wrote: The designer uses ExcludeClipRect to clip child controls. Maybe there is a bug in the carbon interface? It can be. Needs testing. -- ___ Lazarus mailing list

Re: [Lazarus] Lazarus Goal

2009-11-12 Thread dmitry boyarintsev
On Fri, Nov 13, 2009 at 12:12 AM, Mattias Gaertner nc-gaert...@netcologne.de wrote: The designer uses ExcludeClipRect to clip child controls. Maybe there is a bug in the carbon interface? Fixed in r22551 thanks, dmitry -- ___ Lazarus mailing list

Re: [Lazarus] Lazarus for Intel Mac

2009-11-13 Thread dmitry boyarintsev
2009/11/13 Brian Prentice bprent...@webenet.net: I use a three button mouse as I suspect most people do since such a mouse is included with the computer! Brian Phil wanted to point, that one-mouse button was provided with original Apple Macs, for very long time. To access context menu

Re: [Lazarus] Mac OS X : FPC revision 14200 not building...

2009-11-16 Thread dmitry boyarintsev
why would you need this old revision? thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Mac OS X : FPC revision 14200 not building...

2009-11-16 Thread dmitry boyarintsev
Sorry. I though you're talking about Lazarus trunk, not FPC. anyway, obj-c support has been added to FPC. You should be able to bootstrap the trunk-compiler and rtl with 2.2.4 or 2.4.0-rc version. thanks, dmitry -- ___ Lazarus mailing list

Re: [Lazarus] Bitmap assign does not copy PixelFormat...

2009-11-16 Thread dmitry boyarintsev
please make the bug report with sample project (and bitmaps) attached. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Mac OS X : Trying to install richmemo packge, CodeHelp.pas not compiling...

2009-11-19 Thread dmitry boyarintsev
On Thu, Nov 19, 2009 at 3:10 AM, domini...@savagesoftwaresolutions.com wrote: /usr/local/share/lazarus/ide/codehelp.pas(2519) Error: Can't create assembler file: ../units/i386-darwin/codehelp.s Is this a super user aka sudo related error? it shouldn't be. Where's Lazarus installed? Does the

Re: [Lazarus] Problem with OpenGLContext's mouse events

2009-11-25 Thread dmitry boyarintsev
Please report the bug to the mantis (bugs.freepascal.org) with the sample project. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TCustomComboBox.ArrowKeysTraverseList mistery

2009-12-09 Thread dmitry boyarintsev
On Wed, Dec 9, 2009 at 8:32 PM, zeljko zel...@holobit.net wrote: Anyone on this planet knows why we have this property in LCL (and what this property is supposed to do) ? Imho, there's no need in such property. It's up to widgetset('s combo box) to allow keyboard traverse or not. thanks, dmitry

Re: [Lazarus] Configure Build Lazarus was weird but no more...

2009-12-14 Thread dmitry boyarintsev
On Mon, Dec 14, 2009 at 8:41 PM, Juha Manninen juha.manni...@phnet.fi wrote: http://koti.phnet.fi/juhamann/Lazarus/BuildLazarus.jpg Imho, too many controls. It's hard to understand what controls're actually controlling what is about to be build. thanks, dmitry --

Re: [Lazarus] Configure Build Lazarus was weird but no more...

2009-12-14 Thread dmitry boyarintsev
On Mon, Dec 14, 2009 at 11:51 PM, Juha Manninen juha.manni...@phnet.fi wrote: IMO this combobox is better than the original 2 tab-pages. This way you get visual feedback of the changes. The original tab-control was just non- intuitive. AFAIK, 2 tabs are actually 2 independent build options

Re: [Lazarus] Start an application as root on Mac

2009-12-15 Thread dmitry boyarintsev
On Tue, Dec 15, 2009 at 12:56 PM, Roland Turcan k...@rotursoft.sk wrote: How can I start an application with request for root's username and password on Mac OS X? sudo ApplicationBundle.app/Contents/MacOS/executable_name But i guess you're asking about Authorization:

Re: [Lazarus] Configure Build Lazarus was weird but no more...

2009-12-15 Thread dmitry boyarintsev
On Tue, Dec 15, 2009 at 1:30 PM, Mattias Gaertner nc-gaert...@netcologne.de wrote: Also, which profile will be used when the IDE is rebuilt from the package dialog? The current selected. Are you sure? I usually need to rebuild LCL only, so my current **advanced build** settings are set to

Re: [Lazarus] Fwd: wishlist for new forum

2010-01-06 Thread dmitry boyarintsev
2010/1/7 Robin Hoo robin.hoo...@gmail.com: ... or submit our bug fix. There's better place for this, rather than forum: bugs.freepascal.org thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] const array syntax

2010-01-11 Thread dmitry boyarintsev
On Tue, Jan 12, 2010 at 1:30 AM, Alexander Klenin kle...@gmail.com wrote: 1) Proposed syntax seems somewhat suboptimal. Historically, Pascal used redundancy and keywords to minimize the chance of errors and make diagnostics easier. In that spirit, I think some active indication of arbitrary

Re: [Lazarus] Wiki Search

2010-01-15 Thread dmitry boyarintsev
On Fri, Jan 15, 2010 at 9:00 PM, Vincent Snijders vsnijd...@vodafonevast.nl wrote: If you mean a dump of the current mysql db, then no, that is not possible, because it contains users, email addresses, passwords too. Isn't it possible to make a dump without user information? thanks, dmitry --

Re: [Lazarus] Wiki Search

2010-01-15 Thread dmitry boyarintsev
On Fri, Jan 15, 2010 at 9:56 PM, Vincent Snijders vsnijd...@vodafonevast.nl wrote: What should it be without user information? Hmm... can the sensitive data be ...modified... on making the dump. i.e. user_password and user_email in users table?! thanks, dmitry --

Re: [Lazarus] Improving IDE Internationalization

2010-01-23 Thread dmitry boyarintsev
Hello Marcelo, The current (svn version) of Lazarus, is working as described. Except for messages are not loaded from errore.msg file initially. The location of errore.msg may vary from platform to platform, depending on location of FPC. But IDE's compiler messages can be configured to load the

Re: [Lazarus] Cross platform 'open file with default program'

2010-01-24 Thread dmitry boyarintsev
On Sun, Jan 24, 2010 at 12:05 PM, Juha Manninen juha.manni...@phnet.fi wrote: If OSX supports your 'xdg-open' then most environments are covered. It doesn't, by default. There's an external tool 'open' available for such task. But, it's better to use launcher API (see OpenURL darwin code).

Re: [Lazarus] Cross platform 'open file with default program'

2010-01-24 Thread dmitry boyarintsev
On Sun, Jan 24, 2010 at 2:08 PM, Juha Manninen juha.manni...@phnet.fi wrote: One thing is missing though. There is no portable way of getting application's icon like ExtractAssociatedIcon does in Windows? This is somewhat related to opening the file. It depends on what you exactly need. If you

Re: [Lazarus] Improving IDE Internationalization

2010-01-24 Thread dmitry boyarintsev
On Sun, Jan 24, 2010 at 6:33 PM, Marcelo B de Paula mar...@terra.com.br wrote: If i change compiler messages by loading another errorxx.msg in IDE or use a different errorxx.msg to compile the compiler itself, the first thing i´ve noticed is that QuickFixItems stop working, and message icons

Re: [Lazarus] Improving IDE Internationalization

2010-01-24 Thread dmitry boyarintsev
Indeed, quick fixes have hardcoded English messages. It's possible to use translated messages, with out using message numbers, but it's much harder job than using -vq switch directly. You're free to provide the patch for fixing the problem (and using -vq switch). But you should make the patch

Re: [Lazarus] Improving IDE Internationalization

2010-01-24 Thread dmitry boyarintsev
If you've a patch ready please send it to bugs.freepascal.org as well, creating the issue. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Improving IDE Internationalization

2010-01-25 Thread dmitry boyarintsev
On Mon, Jan 25, 2010 at 5:16 PM, Marcelo B de Paula mar...@terra.com.br wrote: Any question about this code, feel free to ask. Using stand-alone files might be trouble some. It's better to report new features as patches Please see, http://wiki.freepascal.org/Creating_A_Patch thanks, dmitry --

Re: [Lazarus] Improving IDE Internationalization

2010-01-25 Thread dmitry boyarintsev
Hello Marcelo, I've recently been told about developing of a new fpc feature. The feature would allow user to override a default message type (any hint, note or warning) and treat it it as a error. So determining a message type by its number would provide a wrong result (at least icon of the

Re: [Lazarus] Carbon: TCalendar

2010-01-28 Thread dmitry boyarintsev
On Thu, Jan 28, 2010 at 12:35 PM, Roland Turcan k...@rotursoft.sk wrote: BTW: How can I search in bug tracker if this bug is already reported? please report the bug. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Reconstructing Lazarus Website 1: the appearance

2010-01-30 Thread dmitry boyarintsev
On Sat, Jan 30, 2010 at 5:17 PM, Bee Jay bee.ogra...@gmail.com wrote: If we settle with the whole things, we could ask some volunteers to do some works over the agreed ideas. I'd start searching volunteers first :) thanks, dmitry -- ___ Lazarus

Re: [Lazarus] TCheckListBox not displaying internationalized characters

2010-02-07 Thread dmitry boyarintsev
On Mon, Feb 8, 2010 at 4:52 AM, Marcelo B de Paula mar...@terra.com.br wrote: Opened Bug report # 15704 Fixed. Please test thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Bug Tracker Wiki server is down

2010-02-14 Thread dmitry boyarintsev
On Mon, Feb 15, 2010 at 10:05 AM, Graeme Geldenhuys graemeg.li...@gmail.com wrote: Could somebody give the server hosting the Bug Tracker Wiki a kick in the butt. It's not responding. I can access bugs.freepascal.org. But not the wiki thanks, dmitry --

Re: [Lazarus] debug windows layout

2010-02-25 Thread dmitry boyarintsev
Asm listings are usually very long. It's pain to use them in such narrow window. thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] debug windows layout

2010-02-25 Thread dmitry boyarintsev
On Thu, Feb 25, 2010 at 4:09 PM, Marc Weustink marc.weust...@cuperus.nl wrote: Is it possible to get debugger's TForms from IDE in anyway? ??? If debugger forms would be available as classes for IDE extensions (via IDEIntf, for example), i could add them to the Manual Docker, as well :)

Re: [Lazarus] RFC: remove StayOnTop for splash screen

2010-02-28 Thread dmitry boyarintsev
2010/3/1 Flávio Etrusco flavio.etru...@gmail.com: what do you think of removing the fsStayOnTop flag for the splash screen? It serves no purpose and is very annoying... Agreed. It's better to speed-up loading, rather than masking it with all kind of splash screens. thanks, dmitry --

Re: [Lazarus] Is Lazarus project in a downward spiral?

2010-03-07 Thread dmitry boyarintsev
About Mantis graph of the issues (discussed in the beginning of the thread). There's CSV export available: http://bugs.freepascal.org/csv_export.php for any user (login is not required). So lnet (or synapse) + gui (lcl, msegui, fplib) or any image processing lib and one can get the graph image

Re: [Lazarus] This project needs help

2010-03-08 Thread dmitry boyarintsev
Why leaving, instead of forking? thanks, dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TOpenGLComponent bug

2010-03-21 Thread dmitry boyarintsev
2010/2/13 Albin Pučnik albin.puc...@guest.arnes.si: I dont want my students to get wrong impression of Lazarus and FPC. Could some of developers devote some of his time to look at that bug ? I've uploaded the patch, please test. thanks, dmitry --

Re: [Lazarus] TComboBox and OnChange

2010-03-24 Thread dmitry boyarintsev
On Wed, Mar 24, 2010 at 4:42 PM, Michael Fuchs freepas...@ypa-software.de wrote: I know that this behaviour is the same as in Delphi, but I think it is not consistent. Is it possible to change this? Why the behavior is not consistent? Since your code has changed Text value you're aware of the

Re: [Lazarus] SendMessage Bug Work Around.

2010-04-22 Thread dmitry boyarintsev
On Thu, Apr 22, 2010 at 4:43 PM, Justin Smyth delph...@smythconsulting.net wrote: I know alot of you guys are not using win32 but other variants of linux but for the people who are using win32 this maybe of interest if you have got issues with SendMessage on win32. Could you show the example

Re: [Lazarus] RTL Bug - TCopyDataStruct - needs TCopyDataStruct64 to be added.

2010-04-23 Thread dmitry boyarintsev
Fixes in RTL are released with the release of the next compiler version. But you can fix RTL and compile it yourself. thanks, Dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] New source editor feature (hidding tabs)

2010-04-23 Thread dmitry boyarintsev
On Fri, Apr 23, 2010 at 7:35 PM, Martin laza...@mfriebe.de wrote: It should be off by default. (If not (in latest svn) let me know / There may have been a revision, where it was on by default...) thanks. Found it. It seems like it's ON by default. thanks, dmitry --

Re: [Lazarus] debugger crashing on OS X

2010-04-30 Thread dmitry boyarintsev
Hello John, The problem with OSX debugger is that Apple has its own gdb-fork (a bit different to GNU gdb). To makes things worse, gdb slightly changes from one Xcode minor release to another. So, if you want to have your debugger working with Xcode 3.2.2. please send the content of Debug Output

  1   2   3   4   >