Awesome
hbui
Graphical user interface library for the Harbour compiler, this is a wrapper library around libui, a portable GUI library.
- Read more about the - Cross platform
- Read more about the - Harbour (software)
How to begin
-
First of all download:
Documentation
Sample source code
FUNCTION Main()
LOCAL oWindow
oWindow := uiNewWindow( "Main Window", 800, 600, .T. )
uiControlShow( oWindow )
uiMain()
uiUninit()
RETURN NIL