7ca8482b07
In time for 3.0. The API is still not fully complete, and not fully cleaned up, but this is good enough for this release cycle (and it should offer benefit longer term, if not now -- hopefully performance as well). Many thanks to Hooray as well, who has helped prepare things while I could not, and often suggested ideas.
18 lines
575 B
Text
18 lines
575 B
Text
# Class things:
|
|
var name = 'NDB';
|
|
var parents = [DotSym];
|
|
var __self__ = caller(0)[0];
|
|
DotSym.makeinstance( name, __self__ );
|
|
|
|
var element_type = "group"; # we want a group, becomes "me.element", which we parse a SVG onto
|
|
var svg_path = "/gui/dialogs/images/ndb_symbol.svg"; # speaking of path, this is our path to use
|
|
var local_svg_path = nil; # track changes in the SVG's path
|
|
|
|
var draw = func {
|
|
if (me.svg_path == me.local_svg_path) return;
|
|
me.element.removeAllChildren();
|
|
me.local_svg_path = me.svg_path;
|
|
canvas.parsesvg(me.element, me.svg_path);
|
|
me.inited = 1;
|
|
};
|
|
|