Hi

First of all Thank you.

Here is my POC :

program qt_poc;
uses sysutils,qt4;

var
 app      : QApplicationH;
 window   : QWidgetH;
 message_ : QLabelH;
 text     : WideString;
begin
 app      := QApplication_create(@argc, argv);
 text     := 'Hello World';
 window   := QWidget_create(nil, 1);
 message_ := QLabel_create(@text, window);
 QWidget_show(window);
 QApplication_exec();
end.

Please look at the attached image to see the result :)

And yes, I do know it does not free resources, but it's only a POC...

Personally I prefer GTK2, and my co-worker and a friend will want to
kill me tomorrow that I'll tell him that (he is a KDE developer at his
free time ;))

The person that bind QT made a really good work !
Thank you very much,

Ido

On 5/13/07, Giulio Bernardi <[EMAIL PROTECTED]> wrote:
> Is there any known to work binding for QT3 (or 4) that works without
> using Lazarus ?

Yes: http://users.pandora.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html

bye,
Giulio

--
http://ik.homelinux.org/

<<attachment: poc.png>>

_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to