mirror of https://github.com/buggins/dlangide.git
refactoring
This commit is contained in:
parent
56374ac0b8
commit
0abea0f7c6
|
@ -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.
|
||||
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue