initial project

This commit is contained in:
Vadim Lopatin 2014-12-05 15:49:40 +03:00
parent 182f2fd5bf
commit 63748b1462
2 changed files with 73 additions and 0 deletions

29
dub.json Normal file
View File

@ -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"
}
}

44
src/app.d Normal file
View File

@ -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();
}