Re: LazDoc or fpdoc issue

2007-02-13 Thread Vincent Snijders
Michael Van Canneyt schreef: On Tue, 13 Feb 2007, Graeme Geldenhuys wrote: As a quick fix I wrote the following XSLT file to fix all those confusing xml empty elements. This XSLT file will rewrite all empty descr, errors and seealso elements to the following format. node / Here is how you

Re: [lazarus] New component

2007-02-12 Thread Vincent Snijders
Tiziano_mk schreef: Guadagnini David wrote: I create a new component Flat Button (is a Flat button with glyps and gradient fill) Someone can test it? packaged and tested on Win32 platform. Let me the time to try on Linux... notes: nice! removed reference to JWaWinGDI unit, not used; why

Re: [lazarus] Another qt tray icon patch

2007-02-12 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: Improved qt tray icon implementation. Adds tootip and popup menu support. Thanks. Applied. Vincent _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the

[lazarus] keyboard/mouse script for linux

2007-02-10 Thread Vincent Snijders
Hi, I am trying to create some automated tests for lcl applications (see lazarus\test). ATM these application just start and in the first application OnIdle event write some output to the console (for example the color of a component or the height of a scrollbar) and close. But I cannot

Re: [lazarus] keyboard/mouse script for linux

2007-02-10 Thread Vincent Snijders
Florian Klaempfl schreef: Vincent Snijders schrieb: Hi, I am trying to create some automated tests for lcl applications (see lazarus\test). ATM these application just start and in the first application OnIdle event write some output to the console (for example the color of a component

Re: [lazarus] Help wanted: New design for lazarus snapshot pages

2007-02-08 Thread Vincent Snijders
Darius Blaszijk schreef: Here it is. Please disregard the makeup of the page itself. Eye candy will come later. I will put a table later as item in the treeview, so we can distribute the items better on the screen. Please comment I think this is more or less what I want, provided that it

Re: [lazarus] Help wanted: New design for lazarus snapshot pages

2007-02-07 Thread Vincent Snijders
Tiziano_mk schreef: Vincent Snijders wrote: Hi, ... I am not a web designer and know very little about html. I am looking for somebody who wants to help me and redesign these pages. If you want to volunteer, say so on the list and we can work things out off the list. If the list

Re: [lazarus] Qt tray icon implementation patch

2007-02-07 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: Hello, This patch adds a initial TTrayIcon implementation for Qt interface. qttrayicon.pas is a new file to be added to components/trayicon Thanks. Applied. Vincent _ To unsubscribe:

Re: [lazarus] Help wanted: New design for lazarus snapshot pages

2007-02-07 Thread Vincent Snijders
tanila schreef: Hi Vinvent, what do you thing by generating the HTML-Page on the fly with PHP based on a directory-structure. The PHP-Script can then generate a List with the design you like and the ability to have collapsing and opening the subdirectories. I think that is of lesser

Re: [lazarus] Problem with new update

2007-02-07 Thread Vincent Snijders
Guadagnini David schreef: I update the source now (time 14:50 in Italy) and I can not compile Lazarus because give me the error: C:\lazarus\lcl\include\control.inc(1934,21) Error: Incompatible types: got TLMMouse expected TMessage Fixed. I thought I had done: 1. Apply patch. 2. Improve

Re: [lazarus] Help wanted: New design for lazarus snapshot pages

2007-02-07 Thread Vincent Snijders
Darius Blaszijk schreef: How about this Vincent? http://www.mattkruse.com/javascript/mktree/documentation.html Do you think you would like to use a tree to sort out everything? The nice thing about it is that you customize the use through a css (which we could change to the css used by the

Re: [lazarus] Why the results of both executions differ?

2007-02-07 Thread Vincent Snijders
Arí Ricardo Ody schreef: I type and run the following command in a console window of Fedora Core 5: tar --gzip --create --verbose --file=/home/ricardo/tmp/xxx.tar.gz /home/ricardo/testesfpc/ebcdic_ascii/*.* /home/ricardo/testesfpc/h.o /home/ricardo/testesfpc/h.pas and it runs ok. The only

Re: [lazarus] Someone can test this patch?

2007-02-06 Thread Vincent Snijders
into that directory - create a patch in that directory svn diff mypatch.txt I hope this short instruction is clear. This way only your changes are part of the patch. Vincent Vincent Snijders ha scritto: Guadagnini David schreef: In attach there are the patch for use a dialog during

[lazarus] TLabel.OnPaint

2007-02-06 Thread Vincent Snijders
Hi, At this moment TGraphicControl.OnPaint is a public property. I am thinking about publishing in some descendants like TShape. At the same time I think it is better to make TGraphicControl.OnPaint a protected property. If this is done, TLabel.OnPaint is not public anymore. Is anybody

Re: [lazarus] TLabel.OnPaint

2007-02-06 Thread Vincent Snijders
Guadagnini David schreef: TLabel have not OnPaint property. If you want you can add this but you must modify the component TCustomLabel It has. This code is possible with Lazarus. procedure TForm1.Button1Click(Sender: TObject); begin Label1.OnPaint := nil; end; Vincent Snijders ha

Re: [lazarus] lazarus saves every time I compile

2007-02-06 Thread Vincent Snijders
Andrea Mauri schreef: Ok in order to compile it needs to save my project but look at this example: I open an existing project, a very simple console application: program project1; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Classes { add your

[lazarus] Help wanted: New design for lazarus snapshot pages

2007-02-06 Thread Vincent Snijders
Hi, Currently there are 19 files available for download on the Lazarus snapshot download page at http://michael-ep3.physik.uni-halle.de/Lazarus/ or http://www.hu.freepascal.org/lazarus/. In the near future this will rise to at least 30 by the offering of cross-installer (for win32 - win64 or

Re: [lazarus] TComboBox and ReadOnly property

2007-02-05 Thread Vincent Snijders
Graeme Geldenhuys schreef: Hi, What is the point of the .ReadOnly property in the TComoBox component? Doesn't the .Style property do whatever the .ReadOnly tries to do plus more? Also it is incompatible with VCL. The VCL TComobBox doesn't have a .ReadOnly property. Depending on the readonly

Re: [lazarus] TComboBox and ReadOnly property

2007-02-05 Thread Vincent Snijders
Graeme Geldenhuys schreef: On 2/5/07, Vincent Snijders [EMAIL PROTECTED] wrote: Depending on the readonly property an OnwerDrawn combobox (i.e. with style csOwnerDrawFixed or csOwnerDrawVariable) behaves like a combobox with csDrownDown (readonly:=false) style or like a combobox

Re: [lazarus] TexOut incompability

2007-02-05 Thread Vincent Snijders
Павел Ишенин schreef: Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus TCanas.TextOut use fpc canvas class to draw text and it works without filling text area with brush. That

Re: [lazarus] TexOut incompability

2007-02-05 Thread Vincent Snijders
Mattias Gaertner schreef: On Mon, 05 Feb 2007 11:36:13 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Павел Ишенин schreef: Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus

Re: [lazarus] TexOut incompability

2007-02-05 Thread Vincent Snijders
Mattias Gaertner schreef: On Mon, 05 Feb 2007 11:36:13 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Павел Ишенин schreef: Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus

Re: [lazarus] TexOut incompability

2007-02-05 Thread Vincent Snijders
Marc Weustink schreef: Vincent Snijders wrote: Mattias Gaertner schreef: On Mon, 05 Feb 2007 11:36:13 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Павел Ишенин schreef: Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut

Re: [lazarus] Someone can test this patch?

2007-02-05 Thread Vincent Snijders
Guadagnini David schreef: In attach there are the patch for use a dialog during the compilation or build similar delphi It looks like an interesting patch. You seemed to have created the patch against the svn head, but made your changes in an earlier version. Therefore some modifications

Re: [lazarus] Lazarus components and wiki problems

2007-02-04 Thread Vincent Snijders
xpete schreef: I've fixed the problem but is better to update mediawiki... An update is not free, it costs time. On Sun, 4 Feb 2007 03:51:49 + xpete [EMAIL PROTECTED] wrote: Hi i have created this article: http://wiki.lazarus.freepascal.org/Lazarus_Components Nice page you have

Re: [lazarus] Problem While installing component

2007-02-04 Thread Vincent Snijders
Luis Rodrigues schreef: Hi, I'm trying to install a Delphi ported component on Lazarus but i keep getting: D:\lazarus\ide\lazarus.pp(117,1) warning: Object PRDRVSTR.or not found, Linking may fail ! d:\lazarus\fpc\2.0.4\bin\i386-win32\ld.exe: cannont find PRDRVSTR.or

Re: [lazarus] File size limit exceeded (core dumped) at 2 GB

2007-01-31 Thread Vincent Snijders
Onjahyr schreef: 2 GB ? ok, use this: http://www.joaomorais.com.br/pascal/push.php?download=67968541 Sucess, 2 GB, 3 GB, 4 GB, 5 GB, ... This doesn't even compile on linux. Vincent _ To unsubscribe: mail [EMAIL

Re: [lazarus] PopUp Menu behavior on TTrayIcon

2007-01-30 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: Attached patch solves this. thanks, @@ -250,15 +255,10 @@ vwsTrayIcon.OnMouseDown(vwsTrayIcon, mbLeft, [], Round(event^.X), Round(event^.Y)); 2: if Assigned(vwsTrayIcon.OnMouseUp) then - vwsTrayIcon.OnMouseDown(vwsTrayIcon,

Re: [lazarus] PopUp Menu behavior on TTrayIcon

2007-01-30 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: On 1/30/07, Vincent Snijders [EMAIL PROTECTED] wrote: Is this correct? testing for OnMouseUp, but calling OnMouseDown? See also a couple of lines above. ps =) Given enougth eyeballs all bugs are shallow =) new patch fixes this. Also this bug

Re: [lazarus] TXMLDocument from string

2007-01-29 Thread Vincent Snijders
Tiziano_mk schreef: Felipe Monteiro de Carvalho wrote: On 1/16/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: There is too few information on that functions... sometime programming with lazarus i feel blind. XML is documented here: http://wiki.lazarus.freepascal.org/Networking Now, if

Re: [lazarus] TCanvas.Pie and TCanvas.RadialPie

2007-01-29 Thread Vincent Snijders
Vincent Snijders schreef: Can somebody explain me the difference between those functions? I just fixed TCanvas.Pie with win32 widgetset to do the same as Delphi (bug 8117), but now TCanvas.Pie and TCanvas.RadialPie seem to do the same thing on win32. In revision 10529 I removed

Re: [lazarus] Drawing a Bitmap onto an TImage component.

2007-01-29 Thread Vincent Snijders
Mattias Gaertner schreef: Take a look at http://wiki.lazarus.freepascal.org/Developing_with_Graphics#Draw_to_a_TImage Here it says: Resizing the TImage does not resize the bitmap. Does that mean that http://www.freepascal.org/mantis/view.php?id=7192 is not a bug, but wrong use?

Re: [lazarus] trayicon patch

2007-01-29 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: Very simple patch for ttrayicon. The popup menu was being activated twice, now it's only on mouse up. Thanks. Applied. Vincent _ To unsubscribe: mail [EMAIL PROTECTED] with

Re: [lazarus] PopUp Menu behavior on TTrayIcon

2007-01-29 Thread Vincent Snijders
Sergei Gorelkin schreef: Tuesday, January 30, 2007, 4:17:38 AM, Felipe wrote: FMdC I don't know what originates the problem ... probably something deep FMdC into gtk 2 interface. I also noticed on lazarus apps the popup is FMdC generally activated on MouseUp, and on general linux software FMdC

Re: [lazarus] Carbon interface patch

2007-01-27 Thread Vincent Snijders
Mattias Gaertner schreef: I do not have a mac to test, so I only looked at the diff, but was not able to test compilation. Added 'class' in front of some class methods in the implementation to fix compilation with fpc 2.1.1. Vincent

Re: [lazarus] TXMLDocument from string

2007-01-26 Thread Vincent Snijders
Tiziano_mk schreef: Michael Van Canneyt wrote: On Mon, 15 Jan 2007, [EMAIL PROTECTED] wrote: Hi... i'm going crazy to create a TXMLDocument from a string. What is the problem ? Var S : TStringStream; XML : TXMLDocument; beg pardon, but in what units/package is TXMLDocument defined?

Re: [lazarus] TXMLDocument from string

2007-01-26 Thread Vincent Snijders
Tiziano_mk schreef: Vincent Snijders wrote: Search, Find in files, Search in directory c:\lazarus\fpc\2.0.4\source and subdirectories: c:\lazarus\fpc\2.0.4\source\fcl\xml\dom.pp mmh, now I see it... fault of my XP setup that doesn't search inside *.pp and *.pas files... That is why I

Re: [lazarus] Lazarus won't build for the last week or so

2007-01-26 Thread Vincent Snijders
Jon Foster schreef: Is the SVN code broken or is a newer version of FPC required? You need fpc 2.0.4 (the release) or fpc 2.1.1 of today (svn HEAD). Older fpc 2.1.1 is not guaranteed to work. Vincent _ To unsubscribe:

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-22 Thread Vincent Snijders
Bogusław Brandys schreef: I see that nobody taken into consideration my idea about using persistent storage like sqlite database.Is that so horrible ? Yes. 1. Persistant storage is not needed, because you don't keep those messages between sessions. 2. The bottleneck is not the storage,

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-20 Thread Vincent Snijders
Graeme Geldenhuys schreef: On 1/20/07, Mattias Gaertner [EMAIL PROTECTED] wrote: Well, we could use TTreeView. It has working BeginUpdate/EndUpdate. It needs 0.4 secs for adding 10.000 top level nodes and changing each 10 times. And it needs 23 secs for adding 100.000 top level nodes and

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-20 Thread Vincent Snijders
Jesus Reyes schreef: --- Al Boldi [EMAIL PROTECTED] escribió: TListBox: 10k rows in 73sec TTreeView: 100k rows in 50sec TMemo: 100k rows in 30sec TListView: 100k rows in 1.5sec TStringGrid: 100k rows in 0.5sec Thanks! -- Al Are you sure?, this doesn't match with Mattias

Re: [lazarus] TThread help-doc example

2007-01-20 Thread Vincent Snijders
Al Boldi schreef: TThread.Create and TThread.Synchronize example: I am sorry, but I think I made promises I cannot keep. The offer to add examples to the docs only goes for the LCL documentation. TThread is an RTL class and is documented by the FPC team (Michael van Canneyt). Examples for

Re: [lazarus] TXMLDocument from string

2007-01-19 Thread Vincent Snijders
Al Boldi schreef: Vincent Snijders wrote: Mattias Gaertner schreef: On Tue, 16 Jan 2007 19:42:32 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: There is http://sourceforge.net/project/showfiles.php?group_id=92177package_id= 138755 It seems to be quite old: 2005-05-26. A new set

Re: [lazarus] TXMLDocument from string

2007-01-19 Thread Vincent Snijders
Al Boldi schreef: Vincent Snijders wrote: Al Boldi schreef: The only missing thing is probably code examples. It maybe a good idea to add a link after the code-help description, to either see an example, or add one thru the wiki or by email. BTW, I could only find RTL and LCL help. Where

Re: [lazarus] 0.9.21, TOpenDialog and Win9x

2007-01-19 Thread Vincent Snijders
Steven Graham schreef: Vincent Snijders wrote: I have an hunch what might be wrong. Can you test this: Open lcl\interfaces\win32\win32wsdialogs.pp Goto line 390 and change it from lStructSize := sizeof(OpenFileName); to lStructSize := sizeof(Windows.OpenFileName); Save the file

Re: [lazarus] TXMLDocument from string

2007-01-18 Thread Vincent Snijders
Mattias Gaertner schreef: On Tue, 16 Jan 2007 19:42:32 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: There is http://sourceforge.net/project/showfiles.php?group_id=92177package_id=138755 It seems to be quite old: 2005-05-26. A new set is available on: http://sourceforge.net/project

Re: [lazarus] Lazarus AMD64 version bug ?

2007-01-18 Thread Vincent Snijders
Marc Weustink schreef: Michael Van Canneyt wrote: Hello, Clicking the middle mouse button in the Lazarus editor window crashes the IDE with a 'Segmentation fault' if it's compiled for AMD64. The IDE just exits, and prints Segmentation fault on the terminal. The exact same sources, compiled

Re: [lazarus] TXMLDocument from string

2007-01-17 Thread Vincent Snijders
Mattias Gaertner schreef: On Tue, 16 Jan 2007 19:42:32 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: It seems to be quite old: 2005-05-26. It is. OTOH, not much LCL documentation has been added. I will create a new set, when fpdoc is fixed again: http://www.freepascal.org/mantis

Re: [lazarus] TXMLDocument from string

2007-01-17 Thread Vincent Snijders
Michael Van Canneyt schreef: On Wed, 17 Jan 2007, Vincent Snijders wrote: Mattias Gaertner schreef: On Tue, 16 Jan 2007 19:42:32 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: It seems to be quite old: 2005-05-26. It is. OTOH, not much LCL documentation has been added. I will create

Re: [lazarus] IDE\revision.inc conflicting state?

2007-01-16 Thread Vincent Snijders
Darius Blaszijk schreef: Darius Blaszijk schreef: You are willing to handle the support? Sorry, but I don't see what is to support. Can't you confirm that after deleting the svn2revisioninc executable and revision.inc files from the source tree, all it takes is a rebuild to recreate them?

[lazarus] TCanvas.Pie and TCanvas.RadialPie

2007-01-16 Thread Vincent Snijders
Can somebody explain me the difference between those functions? I just fixed TCanvas.Pie with win32 widgetset to do the same as Delphi (bug 8117), but now TCanvas.Pie and TCanvas.RadialPie seem to do the same thing on win32. I cannot test this on gtk1. Vincent

Re: [lazarus] where is the IsUniqueGlobalComponentName method. (part 2)

2007-01-16 Thread Vincent Snijders
Graeme Geldenhuys schreef: On 1/16/07, Bogusław Brandys [EMAIL PROTECTED] wrote: Strange.It is now used in tiOPF function tiGetUniqueComponentName(const ANameStub: string): string; When it was added ? I had no problems compiling tiOPF 2 under fpc lately. It was added yesterday by Paul to the

Re: [lazarus] TXMLDocument from string

2007-01-16 Thread Vincent Snijders
Mattias Gaertner schreef: On Tue, 16 Jan 2007 14:48:53 +0300 Al Boldi [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: There is too few information on that functions... sometime programming with lazarus i feel blind. Where can i found a manual with all Lazarus functions, and where can i

Re: Lazarus for Python (L4P)

2007-01-15 Thread Vincent Snijders
Algis Kabaila schreef: Hello again, Marco, SO = Significant Other SO = Shift Out SO = so with emphasis. so 2006 means it was the hot item of last year and thus of the past. Vincent _ To unsubscribe: mail [EMAIL

Re: [lazarus] IDE\revision.inc conflicting state?

2007-01-15 Thread Vincent Snijders
[EMAIL PROTECTED] schreef: Vincent, Can we remove the revision.inc file from SVN please? It's so annoying to get a conflict each time and I really don't see the purpose of keeping it in SVN, unless you create source snapshots without SVN info where you want to show the revision in lazarus. I

Re: [lazarus] 0.9.21, TOpenDialog and Win9x

2007-01-15 Thread Vincent Snijders
Steven Graham schreef: Hi I'm using Lazarus-0.9.21-fpc-2.0.4-20070115-win32 (0.9.20 had ome bugs that pushed me to .21) and on programs that I build TOpenDialog won't run on Win9x, nothing happens. I have tried 0.9.20 on a different machine just in case and TOpenDialog even works on a 386

Re: [lazarus] IDE\revision.inc conflicting state?

2007-01-15 Thread Vincent Snijders
Darius Blaszijk schreef: As to the deletion of revision.inc. I tried to compile lazarus after deleting revision.inc and the svn2revisioninc executable and it worked without problems. Lazarus recompiles the svn2revisioninc tool and creates the revision.inc file. Seems reason enough not to

Re: [lazarus] Linking Fails: cannot find -lglib

2007-01-15 Thread Vincent Snijders
Dave Coventry schreef: Hi, My Laptop is running XP with Gentoo also running in Co-Linux. The Windows installation of Lazarus installs Fine, but I get the following when I run 'make clean all': Linking ../lazarus /usr/bin/ld: cannot find -lglib lazarus.pp(119,1) Error: Error while linking

Re: [lazarus] Linking Fails: cannot find -lglib

2007-01-15 Thread Vincent Snijders
Dave Coventry schreef: Arrrgh! installed glib (emerge glib) Same error. And the devel lib, which installs the symlink. emerge glib-devel or glib-dev Vincent _ To unsubscribe: mail [EMAIL PROTECTED] with

Re: [lazarus] Linking Fails: cannot find -lglib

2007-01-15 Thread Vincent Snijders
Dave Coventry schreef: Dependency Hell! I can't actually find any glib library files. There are a lot of C header files in /usr/include/glib-2.0/, but no *.so or *.a files. What I'm doing is installing the latest Gentoo ebuild (currently lazarus-0.9.12, masked out as 'untested') which will,

Re: [lazarus] Messages window showing wrong unit with error (part 2)

2007-01-12 Thread Vincent Snijders
Graeme Geldenhuys schreef: Here is the last screenshot mentioned in the part 1 email. I did not see part 1 (yet), but I see this is http://www.freepascal.org/mantis/view.php?id=7883 Vincent _ To unsubscribe: mail [EMAIL

Re: [lazarus] New to Lazarus General Question

2007-01-12 Thread Vincent Snijders
Darius Blaszijk schreef: I suppose you get the error when compiling a package. To solve this, add $(LazarusDir)\lcl\units\$(TargetCPU)-$(TargetOS)\ to the search path. Click on compiler options and on the tab Paths add the searchpath to Other unit files. Or even better add the LCL as a

Re: [lazarus] TListView and OwnerDraw events

2007-01-10 Thread Vincent Snijders
Graeme Geldenhuys schreef: Hi From the code snippet below, taken from ComCtrls.pp I gather that none of the OwnerDraw events will ever fire! Does this mean I cannot do any owner drawing in the TListView control? I think that is the correct conclusion. Take a look at

Re: [lazarus] SelectDirectoryDialog on win64

2007-01-05 Thread Vincent Snijders
I am happy to tell that this issue has been fixed. It was probably caused by bug 8048: http://www.freepascal.org/mantis/view.php?id=8048 There are (new) problems with bitmaps. This is a regression caused by r10318. Vincent _

Re: [lazarus] unicode issue of TEdit

2007-01-04 Thread Vincent Snijders
Mattias Gaertner schreef: On Thu, 4 Jan 2007 11:34:26 +0800 [EMAIL PROTECTED] wrote: i found various Chinese display and input problems in TEdit, do we have unicode version of TEdit like Tnt controls? The gtk2 version should support chinese. I dont' know about the gtk1 version. What

Re: [lazarus] Rebuilding IDE with sqlite3 support

2007-01-03 Thread Vincent Snijders
Mattias Gaertner schreef: On Wed, 03 Jan 2007 00:59:40 -0500 Lee Jenkins [EMAIL PROTECTED] wrote: I keep getting a error: Error: Unable to open file 'clean' When trying to rebuild the ide. Do I have to reinstall from source to rebuild new lpk packages into the IDE? I tried installing from

Re: [lazarus] Rebuilding IDE with sqlite3 support

2007-01-03 Thread Vincent Snijders
Lee Jenkins schreef: Running fpc/laz on CentOS4.4, I have the following from: Environment Environment Options -- Files: Lazarus directory: /usr/lib/lazarus/ Compiler path: /usr/bin/ppc386 FPC source directory: /usr/share/fpcsrc/ Make path: /usr/bin/fpcmake This is wrong. It should be

Re: [lazarus] [lcl internals] - keyboard handling

2007-01-02 Thread Vincent Snijders
Giulio Bernardi schreef: Hi, even looking at sources of various interfaces, I cannot really understand how the interface should behave in respect to lcl when handling keyboard events. I don't understand it either, but I never finished reading this page till the end:

[lazarus] arm-wince cross installer for win32

2006-12-31 Thread Vincent Snijders
Hi, I created a arm-wince cross installer. If you first install a Lazarus 0.9.21 snapshot with fpc 2.1.1 and after that Lazarus-0.9.21-fpc-2.1.1-20061230-cross-arm-wince-win32.exe from

Re: [lazarus] Re: Debian packages

2006-12-27 Thread Vincent Snijders
Mattias Gaertner schreef: On Wed, 27 Dec 2006 12:03:44 + Sam Liddicott [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: I uploaded debian packages for lazarus 0.9.17. These are testing packages, before the official 0.9.18 packages are built, so I need some volunteers. They are available

Re: [lazarus] LCL components Font, Font.Color and Color mess!

2006-12-24 Thread Vincent Snijders
Sergey Kamenskiy schreef: So it is a lot of mistakes that it is complex even to list. My advice is to submit a bug report for each mistake. If behavior of gtk and win32 differ, make separate bug reports. I make test project with all main components on form. All Color property(if exists)

Re: [lazarus] Re: patch for StdCtrls

2006-12-13 Thread Vincent Snijders
Mattias Gaertner schreef: On Wed, 13 Dec 2006 12:32:48 +0800 Funky Beast [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: please add documentation for them. Mattias Here you go, also added documentation for AutoComplete and AutoCompleteTextOption. Thanks. Applied. The documentation

Re: [lazarus] How to integrate an Application into the Lazarus-IDE (for localization Lazarus Applications)

2006-12-13 Thread Vincent Snijders
tanila schreef: Hi Vincent, I tried to compile Lazarus with the TRANSLATESTRING. Shouldn't there exist a menu entry in Projects to create PO files etc as i have seen in the source of lazarus ? The lft-file was existend bevore, too. I have never compiled with TRANSLATESTRING before, so I don't

Re: [lazarus] Treating TProcess output

2006-12-13 Thread Vincent Snijders
Arí Ricardo Ody schreef: I'm developing little application for compress/uncompress data using tarball or Zip with a graphical front end. When I submit a tarball command with an error via TProcess I am not receiving the same messages that appear in the screen when I type the same tarball

Re: [lazarus] Borland project file to makefile?

2006-12-12 Thread Vincent Snijders
George Birbilis schreef: Else does the command-line compiler accept some kind of project group (or file with sequential list of projects) to build? See also lazbuild: http://wiki.lazarus.freepascal.org/Lazarus_Documentation#Tools l Vincent

Re: [lazarus] Trying to make TScrollingWinControl more useful...

2006-12-12 Thread Vincent Snijders
Mattias Gaertner schreef: On Tue, 12 Dec 2006 19:12:41 +0100 Pieter Valentijn [EMAIL PROTECTED] wrote: I ment for that panel to be inside the scroll box. That way theres only one control to think about. If your code does the job then theres no need to maintain it :-) The panel idea will

Re: [lazarus] Graphing

2006-12-11 Thread Vincent Snijders
Mark Morgan Lloyd schreef: Otherwise is there a preferred graphing library? I'm currently using Tee-Chart to plot points from a database against time, but am expecting to have to rewrite that on Delphi let alone when (finally) porting to FPC/Lazarus. I don't know Tee-Chart nor your

Re: [lazarus] zlib

2006-12-09 Thread Vincent Snijders
Dave Coventry schreef: Hi, I notice that Lazarus has a zlib.pas module, but this does not appear to be compatible with the delphi version (TCompressionStream is not defined). I'm looking for a quick and dirty way of lumping several (well, thousands) of small text files into a larger file.

Re: [lazarus] Trying to make TScrollingWinControl more useful...

2006-12-08 Thread Vincent Snijders
Mattias Gaertner schreef: On Sun, 3 Sep 2006 22:01:27 -0300 Flávio Etrusco [EMAIL PROTECTED] wrote: Maybe I read wrong, forms.pp: @@ -113,7 +112,6 @@ procedure SetSize(const AValue: integer); virtual; procedure SetSmooth(const Value: Boolean); virtual; procedure

Re: [lazarus] Article on Pixel.

2006-12-08 Thread Vincent Snijders
George Birbilis schreef: The latest issue of Linux Journal features an article about Pixel (By Pavel Kanzelsberger). It gives it a very good comment. Pity it's not mentioned that it's written using FPC. (the article is written by a writer/publisher, not a programmer). For the Lazarus users:

Re: [lazarus] Intallation path with space in it

2006-12-07 Thread Vincent Snijders
George Birbilis schreef: Why doesn't laz installer allow space in the path? Is it FreePascal limitation or Laz one? Don't see why it should require that - even if it's totally necessery it could ask windows for the short filename and use that internally I would say: try and see where it

Re: [lazarus] Resizing an image

2006-12-06 Thread Vincent Snijders
Dave Coventry schreef: Hi, I have a TImage, Image1 on my form. I have the following code: // snip = procedure TForm1.FormResize(Sender: TObject); begin Image1.Width:=Form1.Width; Image1.Height:=Form1.Height-98; Image1.Canvas.Brush.Color:=clBlack;

Re: [lazarus] Lazarus and Delphi: boolean expression expected, but got untyped

2006-12-05 Thread Vincent Snijders
or something like that. Does it? Fpc uses rather a protected identifier than a global variable. Doesn't delphi? -Original Message- From: Vincent Snijders [mailto:[EMAIL PROTECTED] Sent: Saturday, December 02, 2006 3:38 PM To: lazarus@miraclec.com Subject: Re: [lazarus] Lazarus

Re: [lazarus] Lazarus and Delphi: boolean expression expected, but got untyped

2006-12-02 Thread Vincent Snijders
Dave Coventry schreef: Hi, I have a boolean called changed which I use to prevent the user from closing down if he hasn't saved his work. var Changed : boolen; if Changed then begin if MessageDlg('Current Document not saved. Continue?', mtConfirmation, [mbYes, mbNo], 0) mrYes

Re: [lazarus] running preprocessor from lazarus

2006-12-01 Thread Vincent Snijders
Michael Van Canneyt schreef: On Thu, 30 Nov 2006, Felipe Monteiro de Carvalho wrote: On 11/30/06, Marc Santhoff [EMAIL PROTECTED] wrote: Ah, yes, I remember. My first thought was to replace fpc with a batch file, but I didn't try. Doesn´t need to be a batch file. Can be an executable. And

Re: [lazarus] Tab Stop Widths Hidden in Env = Editor Options

2006-12-01 Thread Vincent Snijders
Lee schreef: Hi all, I had to reinstall Lazarus today and I ran across something small, yet a bit frustrating. It seems that on a fresh install of Lazarus on Windows(xp) the General tab of environment options (Environment Editor Options) the Tab Widths combo box is not shown by default.

Re: [lazarus] Changes in TDateEdit

2006-11-30 Thread Vincent Snijders
Vincent Snijders schreef: Aleksey Lagunov schreef: What about the TEdit properties removed from for example TCalcEdit, most notably Text, but also Action? In TCalcEdit publishe 2 property: AsInteger and AsFloat whether it is necessary to publish Text? Action I shall correct I am

Re: [lazarus] running preprocessor from lazarus

2006-11-30 Thread Vincent Snijders
Marc Santhoff schreef: Hi, I know this is a question regarding fpc and lazarus, but I decided to post to this list: If one would want to run the complete sources of a project through a preprocessor transparently when compiling in the lazarus IDE, would this be possible with fpc and lazarus as

Re: [lazarus] TStaticText.TabOrder

2006-11-29 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: On 11/29/06, Marc Weustink [EMAIL PROTECTED] wrote: Not publising it causes delphi incompatebilities. I just tested on Delphi, and the caption receives focus, but there is no visual indication that it has focus. A rather horrible behavior. I would

Re: [lazarus] TStaticText.TabOrder

2006-11-29 Thread Vincent Snijders
Marc Weustink schreef: Vincent Snijders wrote: Felipe Monteiro de Carvalho schreef: On 11/29/06, Marc Weustink [EMAIL PROTECTED] wrote: Not publising it causes delphi incompatebilities. I just tested on Delphi, and the caption receives focus, but there is no visual indication that it has

Re: [lazarus] Bug: TImageList and PNG Images

2006-11-29 Thread Vincent Snijders
Andrew Brunner schreef: I'm using the Lazarus 0.9.20 and Win32 Widget set. If I add a 16x16 png file to a 16x16 TImageList I get a divide by zero error. This error doesn't occur anymore with the svn version. Vincent _ To

[lazarus] TComboBox.ReadOnly

2006-11-29 Thread Vincent Snijders
What is the meaning of TComboBox.ReadOnly? The current implementation is that the ReadOnly property is only used for Owner drawn combo boxes. Then it changes the style from drop down to drop down list. Is this correct? Vincent

Re: [lazarus] TStaticText.TabOrder

2006-11-29 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: While we are at it, TabStop should be published too. Done. Vincent _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

Re: [lazarus] TColorListBox

2006-11-28 Thread Vincent Snijders
[EMAIL PROTECTED] schreef: [EMAIL PROTECTED] schreef: I think you can do it. Can you update the patch? I will try to do that, but not today. Did you try to install it in the IDE? Yes There seems to be no icon for the component in the patch. Can you create one? Name it

Re: [lazarus] SelectDirectoryDialog on win64

2006-11-28 Thread Vincent Snijders
Giulio Bernardi schreef: It didn't fix the select directory dialog in win64 though, I still get TApplication.HandleException Privileged instruction Stack trace: $78F2A966 Vincent yes, that patch wasn't meant to solve SelectDirectoryDialog bug in win64: I was fixing qt LCL to work

[lazarus] Changes in TDateEdit

2006-11-28 Thread Vincent Snijders
Can somebody explain me the reasons behind the changes in revision 10189? http://www.freepascal.org/cgi-bin/viewcvs.cgi?root=lazarusrev=10189view=rev There some problems: http://www.lazarus.freepascal.org/index.php?name=PNphpBB2file=viewtopict=3153 Most published properties, (all that were

Re: GetFPImageReaderForFileExtension question for .jpg

2006-11-28 Thread Vincent Snijders
Marco van de Voort schreef: [EMAIL PROTECTED] wrote: I thought streaming was always done little endian. On big endian systems, data is converted when necessary. Images are streamed as data (byte stream). They are not converted. All other values are as you told (auto converted). The

Re: [lazarus] Changes in TDateEdit

2006-11-28 Thread Vincent Snijders
Aleksey Lagunov schreef: Vincent Snijders пишет: Can somebody explain me the reasons behind the changes in revision 10189? http://www.freepascal.org/cgi-bin/viewcvs.cgi?root=lazarusrev=10189view=rev There some problems: http://www.lazarus.freepascal.org/index.php?name=PNphpBB2file

Re: [lazarus] Changes in TDateEdit

2006-11-28 Thread Vincent Snijders
Aleksey Lagunov schreef: What about the TEdit properties removed from for example TCalcEdit, most notably Text, but also Action? In TCalcEdit publishe 2 property: AsInteger and AsFloat whether it is necessary to publish Text? Action I shall correct I am not an actual user of these

Re: [lazarus] Stretchdraw implemented.

2006-11-27 Thread Vincent Snijders
Patrick Chevalley schreef: Never mind, the docs say this. Applied the patch, thanks. Thanks! I confirm the bug report 1907, 6983 and 7356 can be marked as resolved, zooming in the example imgviewer and the sample application submitted with 7356 produce nice result. Thanks for

<    1   2   3   4   5   6   7   8   9   10   >