add getters

fix transparent handling in picker


git-svn-id: http://svg-edit.googlecode.com/svn/trunk@38 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Pavol Rusnak
2009-06-06 12:25:26 +00:00
parent 979949da7a
commit 4aedad493b
2 changed files with 41 additions and 0 deletions

View File

@@ -465,34 +465,66 @@ function SvgCanvas(doc)
}
}
this.getMode = function() {
return current_mode;
}
this.setMode = function(name) {
current_mode = name;
}
this.getStrokeColor = function() {
return current_stroke;
}
this.setStrokeColor = function(color) {
current_stroke = color;
}
this.getFillColor = function() {
return current_fill;
}
this.setFillColor = function(color) {
current_fill = color;
}
this.getStrokeWidth = function() {
return current_stroke_width;
}
this.setStrokeWidth = function(val) {
current_stroke_width = val;
}
this.getStrokeStyle = function() {
return current_stroke_style;
}
this.setStrokeStyle = function(val) {
current_stroke_style = val;
}
this.getOpacity = function() {
return current_opacity;
}
this.setOpacity = function(val) {
current_opacity = val;
}
this.getFillOpacity = function() {
return current_fill_opacity;
}
this.setFillOpacity = function(val) {
current_fill_opacity = val;
}
this.getStrokeOpacity = function() {
return current_stroke_opacity;
}
this.setStrokeOpacity = function(val) {
current_stroke_opacity = val;
}