Code

cleanup: Remove some commented-out code.
[inkscape.git] / src / verbs.h
index 426b4295f0236b6b38d1118caa552fb3d33e06d1..521fdabaf5816df8aa70d40505bc015a047b22ce 100644 (file)
@@ -47,6 +47,12 @@ enum {
     SP_VERB_EDIT_COPY,
     SP_VERB_EDIT_PASTE,
     SP_VERB_EDIT_PASTE_STYLE,
+    SP_VERB_EDIT_PASTE_SIZE,
+    SP_VERB_EDIT_PASTE_SIZE_X,
+    SP_VERB_EDIT_PASTE_SIZE_Y,
+    SP_VERB_EDIT_PASTE_SIZE_SEPARATELY,
+    SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_X,
+    SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_Y,
     SP_VERB_EDIT_PASTE_IN_PLACE,
     SP_VERB_EDIT_DELETE,
     SP_VERB_EDIT_DUPLICATE,
@@ -200,6 +206,7 @@ enum {
        SP_VERB_DIALOG_WHITEBOARD_DISCONNECT_FROM_SERVER,
 #endif
     SP_VERB_DIALOG_INPUT,
+    SP_VERB_DIALOG_EXTENSIONEDITOR,
     /* Help */
     SP_VERB_HELP_KEYS,
     SP_VERB_HELP_ABOUT_EXTENSIONS,
@@ -298,6 +305,11 @@ public:
     /** \brief Accessor to get the internal variable. */
     gchar const * get_name (void) { return _name; }
 
+    /** \brief Set the name after initialization. */
+    gchar const * set_name (gchar const * name) { _name = name; return _name; }
+    /** \brief Set the tooltip after initialization. */
+    gchar const * set_tip (gchar const * tip) { _tip = tip; return _tip; }
+
 protected:
     SPAction * make_action_helper (Inkscape::UI::View::View * view, SPActionEventVector * vector, void * in_pntr = NULL);
     virtual SPAction * make_action (Inkscape::UI::View::View * view);