Re: [lazarus] Force -dgtk1 to get it to compile projects under debian

2006-01-07 Thread Mattias Gaertner
On Fri, 6 Jan 2006 21:37:34 -0800 Dale Welch [EMAIL PROTECTED] wrote: On Friday 06 January 2006 05:56 pm, Mattias Gaertner wrote: On Fri, 6 Jan 2006 17:02:06 -0800 Dale Welch [EMAIL PROTECTED] wrote: On Thursday 05 January 2006 11:52 pm, Mattias Gaertner wrote: On Thu, 5 Jan 2006

Re: [lazarus] newprojectdlg

2006-01-07 Thread Darius Blaszijk
I've got again a question on ''new project' and new project from file, boh located under the project menu. As to the first, I believe it is a copy of the new menu entry located under the file menu. Historically it's the other way round. And it's not the same code. I'm very cautious

Re: [lazarus] newprojectdlg

2006-01-07 Thread Mattias Gaertner
On 07 Jan 2006 12:57:40 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: I've got again a question on ''new project' and new project from file, boh located under the project menu. As to the first, I believe it is a copy of the new menu entry located under the file menu. Historically

Re: Canvas handling obscurity

2006-01-07 Thread Martin Smat
Markku Niskanen wrote: I suspect - I stress: I suspect - I have found an error in the canvas handling (Win32). I have been debugging the behaviour of the roundrect for two weeks now and I have traced part of the problem down to drawing arcs. I finally wrote a test in delphi and copied the

Re: [lazarus] newprojectdlg

2006-01-07 Thread Darius Blaszijk
I've got again a question on ''new project' and new project from file, boh located under the project menu. As to the first, I believe it is a copy of the new menu entry located under the file menu. Historically it's the other way round. And it's not the same code. I'm

Re: [lazarus] newprojectdlg

2006-01-07 Thread Mattias Gaertner
On 07 Jan 2006 13:45:56 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: I've got again a question on ''new project' and new project from file, boh located under the project menu. As to the first, I believe it is a copy of the new menu entry located under the file menu.

Re: [lazarus] newprojectdlg

2006-01-07 Thread Darius Blaszijk
On Sat, 2006-01-07 at 14:24, Mattias Gaertner wrote: On 07 Jan 2006 13:45:56 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: I've got again a question on ''new project' and new project from file, boh located under the project menu. As to the first, I believe it is a copy of

Re: [lazarus] sortselectiondlg

2006-01-07 Thread Darius Blaszijk
I understand how to call it from code, but how can I get the dialog to show from the IDE? What menu or shortcut is it under? Darius On Sat, 2006-01-07 at 14:28, Mattias Gaertner wrote: On 07 Jan 2006 14:05:05 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: Does anybody know how to invoke

Re: [lazarus] Canvas handling obscurity

2006-01-07 Thread Mattias Gaertner
On Sat, 07 Jan 2006 13:55:33 +0200 Markku Niskanen [EMAIL PROTECTED] wrote: Canvas.Arc(iMin,jMin, iMax,jMax, x1, y1, x2,y2); Windows.Arc(Canvas.handle,iMin,jMin, iMax,jMax, x1, y1, x2,y2); Oh dear me! I finally noticed that the Lazarus Arc differs from the rest of the world. In Windows

Re: Canvas handling obscurity

2006-01-07 Thread Markku Niskanen
In LCL the meaning are width and height. So the correct form of your function should be: Canvas.Arc(iMin,jMin, iMax-iMin,jMax-jMin, x1, y1, x2,y2); Any idea why this is different from Delphi? -- [EMAIL PROTECTED] _ To

Re: [lazarus] sortselectiondlg

2006-01-07 Thread Mattias Gaertner
On 07 Jan 2006 14:30:27 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: I understand how to call it from code, but how can I get the dialog to show from the IDE? What menu or shortcut is it under? Install Michael VC's package examples/exploremenu/exploreidemenu.lpk Then restart the IDE and

Re: [lazarus] sortselectiondlg

2006-01-07 Thread Mattias Gaertner
On Sat, 7 Jan 2006 14:55:44 +0100 Mattias Gaertner [EMAIL PROTECTED] wrote: On 07 Jan 2006 14:30:27 +0100 Darius Blaszijk [EMAIL PROTECTED] wrote: I understand how to call it from code, but how can I get the dialog to show from the IDE? What menu or shortcut is it under? Install

Re: [lazarus] Canvas handling obscurity

2006-01-07 Thread Markku Niskanen
On Sat, 7 Jan 2006 14:41:48 +0100, Mattias Gaertner This should be changed. Please report this as bug, so it won't be forgotten. Done. a) Yes. In fact, all Handle objects are not the same as under Delphi. b) No. There should be no function with exactly the same name and parameter types and

Re: [lazarus] sortselectiondlg

2006-01-07 Thread Darius Blaszijk
On Sat, 2006-01-07 at 14:55, Mattias Gaertner wrote: Install Michael VC's package examples/exploremenu/exploreidemenu.lpk Then restart the IDE and have a look at Tools - Explore menu Here you can see the path of every item. Wow, impressive. Thanks for pointing that out to me... Darius

Re: [lazarus] RoundRect patch

2006-01-07 Thread Markku Niskanen
method RoundRect was not overridden in the Win32 interface and the default LCL method was used instead of the Win32 API call which did not Ahh... it was really that easy? I thought the idea was to change it in the LCL but what the heck - the result looks a lot brighter now. Nice. Thank you.

Re: [lazarus] Where can I find information about creating a new widget set?

2006-01-07 Thread lazarus . mramirez
Hi. Peter, I suggest to add characters to your answers, it seems that 2 persons reply to this message but I couldn't check which one was you answer... Is this similar what Intraweb does in Delphi/Kylix? I don't know about Intraweb, but I have seen similar frameworks on the net. A completely

Re: [lazarus] Where can I find information about creating a new widget set?

2006-01-07 Thread Babcsany Peter
[EMAIL PROTECTED] wrote: Hi. Peter, I suggest to add characters to your answers, it seems that 2 persons reply to this message but I couldn't check which one was you answer... Is this possible that you can't view HTML messages properly (this is my default format)? Is this similar

Re: [lazarus] Different behaviour of forms under Linux / Windows

2006-01-07 Thread Micha Nelissen
On Sat, 7 Jan 2006 02:58:00 +0100 Mattias Gaertner [EMAIL PROTECTED] wrote: There is docking and there is framing. Docking is putting a window into another, and you are able to pull it out again, and close it etc. Framing is very similar to TPanel descendent, but you are able to design it

Re: [lazarus] RoundRect patch

2006-01-07 Thread Micha Nelissen
On Sat, 07 Jan 2006 13:00:02 +0100 Martin Smat [EMAIL PROTECTED] wrote: Attached patch adds RoundRect method into the Win32 interface. The method RoundRect was not overridden in the Win32 interface and the default LCL method was used instead of the Win32 API call which did not produce nice

Re: [lazarus] Force -dgtk1 to get it to compile projects under debian

2006-01-07 Thread Mattias Gaertner
On Sat, 7 Jan 2006 12:56:08 -0800 Dale Welch [EMAIL PROTECTED] wrote: On Saturday 07 January 2006 02:00 am, Mattias Gaertner wrote: On Fri, 6 Jan 2006 21:37:34 -0800 Dale Welch [EMAIL PROTECTED] wrote: On Friday 06 January 2006 05:56 pm, Mattias Gaertner wrote: On Fri, 6 Jan

Re: [lazarus] Force -dgtk1 to get it to compile projects under debian

2006-01-07 Thread Dale Welch
OKOKOKOKOKOKOKOK apparently there's a reason i'm missing a chunk of brain. ... there was a line in the fpc.cfg telling it where the source for the lcl was... not a good thing. ---dale On Saturday 07 January 2006 04:46 pm, Mattias Gaertner wrote: Strange. Please start the IDE in a terminal,