Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GUI Only By Using FPC

I want to know how I can develop GUI applications(32 Bits) without using Delphi language(Object Pascsl), only by using FPC with Lazarus installed(Pascal). Thanks.

like image 510
Nathan Campos Avatar asked Nov 28 '09 19:11

Nathan Campos


2 Answers

Use a widget set directly. Look at e.g. the examples in packages/gtk2 for unix, or the windows win32api usage demo. (demo\win32 in the FPC win32 installation)

But not using lazarus makes you lose platform independance, and a lot of ease.

Looking how lazarus does it, is still a possibility.

A second option is https://github.com/mse-org/mseide-msegui

like image 117
Marco van de Voort Avatar answered Sep 23 '22 20:09

Marco van de Voort


You can also use FPC Qt4 Binding.

like image 44
Wildcat Avatar answered Sep 24 '22 20:09

Wildcat