Nathan Campos
Nathan Campos

Reputation: 29497

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.

Upvotes: 5

Views: 1638

Answers (3)

Marco van de Voort
Marco van de Voort

Reputation: 26356

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

Upvotes: 4

avra
avra

Reputation: 3730

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

Upvotes: 1

Wildcat
Wildcat

Reputation: 8870

You can also use FPC Qt4 Binding.

Upvotes: 2

Related Questions