From 63748b1462b7f3b2ff4a1c6dc03fb677b5c861ed Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Fri, 5 Dec 2014 15:49:40 +0300 Subject: [PATCH] initial project --- dub.json | 29 +++++++++++++++++++++++++++++ src/app.d | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 dub.json create mode 100644 src/app.d diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..e33cc66 --- /dev/null +++ b/dub.json @@ -0,0 +1,29 @@ +{ + "name": "dlangide", + "description": "trying to make D language IDE based on dlangui library", + "homepage": "https://github.com/buggins/dlangide", + "license": "Boost", + "authors": ["Vadim Lopatin"], + + "targetName": "dlangide", + "targetPath": "bin", + "targetType": "executable", + + "sourcePaths": ["src"], + + "sourceFiles": [ + "src/app.d" + ], + + "copyFiles-windows": [ + "lib/FreeImage.dll", + ], + + "mainSourceFile": "src/app.d", + + "libs-windows": ["dlanguilib", "phobos", "ole32", "kernel32", "user32", "comctl32", "comdlg32"], + + "dependencies": { + "dlangui:dlanguilib": "~master" + } +} diff --git a/src/app.d b/src/app.d new file mode 100644 index 0000000..91ebfc2 --- /dev/null +++ b/src/app.d @@ -0,0 +1,44 @@ +module app; + +import dlangui.all; +import std.stdio; +import std.conv; + + +mixin APP_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/mdpi/"), // for Visual D and DUB builds + appendPath(exePath, "../../../../res/"),// for Mono-D builds + appendPath(exePath, "../../../../res/mdpi/"),// for Mono-D builds + appendPath(exePath, "res/"), // when res dir is located at the same directory as executable + appendPath(exePath, "../res/"), // when res dir is located at project directory + appendPath(exePath, "../../res/"), // when res dir is located at the same directory as executable + appendPath(exePath, "res/mdpi/"), // when res dir is located at the same directory as executable + appendPath(exePath, "../res/mdpi/"), // when res dir is located at project directory + appendPath(exePath, "../../res/mdpi/") // when res dir is located at the same directory as executable + ]; + + // setup resource directories - will use only existing directories + Platform.instance.resourceDirs = resourceDirs; + // select translation file - for english language + Platform.instance.uiLanguage = "en"; + // load theme from file "theme_default.xml" + Platform.instance.uiTheme = "theme_default"; + + // 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).margins(Rect(20,20,20,20)); + + // show window + window.show(); + + // run message loop + return Platform.instance.enterMessageLoop(); +}