Cross Platform GUI for D programming language
Go to file
Vadim Lopatin 71a1e4cc78 fix issue #1 2014-04-18 06:24:17 +04:00
3rdparty GLX support fixes 2014-03-20 13:27:11 +04:00
examples fix buttons behavior 2014-04-17 22:48:13 +04:00
lib use Derelict/FreeImage instead of libpng to fix library version issues 2014-03-15 16:11:49 +04:00
res update button drawables 2014-04-17 22:48:58 +04:00
src/dlangui fix issue #1 2014-04-18 06:24:17 +04:00
.gitignore implement CheckBox and RadioButton controls 2014-04-17 16:17:58 +04:00
README.md implement CheckBox and RadioButton controls 2014-04-17 16:17:58 +04:00
dlangui.sln theme and styles, part 1 2014-03-05 23:00:21 +04:00
dlanguilib.dproj fix mono-D project / linux build 2014-04-17 16:23:36 +04:00
dlanguilib.sln move standard resources to solution directory; add helloworld project 2014-04-17 11:53:39 +04:00
dlanguilib.visualdproj implement CheckBox and RadioButton controls 2014-04-17 16:17:58 +04:00
dlanguimonod.sln XCB binding 2014-03-13 18:26:00 +04:00
dub.json move standard resources to solution directory; add helloworld project 2014-04-17 11:53:39 +04:00
winmain.d Text drawing is working. Refcounted fonts working ok 2014-03-04 16:39:16 +04:00

README.md

Dlang UI

GUI for D programming language, written in D.

  • Crossplatform (Win32 and Linux are supported in current version)
  • Mostly inspired by Android UI API (layouts, styles, two phase layout, ...)
  • Supports highly customizable UI themes and styles
  • Supports internationalization
  • Hardware acceleration using OpenGL (when built with USE_OPENGL)
  • Fallback to Win32 API / XCB when OpenGL is not available
  • Actually it's a port (with major refactoring) of GUI library for cross platform OpenGL based implementation of Cool Reader app prokeject from C++.
  • Almost ready for 2D games development
  • Goal: provide set of widgets suitable for building of IDE.

Win32 builds

  • Under windows, uses Win32 API as backend.
  • Optionally, may use OpenGL acceleration via DerelictGL3/WGL.
  • Uses Win32 API for font rendering.
  • Optinally can use FreeType for font rendering.

Linux builds

  • Uses XCB (X C binding) as backend.
  • Uses shared memory images for faster drawing.
  • Uses FreeType for font rendering.
  • TODO: Use FontConfig to get font list.
  • TODO: OpenGL initializes ok, but images not visible on screen. Disabled temporary.

Other platforms

  • Other platforms support may be added easy

Third party components used

  • DerelictGL3 - for OpenGL support
  • DerelictFT + FreeType library support under linux and optionally under Windows.
  • DerelictFI + FreeImage library support for decoding of images
  • WindowsAPI bindings from http://www.dsource.org/projects/bindings/wiki/WindowsApi (patched)
  • XCB and X11 bindings (patched) TODO: provide links

Hello World

// main.d
import dlangui.all;
mixin DLANGUI_ENTRY_POINT;

/// entry point for dlangui based application
extern (C) int UIAppMain(string[] args) {
    // resource directory search paths
    string[] resourceDirs = [
        appendPath(exePath, "../res/"),   // for Visual D and DUB builds
        appendPath(exePath, "../../res/") // for Mono-D builds
    ];

    // setup resource directories - will use only existing directories
    drawableCache.setResourcePaths(resourceDirs);

        // optinally setup internatilnalization (if used)
    // setup i18n - look for i18n directory inside one of passed directories
    i18n.findTranslationsDir(resourceDirs);
    // select translation file - for english language
    i18n.load("en.ini"); //"ru.ini", "en.ini"

    // create window
    Window window = Platform.instance.createWindow("My Window", null);
        // create some widget to show in window
    window.mainWidget = (new Button()).text("Hello world"d);
        // show window
        window.show();
    // run message loop
    return Platform.instance.enterMessageLoop();
}