Only GUI with FPC

I want to know how I can create graphical applications (32 bits) without using the Delphi language (Object Pascsl), only using FPC with Lazarus (Pascal) installed. Thanks.

+3
source share
3 answers

Use the widget set directly. Take a look, for example. examples in / gtk 2 packages for unix or a demonstration of using win32api on Windows. (demo \ win32 in installing FPC win32)

But not using lazarus makes you lose platform independence and is very easy.

Looking at how Lazarus does this, there is still an opportunity.

Second option http://www.msegui.org/

+3
source

You can also use the FPC Qt4 binding .

+1
source

Take a look at the built-in LCL and the external fpGUI and mseGUI .

0
source

All Articles