haxeui-heaps is the Heaps backend for HaxeUI.
haxeui-heaps has a dependency to haxeui-core, and so that too must be installed. Once haxeui-core is installed, haxeui-heaps can be installed using:
haxelib install haxeui-heaps
haxeui-openfl also has a dependancy on Heaps, this can be installed via haxelib using the following command:
haxelib install heaps
If you want to use heaps in a desktop applicaiton (ie, via HashLink) then you also need install the SDL libraries for heaps using the following command:
haxelib run install hsdl
The simplest method to create a new native application that is HaxeUI ready is to use the HaxeUI command line tools. These tools will allow you to start a new project rapidly with HaxeUI support baked in. To create a new skeleton application using haxeui-heaps create a new folder and use the following command:
haxelib run haxeui-core create heaps
If however you already have an existing application, then incorporating HaxeUI into that application is straightforward:
If you are using a command line build (via a .hxml file) then add these lines:
-lib heaps
-lib haxeui-core
-lib haxeui-heaps
If you are using heaps in a desktop applicaiton (ie, via HashLink) then you also need include the SDL library into your application with the following:
-lib hsdl
Initialising the toolkit requires you to add this single line somewhere before you start to actually use HaxeUI in your application:
Toolkit.init();
Once the toolkit is initialised you can add components using the methods specified here.
As well as using the generic Screen.instance.addComponent
, since HaxeUI components in haxeui-heaps extend from h2d.Object
it is also possible to add components directly to any other Heaps s2d object (eg: hxd.App.s2d
).