add resources; add workspace panel

This commit is contained in:
Vadim Lopatin 2015-01-13 15:20:13 +03:00
parent 3e93506c27
commit 329c03bdf4
3 changed files with 37 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

BIN
res/mdpi/project-open.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 638 B

37
src/dlangide/ui/wspanel.d Normal file
View File

@ -0,0 +1,37 @@
module dlangide.ui.wspanel;
import dlangui.all;
import dlangide.workspace.workspace;
class WorkspacePanel : VerticalLayout {
protected Workspace _workspace;
protected TreeWidget _tree;
this(string id) {
super(id);
layoutHeight = FILL_PARENT;
_tree = new TreeWidget("wstree");
_tree.layoutHeight = FILL_PARENT;
addChild(_tree);
workspace = null;
}
@property Workspace workspace() {
return _workspace;
}
@property void workspace(Workspace w) {
_workspace = w;
_tree.requestLayout();
_tree.items.clear();
if (w) {
TreeItem root = _tree.items.newChild(w.filename, w.name, "project-development");
foreach(project; w.projects) {
TreeItem p = root.newChild(project.filename, project.name, "project-open");
}
} else {
_tree.items.newChild("none", "New workspace"d, "project-development");
}
_tree.onTreeContentChange(null);
}
}