plasma-framework/scriptengines/javascript/tests/tiger/contents/code/main
Aaron J. Seigo d8fcdb2a08 don't bother parenting the svg now that The Right Thing Magically Happens
svn path=/trunk/KDE/kdebase/workspace/plasma/scriptengines/javascript/; revision=906381
2009-01-06 03:57:03 +00:00

15 lines
317 B
Plaintext

svg = new PlasmaSvg('tiger');
plasmoid.setAction("myAction", "Select Me!", "plasma");
plasmoid.action_myAction = function()
{
print("myAction triggered!");
plasmoid.removeAction("myAction");
}
plasmoid.paintInterface = function(painter)
{
svg.resize( plasmoid.size() );
svg.paint( painter, 0,0 );
}