Code

r10983@tres: ted | 2006-02-19 00:12:15 -0800
[inkscape.git] / src / ui / dialog / scriptdialog.h
1 #ifndef __SCRIPTDIALOG_H__
2 #define __SCRIPTDIALOG_H__
3 /*
4  * This dialog is for launching scripts whose main purpose if
5  * the scripting of Inkscape itself.
6  *
7  * Authors:
8  *   Bob Jamison
9  *   Other dudes from The Inkscape Organization
10  *
11  * Copyright (C) 2004, 2005 Authors
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
17 #include "dialog.h"
18 #include "verbs.h"
20 namespace Inkscape {
21 namespace UI {
22 namespace Dialog {
25 /**
26  * A script editor, loader, and executor
27  */
28 class ScriptDialog : public Dialog
29 {
31     public:
34     /**
35      * Constructor
36      */
37     ScriptDialog() : Dialog ("dialogs.script", SP_VERB_DIALOG_SCRIPT)
38         {}
41     /**
42      * Factory method
43      */
44     static ScriptDialog *create();
46     /**
47      * Destructor
48      */
49     virtual ~ScriptDialog() {};
54 }; // class ScriptDialog
57 } //namespace Dialog
58 } //namespace UI
59 } //namespace Inkscape
64 #endif /* __DEBUGDIALOG_H__ */