summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 46f8174)
raw | patch | inline | side by side (parent: 46f8174)
author | ishmal <ishmal@users.sourceforge.net> | |
Sun, 15 Apr 2007 01:19:33 +0000 (01:19 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Sun, 15 Apr 2007 01:19:33 +0000 (01:19 +0000) |
src/ui/dialog/scriptdialog.cpp | patch | blob | history |
index a8c0286d68f3cfcaa41182306c75be5c58a8dfdf..07f26b71f92618bb625f6dc3a1f7253b4e65f1b8 100644 (file)
-/*
- * Other dudes from The Inkscape Organization
+/**
+ * Dialog for executing and monitoring script execution
+ *
+ * Author:
+ * Bob Jamison
*
- * Copyright (C) 2004, 2005 Authors
+ * Copyright (C) 2004-2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#if defined(WITH_PYTHON)
"# This is a sample Python script.\n"
"# To run it, select 'Execute Python' from the File menu above.\n"
- "desktop = inkscape.getDesktop()\n"
- "dialogmanager = inkscape.getDialogManager()\n"
- "document = desktop.getDocument()\n"
- "document.hello()\n"
+ "desktop = inkscape.activeDesktop\n"
+ "dialogmanager = desktop.dialogManager\n"
+ "document = inkscape.activeDocument\n"
+ "inkscape.hello()\n"
"dialogmanager.showAbout()\n"
#elif defined(WITH_PERL)
"# This is a sample Perl script.\n"
Glib::ustring error;
Inkscape::Extension::Script::InkscapeScript engine;
bool ok = engine.interpretScript(script, output, error, lang);
- if (!ok) return;
outputText.get_buffer()->set_text(output);
errorText.get_buffer()->set_text(error);
+ if (!ok)
+ {
+ //do we want something here?
+ }
}
/**