5

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.

Nathan Campos
  • 28,769
  • 59
  • 194
  • 300

3 Answers3

4

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

Marco van de Voort
  • 25,628
  • 5
  • 56
  • 89
2

You can also use FPC Qt4 Binding.

Wildcat
  • 8,701
  • 6
  • 42
  • 63
1

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

avra
  • 3,690
  • 19
  • 19