Code

Tweaked smaller size to be 3/4ths the menu size
[inkscape.git] / src / verbs.h
index 890f3ffec3e521567003db0e7228a1997ec4b961..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,
@@ -115,6 +121,10 @@ enum {
     SP_VERB_OBJECT_FLOWTEXT_TO_TEXT,
     SP_VERB_OBJECT_FLIP_HORIZONTAL,
     SP_VERB_OBJECT_FLIP_VERTICAL,
+    SP_VERB_OBJECT_SET_MASK,
+    SP_VERB_OBJECT_UNSET_MASK,
+    SP_VERB_OBJECT_SET_CLIPPATH,
+    SP_VERB_OBJECT_UNSET_CLIPPATH,
     /* Tools */
     SP_VERB_CONTEXT_SELECT,
     SP_VERB_CONTEXT_NODE,
@@ -196,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,
@@ -291,6 +302,13 @@ public:
     unsigned int get_code (void) { return _code; }
     /** \brief Accessor to get the internal variable. */
     gchar const * get_id (void) { return _id; }
+    /** \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);