Module beamui

This module is just to simplify import of most useful beamui modules.

Synopsis

// helloworld
import beamui;

int main()
{
    // initialize library
    GuiApp app;
    if (!app.initialize())
        return -1;

    // create a window
    Window window = platform.createWindow("My Window");
    // create some widget to show in the window
    window.mainWidget = new Button("Hello, world!"d);
    // show window
    window.show();
    // run event loop
    return platform.runEventLoop();
}

Import line

import beamui;