refactoring

This commit is contained in:
Vadim Lopatin 2015-04-07 12:06:09 +03:00
parent 56374ac0b8
commit 0abea0f7c6
3 changed files with 27 additions and 1 deletions

View File

@ -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.

View File

@ -240,6 +240,7 @@
<File path="src\dlangide\ui\dsourceedit.d" />
<File path="src\dlangide\ui\frame.d" />
<File path="src\dlangide\ui\homescreen.d" />
<File path="src\dlangide\ui\newproject.d" />
<File path="src\dlangide\ui\outputpanel.d" />
<File path="src\dlangide\ui\searchPanel.d" />
<File path="src\dlangide\ui\settings.d" />

View File

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