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)
- first of all please download Harbour
- HBUI live source repository
You'll need Git version control software installed on your system, and issue this command:
$ git clone git://github.com/rjopek/hbui
You can get subsequent updates using this command:
git pull
For all systems, use the command:
- (you must (i.e.) export HB_WITH_LIBUI="/the/path/to/libui")
- ( Darwin: you must export where the LIBUI dynamic library is (i.e.): DYLD_LIBRARY_PATH="/the/path/to/libui/build/out" )
$ hbmk2 hbui.hbp
To test it, type:
$ cd docs/tutorial
$ hbmk2 window.prg -run
FUNCTION Main()
LOCAL oWindow
oWindow := uiNewWindow( "main Window", 800, 600, .T. )
? "pointer:", oWindow
uiControlShow( oWindow )
uiMain()
uiUninit()
RETURN NIL
MIT
Free Software, Hell Yeah! ;-)