workspace panel

This commit is contained in:
Vadim Lopatin 2015-01-13 15:18:44 +03:00
parent 8e211b1adc
commit 3e93506c27
5 changed files with 61 additions and 11 deletions

View File

@ -66,7 +66,7 @@
<debuglevel>0</debuglevel> <debuglevel>0</debuglevel>
<debugids /> <debugids />
<versionlevel>0</versionlevel> <versionlevel>0</versionlevel>
<versionids>USE_SDL USE_OPENGL</versionids> <versionids>Unicode USE_OPENGL</versionids>
<dump_source>0</dump_source> <dump_source>0</dump_source>
<mapverbosity>3</mapverbosity> <mapverbosity>3</mapverbosity>
<createImplib>0</createImplib> <createImplib>0</createImplib>
@ -190,15 +190,16 @@
</Config> </Config>
<Folder name="dlangide"> <Folder name="dlangide">
<Folder name="dlangide"> <Folder name="dlangide">
<Folder name="ui">
<File path="src\dlangide\ui\commands.d" />
<File path="src\dlangide\ui\frame.d" />
<File path="src\dlangide\ui\wspanel.d" />
</Folder>
<Folder name="workspace"> <Folder name="workspace">
<File path="src\dlangide\workspace\project.d" /> <File path="src\dlangide\workspace\project.d" />
<File path="src\dlangide\workspace\workspace.d" /> <File path="src\dlangide\workspace\workspace.d" />
</Folder> </Folder>
<Folder name="ui">
<File path="src/dlangide/ui/commands.d" />
<File path="src/dlangide/ui/frame.d" />
</Folder>
</Folder> </Folder>
<File path="src/app.d" /> <File path="src\app.d" />
</Folder> </Folder>
</DProject> </DProject>

View File

@ -38,12 +38,11 @@ extern (C) int UIAppMain(string[] args) {
// create window // create window
Window window = Platform.instance.createWindow("Dlang IDE", null); Window window = Platform.instance.createWindow("Dlang IDE", null);
IDEFrame frame = new IDEFrame(window);
frame.loadWorkspace(appendPath(exePath, "../workspaces/sample1/sample1.dlangidews"));
// create some widget to show in window // create some widget to show in window
window.mainWidget = new IDEFrame(window); window.mainWidget = frame;
// testing workspace loader
Workspace ws = new Workspace();
ws.load(appendPath(exePath, "../workspaces/sample1/sample1.dlangidews"));
// show window // show window
window.show(); window.show();

View File

@ -9,6 +9,8 @@ import dlangui.dialogs.dialog;
import dlangui.dialogs.filedlg; import dlangui.dialogs.filedlg;
import dlangide.ui.commands; import dlangide.ui.commands;
import dlangide.ui.wspanel;
import dlangide.workspace.workspace;
import std.conv; import std.conv;
@ -25,6 +27,7 @@ class IDEFrame : VerticalLayout, MenuItemClickHandler {
MainMenu mainMenu; MainMenu mainMenu;
MenuItem mainMenuItems; MenuItem mainMenuItems;
WorkspacePanel _wsPanel;
this(Window window) { this(Window window) {
super("IDEFrame"); super("IDEFrame");
@ -33,18 +36,24 @@ class IDEFrame : VerticalLayout, MenuItemClickHandler {
createMenu(); createMenu();
createTabs(); createTabs();
layoutWidth = FILL_PARENT; layoutWidth = FILL_PARENT;
layoutHeight = FILL_PARENT; layoutHeight = FILL_PARENT;
//window.mainWidget = this; //window.mainWidget = this;
} }
void createTabs() { void createTabs() {
// editor tabs // editor tabs
TabWidget tabs = new TabWidget("TABS"); TabWidget tabs = new TabWidget("TABS");
tabs.layoutWidth = FILL_PARENT; tabs.layoutWidth = FILL_PARENT;
tabs.layoutHeight = FILL_PARENT; tabs.layoutHeight = FILL_PARENT;
_wsPanel = new WorkspacePanel("workspace");
HorizontalLayout wsLayout = new HorizontalLayout();
wsLayout.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
// create Editors test tab // create Editors test tab
VerticalLayout editors = new VerticalLayout("editors"); VerticalLayout editors = new VerticalLayout("editors");
@ -57,7 +66,10 @@ class IDEFrame : VerticalLayout, MenuItemClickHandler {
//editBox.popupMenu = editPopupItem; //editBox.popupMenu = editPopupItem;
tabs.addTab(editors, "Sample"d); tabs.addTab(editors, "Sample"d);
addChild(tabs); wsLayout.addChild(tabs);
wsLayout.addChild(new ResizerWidget("wsresizer"));
wsLayout.addChild(_wsPanel);
addChild(wsLayout);
tabs.selectTab("editors"); tabs.selectTab("editors");
@ -130,6 +142,15 @@ class IDEFrame : VerticalLayout, MenuItemClickHandler {
} }
return false; return false;
} }
bool loadWorkspace(string path) {
// testing workspace loader
Workspace ws = new Workspace();
ws.load(path);
currentWorkspace = ws;
_wsPanel.workspace = ws;
return true;
}
} }
Widget createAboutWidget() Widget createAboutWidget()

View File

@ -33,6 +33,26 @@ class WorkspaceItem {
} }
} }
/// name
@property dstring name() {
return _name;
}
/// name
@property void name(dstring s) {
_name = s;
}
/// name
@property dstring description() {
return _description;
}
/// name
@property void description(dstring s) {
_description = s;
}
/// load /// load
bool load(string fname) { bool load(string fname) {
// override it // override it

View File

@ -27,6 +27,10 @@ class Workspace : WorkspaceItem {
super(fname); super(fname);
} }
@property Project[] projects() {
return _projects;
}
override bool load(string fname = null) { override bool load(string fname = null) {
if (fname.length > 0) if (fname.length > 0)
filename = fname; filename = fname;
@ -62,4 +66,9 @@ class Workspace : WorkspaceItem {
} }
return true; return true;
} }
void close() {
}
} }
/// global workspace
__gshared Workspace currentWorkspace;