From 0abea0f7c68a7d14ef43dc0a64ce3975b48be211 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 7 Apr 2015 12:06:09 +0300 Subject: [PATCH] refactoring --- README.md | 4 +++- dlangide.visualdproj | 1 + src/dlangide/ui/newproject.d | 23 +++++++++++++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/dlangide/ui/newproject.d diff --git a/README.md b/README.md index c1aeaf1..4065745 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,11 @@ Build and run with DUB: If you see build errors, try to upgrade dependencies: dub upgrade --force-remove + dub build --force -Needs DMD 2.066.1 to build. +Needs DMD 2.066.1 or newer to build. + HINT: Try to open sample project Tetris, from workspaces/tetris with DlangIDE. diff --git a/dlangide.visualdproj b/dlangide.visualdproj index 2a09fda..e698f6e 100644 --- a/dlangide.visualdproj +++ b/dlangide.visualdproj @@ -240,6 +240,7 @@ + diff --git a/src/dlangide/ui/newproject.d b/src/dlangide/ui/newproject.d new file mode 100644 index 0000000..0f02d49 --- /dev/null +++ b/src/dlangide/ui/newproject.d @@ -0,0 +1,23 @@ +module dlangide.ui.newproject; + +import dlangui.core.types; +import dlangui.core.i18n; +import dlangui.platforms.common.platform; +import dlangui.dialogs.dialog; + +class NewProjectDlg : Dialog { + + this(UIString caption, Window parentWindow = null, uint flags = DialogFlag.Modal) { + super(caption, parentWindow, flags); + _caption = caption; + _parentWindow = parentWindow; + _flags = flags; + _icon = "dlangui-logo1"; + } + + /// override to implement creation of dialog controls + override void init() { + super.init(); + } + +}