Skip to content

guofeiyu2022/libui-beef

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libui-Beef

A Beef language binding for libui-ng

Simple Example

Below example displays a blank window.

using libui;
using System;

namespace libuitest1;

class Program
{
    static int32 OnClosing(__IntPtr w, __IntPtr data)
    {
        ui.UiQuit();
        return 1;
    }

    static int Main()
    {
        var o = scope UiInitOptions();
        var err = ui.UiInit(o);
        if (err != null) {
            Console.Error.WriteLine("Error initializing libui-ng: {0}", scope String(err));
            ui.UiFreeInitError(err);
            return 1;
        }
        defer ui.UiUninit();

        // Create a new window
        var w = ui.UiNewWindow("Hello World!", 300, 200, 0);
        ui.UiWindowOnClosing(w, scope => OnClosing, null);

        ui.UiControlShow((UiControl)w);
        ui.UiMain();
        return 0;
    }
}

Supported Platforms

  • Windows x86
  • Windows x64
  • Linux x64 (GNOME)

Screenshots

  • Windows
controlgallery
base controls numbers and lists data choosers
drawtext histogram edittable
draw text histogram editable table
  • Ubuntu Linux
controlgallery
base controls numbers and lists data choosers
drawtext histogram edittable
draw text histogram editable table

Tips

  • libui-beef supports importing from remote, follow below steps:

    1. In IDE, right clicks "Workspace" node, selects "Add From Remote...".
    add from remote
    1. In opened dialog, inputs project URL for libui-beef.
    input remote url
    1. You can refresh newest libui-beef by right clicking "libui-beef" node, then selecting "Update Version Lock".
    update version lock

Links

About

A Beef language binding for libui-ng

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published