Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
cf53564a
Commit
cf53564a
authored
Jan 06, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dev
parent
f3dcb826
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
layout.js
src/module/layout.js
+8
-3
render.js
src/module/render.js
+2
-2
No files found.
src/module/layout.js
View file @
cf53564a
...
...
@@ -4,9 +4,7 @@ KityMinder.registerModule( "LayoutModule", function () {
base
:
Command
,
execute
:
function
(
km
,
parent
)
{
var
_node
=
new
MinderNode
();
_node
.
setData
(
"x"
,
parent
.
getData
(
"x"
)
+
200
);
_node
.
setData
(
"y"
,
Math
.
random
()
*
300
+
100
);
_node
.
setData
(
"align"
,
"left"
);
_node
.
setData
(
"text"
,
"New Node"
);
switch
(
parent
.
branchside
)
{
case
"left"
:
...
...
@@ -15,7 +13,14 @@ KityMinder.registerModule( "LayoutModule", function () {
break
;
default
:
(
function
()
{
var
children
=
parent
.
getChildren
();
if
(
children
.
length
<
5
)
{
_node
.
setData
(
"x"
,
parent
.
getData
(
"x"
)
+
200
);
_node
.
setData
(
"align"
,
"left"
);
}
else
{
_node
.
setData
(
"x"
,
parent
.
getData
(
"x"
)
-
200
);
_node
.
setData
(
"align"
,
"right"
);
}
}
)();
break
;
}
...
...
src/module/render.js
View file @
cf53564a
...
...
@@ -48,7 +48,7 @@ KityMinder.registerModule( "RenderModule", function () {
nodeShape
.
NormalInfo
=
new
kity
.
Pen
(
_style
.
stroke
,
_style
.
strokeWidth
);
nodeShape
.
rect
.
setWidth
(
_rectWidth
).
setHeight
(
_rectHeight
).
stroke
(
nodeShape
.
NormalInfo
).
fill
(
_style
.
fill
).
setRadius
(
_style
.
radius
);
switch
(
node
.
align
)
{
switch
(
node
.
getData
(
"align"
)
)
{
case
"center"
:
nodeShape
.
shape
.
translate
(
node
.
getData
(
"x"
)
-
_rectWidth
/
2
,
node
.
getData
(
"y"
)
-
_rectHeight
/
2
);
break
;
...
...
@@ -63,7 +63,7 @@ KityMinder.registerModule( "RenderModule", function () {
if
(
km
.
isNodeSelected
(
node
)
)
{
nodeShape
.
highlight
();
}
}
}
;
return
{
base
:
Command
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment