summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-03-29 05:40:18 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-03-29 05:40:18 +0000
commit9c6f646cdeefeeb223eefd28d3c597caf1acaea2 (patch)
tree7e8f49347455ea7ed5ee3b9dda160c3d91945b38 /src/verbs.cpp
parentr10950@tres: ted | 2006-02-16 08:36:49 -0800 (diff)
downloadinkscape-9c6f646cdeefeeb223eefd28d3c597caf1acaea2.tar.gz
inkscape-9c6f646cdeefeeb223eefd28d3c597caf1acaea2.zip
r10951@tres: ted | 2006-02-16 08:56:41 -0800
Adding an Extension Editor verb. (though I don't really like the name extension editor) (bzr r341)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index a700a3ad2..9cfe33dda 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1620,6 +1620,9 @@ DialogVerb::perform(SPAction *action, void *data, void *pdata)
case SP_VERB_DIALOG_INPUT:
sp_input_dialog();
break;
+ case SP_VERB_DIALOG_EXTENSIONEDITOR:
+ dt->_dlg_mgr->showDialog("ExtensionEditor");
+ break;
default:
break;
}
@@ -2231,6 +2234,8 @@ Verb *Verb::_base_verbs[] = {
#endif
new DialogVerb(SP_VERB_DIALOG_INPUT, "DialogInput", N_("_Input Devices..."),
N_("Configure extended input devices, such as a graphics tablet"), NULL),
+ new DialogVerb(SP_VERB_DIALOG_EXTENSIONEDITOR, "org.inkscape.dialogs.extensioneditor", N_("_Extensions..."),
+ N_("Query information about extensions"), NULL),
/* Help */
new HelpVerb(SP_VERB_HELP_KEYS, "HelpKeys", N_("_Keys and Mouse"),