diff options
| author | MenTaLguY <mental@rydia.net> | 2006-01-16 02:36:01 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-01-16 02:36:01 +0000 |
| commit | 179fa413b047bede6e32109e2ce82437c5fb8d34 (patch) | |
| tree | a5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/ui/dialog/scriptdialog.h | |
| download | inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip | |
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/ui/dialog/scriptdialog.h')
| -rw-r--r-- | src/ui/dialog/scriptdialog.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/ui/dialog/scriptdialog.h b/src/ui/dialog/scriptdialog.h new file mode 100644 index 000000000..74bc5d007 --- /dev/null +++ b/src/ui/dialog/scriptdialog.h @@ -0,0 +1,65 @@ +#ifndef __SCRIPTDIALOG_H__ +#define __SCRIPTDIALOG_H__ +/* + * This dialog is for launching scripts whose main purpose if + * the scripting of Inkscape itself. + * + * Authors: + * Bob Jamison + * Other dudes from The Inkscape Organization + * + * Copyright (C) 2004, 2005 Authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + + +#include "dialog.h" +#include "verbs.h" + +namespace Inkscape { +namespace UI { +namespace Dialog { + + +/** + * A script editor, loader, and executor + */ +class ScriptDialog : public Dialog +{ + + public: + + + /** + * Constructor + */ + ScriptDialog() : Dialog ("dialogs.script", SP_VERB_DIALOG_SCRIPT) + {} + + + /** + * Factory method + */ + static ScriptDialog *create(); + + /** + * Destructor + */ + virtual ~ScriptDialog() {}; + + + + +}; // class ScriptDialog + + +} //namespace Dialog +} //namespace UI +} //namespace Inkscape + + + + +#endif /* __DEBUGDIALOG_H__ */ + |
