Code

isolate the nodepath-or-knotholder unit into the new ShapeEditor class which handles...
[inkscape.git] / src / verbs.cpp
1 #define __SP_VERBS_C__
2 /**
3  * \file verbs.cpp
4  *
5  * \brief Actions for inkscape
6  *
7  * This file implements routines necessary to deal with verbs.  A verb
8  * is a numeric identifier used to retrieve standard SPActions for particular
9  * views.
10  */
12 /*
13  * Authors:
14  *   Lauris Kaplinski <lauris@kaplinski.com>
15  *   Ted Gould <ted@gould.cx>
16  *   MenTaLguY <mental@rydia.net>
17  *   David Turner <novalis@gnu.org>
18  *   bulia byak <buliabyak@users.sf.net>
19  *
20  * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl>
21  * Copyright (C) (date unspecified) Authors
22  * This code is in public domain.
23  */
28 #include <gtk/gtkstock.h>
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
34 #include "helper/action.h"
36 #include <gtkmm/messagedialog.h>
37 #include <gtkmm/filechooserdialog.h>
38 #include <gtkmm/stock.h>
40 #include "dialogs/text-edit.h"
41 #include "dialogs/xml-tree.h"
42 #include "dialogs/object-properties.h"
43 #include "dialogs/item-properties.h"
44 #include "dialogs/find.h"
45 #include "dialogs/layer-properties.h"
46 #include "dialogs/clonetiler.h"
47 #include "dialogs/iconpreview.h"
48 #include "dialogs/extensions.h"
49 #include "dialogs/swatches.h"
50 #include "dialogs/layers-panel.h"
51 #include "dialogs/input.h"
53 #ifdef WITH_INKBOARD
54 #include "jabber_whiteboard/session-manager.h"
55 #endif
57 #include "extension/effect.h"
59 #include "tools-switch.h"
60 #include "inkscape-private.h"
61 #include "file.h"
62 #include "help.h"
63 #include "document.h"
64 #include "desktop.h"
65 #include "message-stack.h"
66 #include "desktop-handles.h"
67 #include "selection-chemistry.h"
68 #include "path-chemistry.h"
69 #include "text-chemistry.h"
70 #include "ui/dialog/dialog-manager.h"
71 #include "ui/dialog/inkscape-preferences.h"
72 #include "interface.h"
73 #include "prefs-utils.h"
74 #include "splivarot.h"
75 #include "sp-namedview.h"
76 #include "sp-flowtext.h"
77 #include "layer-fns.h"
78 #include "node-context.h"
79 #include "gradient-context.h"
80 #include "shape-editor.h"
83 /**
84  * \brief Return the name without underscores and ellipsis, for use in dialog
85  * titles, etc. Allocated memory must be freed by caller.
86  */
87 gchar *
88 sp_action_get_title(SPAction const *action)
89 {
90     char const *src = action->name;
91     gchar *ret = g_new(gchar, strlen(src) + 1);
92     unsigned ri = 0;
94     for (unsigned si = 0 ; ; si++)  {
95         int const c = src[si];
96         if ( c != '_' && c != '.' ) {
97             ret[ri] = c;
98             ri++;
99             if (c == '\0') {
100                 return ret;
101             }
102         }
103     }
105 } // end of sp_action_get_title()
108 namespace Inkscape {
110 /// \todo !!!FIXME:: kill this, use DialogManager instead!!!
112 class PanelDialog : public Inkscape::UI::Dialog::Dialog
114 public:
115     PanelDialog(char const *prefs_path, int const verb_num) : Dialog(prefs_path, verb_num) {}
116 /*
117     virtual Glib::ustring getName() const {return "foo";}
118     virtual Glib::ustring getDesc() const {return "bar";}
119 */
120 };
122 /** \brief Utility function to get a panel displayed. */
123 static void show_panel( Inkscape::UI::Widget::Panel &panel, char const *prefs_path, int const verb_num )
125     Gtk::Container *container = panel.get_toplevel();
126     if ( &panel == container ) { // safe check?
127         //g_message("Creating new dialog to hold it");
128         PanelDialog *dia = new PanelDialog(prefs_path, verb_num);
129         Gtk::VBox *mainVBox = dia->get_vbox();
130         mainVBox->pack_start(panel);
131         dia->show_all_children();
132         dia->present();
133         dia->read_geometry();
134     } else {
135         Gtk::Dialog *dia = dynamic_cast<Gtk::Dialog*>(container);
136         if ( dia ) {
137             //g_message("Found an existing dialog");
138             dia->present();
139         } else {
140             g_message("Failed to find an existing dialog");
141         }
142     }
145 /** \brief A class to encompass all of the verbs which deal with
146            file operations. */
147 class FileVerb : public Verb {
148 private:
149     static void perform(SPAction *action, void *mydata, void *otherdata);
150     static SPActionEventVector vector;
151 protected:
152     virtual SPAction *make_action(Inkscape::UI::View::View *view);
153 public:
154     /** \brief Use the Verb initializer with the same parameters. */
155     FileVerb(unsigned int const code,
156              gchar const *id,
157              gchar const *name,
158              gchar const *tip,
159              gchar const *image) :
160         Verb(code, id, name, tip, image)
161     { }
162 }; /* FileVerb class */
164 /** \brief A class to encompass all of the verbs which deal with
165            edit operations. */
166 class EditVerb : public Verb {
167 private:
168     static void perform(SPAction *action, void *mydata, void *otherdata);
169     static SPActionEventVector vector;
170 protected:
171     virtual SPAction *make_action(Inkscape::UI::View::View *view);
172 public:
173     /** \brief Use the Verb initializer with the same parameters. */
174     EditVerb(unsigned int const code,
175              gchar const *id,
176              gchar const *name,
177              gchar const *tip,
178              gchar const *image) :
179         Verb(code, id, name, tip, image)
180     { }
181 }; /* EditVerb class */
183 /** \brief A class to encompass all of the verbs which deal with
184            selection operations. */
185 class SelectionVerb : public Verb {
186 private:
187     static void perform(SPAction *action, void *mydata, void *otherdata);
188     static SPActionEventVector vector;
189 protected:
190     virtual SPAction *make_action(Inkscape::UI::View::View *view);
191 public:
192     /** \brief Use the Verb initializer with the same parameters. */
193     SelectionVerb(unsigned int const code,
194                   gchar const *id,
195                   gchar const *name,
196                   gchar const *tip,
197                   gchar const *image) :
198         Verb(code, id, name, tip, image)
199     { }
200 }; /* SelectionVerb class */
202 /** \brief A class to encompass all of the verbs which deal with
203            layer operations. */
204 class LayerVerb : public Verb {
205 private:
206     static void perform(SPAction *action, void *mydata, void *otherdata);
207     static SPActionEventVector vector;
208 protected:
209     virtual SPAction *make_action(Inkscape::UI::View::View *view);
210 public:
211     /** \brief Use the Verb initializer with the same parameters. */
212     LayerVerb(unsigned int const code,
213               gchar const *id,
214               gchar const *name,
215               gchar const *tip,
216               gchar const *image) :
217         Verb(code, id, name, tip, image)
218     { }
219 }; /* LayerVerb class */
221 /** \brief A class to encompass all of the verbs which deal with
222            operations related to objects. */
223 class ObjectVerb : public Verb {
224 private:
225     static void perform(SPAction *action, void *mydata, void *otherdata);
226     static SPActionEventVector vector;
227 protected:
228     virtual SPAction *make_action(Inkscape::UI::View::View *view);
229 public:
230     /** \brief Use the Verb initializer with the same parameters. */
231     ObjectVerb(unsigned int const code,
232                gchar const *id,
233                gchar const *name,
234                gchar const *tip,
235                gchar const *image) :
236         Verb(code, id, name, tip, image)
237     { }
238 }; /* ObjectVerb class */
240 /** \brief A class to encompass all of the verbs which deal with
241            operations relative to context. */
242 class ContextVerb : public Verb {
243 private:
244     static void perform(SPAction *action, void *mydata, void *otherdata);
245     static SPActionEventVector vector;
246 protected:
247     virtual SPAction *make_action(Inkscape::UI::View::View *view);
248 public:
249     /** \brief Use the Verb initializer with the same parameters. */
250     ContextVerb(unsigned int const code,
251                 gchar const *id,
252                 gchar const *name,
253                 gchar const *tip,
254                 gchar const *image) :
255         Verb(code, id, name, tip, image)
256     { }
257 }; /* ContextVerb class */
259 /** \brief A class to encompass all of the verbs which deal with
260            zoom operations. */
261 class ZoomVerb : public Verb {
262 private:
263     static void perform(SPAction *action, void *mydata, void *otherdata);
264     static SPActionEventVector vector;
265 protected:
266     virtual SPAction *make_action(Inkscape::UI::View::View *view);
267 public:
268     /** \brief Use the Verb initializer with the same parameters. */
269     ZoomVerb(unsigned int const code,
270              gchar const *id,
271              gchar const *name,
272              gchar const *tip,
273              gchar const *image) :
274         Verb(code, id, name, tip, image)
275     { }
276 }; /* ZoomVerb class */
279 /** \brief A class to encompass all of the verbs which deal with
280            dialog operations. */
281 class DialogVerb : public Verb {
282 private:
283     static void perform(SPAction *action, void *mydata, void *otherdata);
284     static SPActionEventVector vector;
285 protected:
286     virtual SPAction *make_action(Inkscape::UI::View::View *view);
287 public:
288     /** \brief Use the Verb initializer with the same parameters. */
289     DialogVerb(unsigned int const code,
290                gchar const *id,
291                gchar const *name,
292                gchar const *tip,
293                gchar const *image) :
294         Verb(code, id, name, tip, image)
295     { }
296 }; /* DialogVerb class */
298 /** \brief A class to encompass all of the verbs which deal with
299            help operations. */
300 class HelpVerb : public Verb {
301 private:
302     static void perform(SPAction *action, void *mydata, void *otherdata);
303     static SPActionEventVector vector;
304 protected:
305     virtual SPAction *make_action(Inkscape::UI::View::View *view);
306 public:
307     /** \brief Use the Verb initializer with the same parameters. */
308     HelpVerb(unsigned int const code,
309              gchar const *id,
310              gchar const *name,
311              gchar const *tip,
312              gchar const *image) :
313         Verb(code, id, name, tip, image)
314     { }
315 }; /* HelpVerb class */
317 /** \brief A class to encompass all of the verbs which deal with
318            tutorial operations. */
319 class TutorialVerb : public Verb {
320 private:
321     static void perform(SPAction *action, void *mydata, void *otherdata);
322     static SPActionEventVector vector;
323 protected:
324     virtual SPAction *make_action(Inkscape::UI::View::View *view);
325 public:
326     /** \brief Use the Verb initializer with the same parameters. */
327     TutorialVerb(unsigned int const code,
328                  gchar const *id,
329                  gchar const *name,
330                  gchar const *tip,
331                  gchar const *image) :
332         Verb(code, id, name, tip, image)
333     { }
334 }; /* TutorialVerb class */
336 /** \brief A class to encompass all of the verbs which deal with
337            text operations. */
338 class TextVerb : public Verb {
339 private:
340     static void perform(SPAction *action, void *mydata, void *otherdata);
341     static SPActionEventVector vector;
342 protected:
343     virtual SPAction *make_action(Inkscape::UI::View::View *view);
344 public:
345     /** \brief Use the Verb initializer with the same parameters. */
346     TextVerb(unsigned int const code,
347               gchar const *id,
348               gchar const *name,
349               gchar const *tip,
350               gchar const *image) :
351         Verb(code, id, name, tip, image)
352     { }
353 }; //TextVerb : public Verb 
355 Verb::VerbTable Verb::_verbs;
356 Verb::VerbIDTable Verb::_verb_ids;
358 /** \brief  Create a verb without a code.
360     This function calls the other constructor for all of the parameters,
361     but generates the code.  It is important to READ THE OTHER DOCUMENTATION
362     it has important details in it.  To generate the code a static is
363     used which starts at the last static value: \c SP_VERB_LAST.  For
364     each call it is incremented.  The list of allocated verbs is kept
365     in the \c _verbs hashtable which is indexed by the \c code.
366 */
367 Verb::Verb(gchar const *id, gchar const *name, gchar const *tip, gchar const *image) :
368     _actions(NULL), _id(id), _name(name), _tip(tip), _image(image)
370     static int count = SP_VERB_LAST;
372     count++;
373     _code = count;
374     _verbs.insert(VerbTable::value_type(count, this));
375     _verb_ids.insert(VerbIDTable::value_type(_id, this));
377     return;
380 /** \brief  Destroy a verb.
382       The only allocated variable is the _actions variable.  If it has
383     been allocated it is deleted.
384 */
385 Verb::~Verb(void)
387     /// \todo all the actions need to be cleaned up first.
388     if (_actions != NULL) {
389         delete _actions;
390     }
392     return;
395 /** \brief  Verbs are no good without actions.  This is a place holder
396             for a function that every subclass should write.  Most
397             can be written using \c make_action_helper.
398     \param  view  Which view the action should be created for.
399     \return NULL to represent error (this function shouldn't ever be called)
400 */
401 SPAction *
402 Verb::make_action(Inkscape::UI::View::View *view)
404     //std::cout << "make_action" << std::endl;
405     return NULL;
408 /** \brief  Create an action for a \c FileVerb
409     \param  view  Which view the action should be created for
410     \return The built action.
412     Calls \c make_action_helper with the \c vector.
413 */
414 SPAction *
415 FileVerb::make_action(Inkscape::UI::View::View *view)
417     //std::cout << "fileverb: make_action: " << &vector << std::endl;
418     return make_action_helper(view, &vector);
421 /** \brief  Create an action for a \c EditVerb
422     \param  view  Which view the action should be created for
423     \return The built action.
425     Calls \c make_action_helper with the \c vector.
426 */
427 SPAction *
428 EditVerb::make_action(Inkscape::UI::View::View *view)
430     //std::cout << "editverb: make_action: " << &vector << std::endl;
431     return make_action_helper(view, &vector);
434 /** \brief  Create an action for a \c SelectionVerb
435     \param  view  Which view the action should be created for
436     \return The built action.
438     Calls \c make_action_helper with the \c vector.
439 */
440 SPAction *
441 SelectionVerb::make_action(Inkscape::UI::View::View *view)
443     return make_action_helper(view, &vector);
446 /** \brief  Create an action for a \c LayerVerb
447     \param  view  Which view the action should be created for
448     \return The built action.
450     Calls \c make_action_helper with the \c vector.
451 */
452 SPAction *
453 LayerVerb::make_action(Inkscape::UI::View::View *view)
455     return make_action_helper(view, &vector);
458 /** \brief  Create an action for a \c ObjectVerb
459     \param  view  Which view the action should be created for
460     \return The built action.
462     Calls \c make_action_helper with the \c vector.
463 */
464 SPAction *
465 ObjectVerb::make_action(Inkscape::UI::View::View *view)
467     return make_action_helper(view, &vector);
470 /** \brief  Create an action for a \c ContextVerb
471     \param  view  Which view the action should be created for
472     \return The built action.
474     Calls \c make_action_helper with the \c vector.
475 */
476 SPAction *
477 ContextVerb::make_action(Inkscape::UI::View::View *view)
479     return make_action_helper(view, &vector);
482 /** \brief  Create an action for a \c ZoomVerb
483     \param  view  Which view the action should be created for
484     \return The built action.
486     Calls \c make_action_helper with the \c vector.
487 */
488 SPAction *
489 ZoomVerb::make_action(Inkscape::UI::View::View *view)
491     return make_action_helper(view, &vector);
494 /** \brief  Create an action for a \c DialogVerb
495     \param  view  Which view the action should be created for
496     \return The built action.
498     Calls \c make_action_helper with the \c vector.
499 */
500 SPAction *
501 DialogVerb::make_action(Inkscape::UI::View::View *view)
503     return make_action_helper(view, &vector);
506 /** \brief  Create an action for a \c HelpVerb
507     \param  view  Which view the action should be created for
508     \return The built action.
510     Calls \c make_action_helper with the \c vector.
511 */
512 SPAction *
513 HelpVerb::make_action(Inkscape::UI::View::View *view)
515     return make_action_helper(view, &vector);
518 /** \brief  Create an action for a \c TutorialVerb
519     \param  view  Which view the action should be created for
520     \return The built action.
522     Calls \c make_action_helper with the \c vector.
523 */
524 SPAction *
525 TutorialVerb::make_action(Inkscape::UI::View::View *view)
527     return make_action_helper(view, &vector);
530 /** \brief  Create an action for a \c TextVerb
531     \param  view  Which view the action should be created for
532     \return The built action.
534     Calls \c make_action_helper with the \c vector.
535 */
536 SPAction *
537 TextVerb::make_action(Inkscape::UI::View::View *view)
539     return make_action_helper(view, &vector);
542 /** \brief A quick little convience function to make building actions
543            a little bit easier.
544     \param  view    Which view the action should be created for.
545     \param  vector  The function vector for the verb.
546     \return The created action.
548     This function does a couple of things.  The most obvious is that
549     it allocates and creates the action.  When it does this it
550     translates the \c _name and \c _tip variables.  This allows them
551     to be staticly allocated easily, and get translated in the end.  Then,
552     if the action gets crated, a listener is added to the action with
553     the vector that is passed in.
554 */
555 SPAction *
556 Verb::make_action_helper(Inkscape::UI::View::View *view, SPActionEventVector *vector, void *in_pntr)
558     SPAction *action;
560     //std::cout << "Adding action: " << _code << std::endl;
561     action = sp_action_new(view, _id, _(_name),
562                            _(_tip), _image, this);
564     if (action != NULL) {
565         if (in_pntr == NULL) {
566             nr_active_object_add_listener(
567                 (NRActiveObject *) action,
568                 (NRObjectEventVector *) vector,
569                 sizeof(SPActionEventVector),
570                 reinterpret_cast<void *>(_code)
571             );
572         } else {
573             nr_active_object_add_listener(
574                 (NRActiveObject *) action,
575                 (NRObjectEventVector *) vector,
576                 sizeof(SPActionEventVector),
577                 in_pntr
578             );
579         }
580     }
582     return action;
585 /** \brief  A function to get an action if it exists, or otherwise to
586             build it.
587     \param  view  The view which this action would relate to
588     \return The action, or NULL if there is an error.
590     This function will get the action for a given view for this verb.  It
591     will create the verb if it can't be found in the ActionTable.  Also,
592     if the \c ActionTable has not been created, it gets created by this
593     function.
595     If the action is created, it's sensitivity must be determined.  The
596     default for a new action is that it is sensitive.  If the value in
597     \c _default_sensitive is \c false, then the sensitivity must be
598     removed.  Also, if the view being created is based on the same
599     document as a view already created, the sensitivity should be the
600     same as views on that document.  A view with the same document is
601     looked for, and the sensitivity is matched.  Unfortunately, this is
602     currently a linear search.
603 */
604 SPAction *
605 Verb::get_action(Inkscape::UI::View::View *view)
607     SPAction *action = NULL;
609     if ( _actions == NULL ) {
610         _actions = new ActionTable;
611     }
612     ActionTable::iterator action_found = _actions->find(view);
614     if (action_found != _actions->end()) {
615         action = action_found->second;
616     } else {
617         action = this->make_action(view);
619         // if (action == NULL) printf("Hmm, NULL in %s\n", _name);
620         if (action == NULL) printf("Hmm, NULL in %s\n", _name);
621         if (!_default_sensitive) {
622             sp_action_set_sensitive(action, 0);
623         } else {
624             for (ActionTable::iterator cur_action = _actions->begin();
625                  cur_action != _actions->end() && view != NULL;
626                  cur_action++) {
627                 if (cur_action->first != NULL && cur_action->first->doc() == view->doc()) {
628                     sp_action_set_sensitive(action, cur_action->second->sensitive);
629                     break;
630                 }
631             }
632         }
634         _actions->insert(ActionTable::value_type(view, action));
635     }
637     return action;
640 void
641 Verb::sensitive(SPDocument *in_doc, bool in_sensitive)
643     // printf("Setting sensitivity of \"%s\" to %d\n", _name, in_sensitive);
644     if (_actions != NULL) {
645         for (ActionTable::iterator cur_action = _actions->begin();
646              cur_action != _actions->end();
647              cur_action++) {
648                         if (in_doc == NULL || (cur_action->first != NULL && cur_action->first->doc() == in_doc)) {
649                 sp_action_set_sensitive(cur_action->second, in_sensitive ? 1 : 0);
650             }
651         }
652     }
654     if (in_doc == NULL) {
655         _default_sensitive = in_sensitive;
656     }
658     return;
662 void
663 Verb::name(SPDocument *in_doc, Glib::ustring in_name)
665     if (_actions != NULL) {
666         for (ActionTable::iterator cur_action = _actions->begin();
667              cur_action != _actions->end();
668              cur_action++) {
669                         if (in_doc == NULL || (cur_action->first != NULL && cur_action->first->doc() == in_doc)) {
670                             sp_action_set_name(cur_action->second, in_name);
671             }
672         }
673     }
676 /** \brief  A function to remove the action associated with a view.
677     \param  view  Which view's actions should be removed.
678     \return None
680     This function looks for the action in \c _actions.  If it is
681     found then it is unreferenced and the entry in the action
682     table is erased.
683 */
684 void
685 Verb::delete_view(Inkscape::UI::View::View *view)
687     if (_actions == NULL) return;
688     if (_actions->empty()) return;
690 #if 0
691     static int count = 0;
692     std::cout << count++ << std::endl;
693 #endif
695     ActionTable::iterator action_found = _actions->find(view);
697     if (action_found != _actions->end()) {
698         SPAction *action = action_found->second;
699         nr_object_unref(NR_OBJECT(action));
700         _actions->erase(action_found);
701     }
703     return;
706 /** \brief  A function to delete a view from all verbs
707     \param  view  Which view's actions should be removed.
708     \return None
710     This function first looks through _base_verbs and deteles
711     the view from all of those views.  If \c _verbs is not empty
712     then all of the entries in that table have all of the views
713     deleted also.
714 */
715 void
716 Verb::delete_all_view(Inkscape::UI::View::View *view)
718     for (int i = 0; i <= SP_VERB_LAST; i++) {
719         if (_base_verbs[i])
720           _base_verbs[i]->delete_view(view);
721     }
723     if (!_verbs.empty()) {
724         for (VerbTable::iterator thisverb = _verbs.begin();
725              thisverb != _verbs.end(); thisverb++) {
726             Inkscape::Verb *verbpntr = thisverb->second;
727             // std::cout << "Delete In Verb: " << verbpntr->_name << std::endl;
728             verbpntr->delete_view(view);
729         }
730     }
732     return;
735 /** \brief  A function to turn a \c code into a Verb for dynamically
736             created Verbs.
737     \param  code  What code is being looked for
738     \return The found Verb of NULL if none is found.
740     This function basically just looks through the \c _verbs hash
741     table.  STL does all the work.
742 */
743 Verb *
744 Verb::get_search(unsigned int code)
746     Verb *verb = NULL;
747     VerbTable::iterator verb_found = _verbs.find(code);
749     if (verb_found != _verbs.end()) {
750         verb = verb_found->second;
751     }
753     return verb;
756 /** \brief  Find a Verb using it's ID
757     \param  id  Which id to search for
759     This function uses the \c _verb_ids has table to find the
760     verb by it's id.  Should be much faster than previous
761     implementations.
762 */
763 Verb *
764 Verb::getbyid(gchar const *id)
766     Verb *verb = NULL;
767     VerbIDTable::iterator verb_found = _verb_ids.find(id);
769     if (verb_found != _verb_ids.end()) {
770         verb = verb_found->second;
771     }
773     if (verb == NULL)
774         printf("Unable to find: %s\n", id);
776     return verb;
779 /** \brief  Decode the verb code and take appropriate action */
780 void
781 FileVerb::perform(SPAction *action, void *data, void *pdata)
783 #if 0
784     /* These aren't used, but are here to remind people not to use
785        the CURRENT_DOCUMENT macros unless they really have to. */
786     Inkscape::UI::View::View *current_view = sp_action_get_view(action);
787     SPDocument *current_document = current_view->doc();
788 #endif
789     switch ((long) data) {
790         case SP_VERB_FILE_NEW:
791             sp_file_new_default();
792             break;
793         case SP_VERB_FILE_OPEN:
794             sp_file_open_dialog(NULL, NULL);
795             break;
796         case SP_VERB_FILE_REVERT:
797             sp_file_revert_dialog();
798             break;
799         case SP_VERB_FILE_SAVE:
800             sp_file_save(NULL, NULL);
801             break;
802         case SP_VERB_FILE_SAVE_AS:
803             sp_file_save_as(NULL, NULL);
804             break;
805         case SP_VERB_FILE_SAVE_A_COPY:
806             sp_file_save_a_copy(NULL, NULL);
807             break;
808         case SP_VERB_FILE_PRINT:
809             sp_file_print();
810             break;
811         case SP_VERB_FILE_VACUUM:
812             sp_file_vacuum();
813             break;
814         case SP_VERB_FILE_PRINT_DIRECT:
815             sp_file_print_direct();
816             break;
817         case SP_VERB_FILE_PRINT_PREVIEW:
818             sp_file_print_preview(NULL, NULL);
819             break;
820         case SP_VERB_FILE_IMPORT:
821             sp_file_import(NULL);
822             break;
823         case SP_VERB_FILE_EXPORT:
824             sp_file_export_dialog(NULL);
825             break;
826         case SP_VERB_FILE_NEXT_DESKTOP:
827             inkscape_switch_desktops_next();
828             break;
829         case SP_VERB_FILE_PREV_DESKTOP:
830             inkscape_switch_desktops_prev();
831             break;
832         case SP_VERB_FILE_CLOSE_VIEW:
833             sp_ui_close_view(NULL);
834             break;
835         case SP_VERB_FILE_QUIT:
836             sp_file_exit();
837             break;
838         default:
839             break;
840     }
842 } // end of sp_verb_action_file_perform()
844 /** \brief  Decode the verb code and take appropriate action */
845 void
846 EditVerb::perform(SPAction *action, void *data, void *pdata)
848     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
849     if (!dt)
850         return;
851     SPEventContext *ec = dt->event_context;
853     switch (reinterpret_cast<std::size_t>(data)) {
854         case SP_VERB_EDIT_UNDO:
855             sp_undo(dt, sp_desktop_document(dt));
856             break;
857         case SP_VERB_EDIT_REDO:
858             sp_redo(dt, sp_desktop_document(dt));
859             break;
860         case SP_VERB_EDIT_CUT:
861             sp_selection_cut();
862             break;
863         case SP_VERB_EDIT_COPY:
864             sp_selection_copy();
865             break;
866         case SP_VERB_EDIT_PASTE:
867             sp_selection_paste(false);
868             break;
869         case SP_VERB_EDIT_PASTE_STYLE:
870             sp_selection_paste_style();
871             break;
872         case SP_VERB_EDIT_PASTE_SIZE:
873             sp_selection_paste_size(true, true);
874             break;
875         case SP_VERB_EDIT_PASTE_SIZE_X:
876             sp_selection_paste_size(true, false);
877             break;
878         case SP_VERB_EDIT_PASTE_SIZE_Y:
879             sp_selection_paste_size(false, true);
880             break;
881         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY:
882             sp_selection_paste_size_separately(true, true);
883             break;
884         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_X:
885             sp_selection_paste_size_separately(true, false);
886             break;
887         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_Y:
888             sp_selection_paste_size_separately(false, true);
889             break;
890         case SP_VERB_EDIT_PASTE_IN_PLACE:
891             sp_selection_paste(true);
892             break;
893         case SP_VERB_EDIT_DELETE:
894             sp_selection_delete();
895             break;
896         case SP_VERB_EDIT_DUPLICATE:
897             sp_selection_duplicate();
898             break;
899         case SP_VERB_EDIT_CLONE:
900             sp_selection_clone();
901             break;
902         case SP_VERB_EDIT_UNLINK_CLONE:
903             sp_selection_unlink();
904             break;
905         case SP_VERB_EDIT_CLONE_ORIGINAL:
906             sp_select_clone_original();
907             break;
908         case SP_VERB_EDIT_TILE:
909             sp_selection_tile();
910             break;
911         case SP_VERB_EDIT_UNTILE:
912             sp_selection_untile();
913             break;
914         case SP_VERB_EDIT_CLEAR_ALL:
915             sp_edit_clear_all();
916             break;
917         case SP_VERB_EDIT_SELECT_ALL:
918             if (tools_isactive(dt, TOOLS_NODES)) {
919                 SP_NODE_CONTEXT(ec)->shape_editor->select_all_from_subpath(false);
920             } else {
921                 sp_edit_select_all();
922             }
923             break;
924         case SP_VERB_EDIT_INVERT:
925             if (tools_isactive(dt, TOOLS_NODES)) {
926                 SP_NODE_CONTEXT(ec)->shape_editor->select_all_from_subpath(true);
927             } else {
928                 sp_edit_invert();
929             }
930             break;
931         case SP_VERB_EDIT_SELECT_ALL_IN_ALL_LAYERS:
932             if (tools_isactive(dt, TOOLS_NODES)) {
933                 SP_NODE_CONTEXT(ec)->shape_editor->select_all(false);
934             } else {
935                 sp_edit_select_all_in_all_layers();
936             }
937             break;
938         case SP_VERB_EDIT_INVERT_IN_ALL_LAYERS:
939             if (tools_isactive(dt, TOOLS_NODES)) {
940                 SP_NODE_CONTEXT(ec)->shape_editor->select_all(true);
941             } else {
942                 sp_edit_invert_in_all_layers();
943             }
944             break;
946         case SP_VERB_EDIT_SELECT_NEXT: 
947             if (tools_isactive(dt, TOOLS_NODES)) {
948                 SP_NODE_CONTEXT(ec)->shape_editor->select_next();
949             } else if (tools_isactive(dt, TOOLS_GRADIENT)) {
950                 sp_gradient_context_select_next (ec);
951             } else {
952                 sp_selection_item_next();
953             }
954             break;
955         case SP_VERB_EDIT_SELECT_PREV: 
956             if (tools_isactive(dt, TOOLS_NODES)) {
957                 SP_NODE_CONTEXT(ec)->shape_editor->select_prev();
958             } else if (tools_isactive(dt, TOOLS_GRADIENT)) {
959                 sp_gradient_context_select_prev (ec);
960             } else {
961                 sp_selection_item_prev();
962             }
963             break;
965         case SP_VERB_EDIT_DESELECT:
966             if (tools_isactive(dt, TOOLS_NODES)) {
967                 SP_NODE_CONTEXT(ec)->shape_editor->deselect();
968             } else {
969                 sp_desktop_selection(dt)->clear();
970             }
971             break;
972         default:
973             break;
974     }
976 } // end of sp_verb_action_edit_perform()
978 /** \brief  Decode the verb code and take appropriate action */
979 void
980 SelectionVerb::perform(SPAction *action, void *data, void *pdata)
982     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
984     if (!dt)
985         return;
987     switch (reinterpret_cast<std::size_t>(data)) {
988         case SP_VERB_SELECTION_TO_FRONT:
989             sp_selection_raise_to_top();
990             break;
991         case SP_VERB_SELECTION_TO_BACK:
992             sp_selection_lower_to_bottom();
993             break;
994         case SP_VERB_SELECTION_RAISE:
995             sp_selection_raise();
996             break;
997         case SP_VERB_SELECTION_LOWER:
998             sp_selection_lower();
999             break;
1000         case SP_VERB_SELECTION_GROUP:
1001             sp_selection_group();
1002             break;
1003         case SP_VERB_SELECTION_UNGROUP:
1004             sp_selection_ungroup();
1005             break;
1007         case SP_VERB_SELECTION_TEXTTOPATH:
1008             text_put_on_path();
1009             break;
1010         case SP_VERB_SELECTION_TEXTFROMPATH:
1011             text_remove_from_path();
1012             break;
1013         case SP_VERB_SELECTION_REMOVE_KERNS:
1014             text_remove_all_kerns();
1015             break;
1017         case SP_VERB_SELECTION_UNION:
1018             sp_selected_path_union();
1019             break;
1020         case SP_VERB_SELECTION_INTERSECT:
1021             sp_selected_path_intersect();
1022             break;
1023         case SP_VERB_SELECTION_DIFF:
1024             sp_selected_path_diff();
1025             break;
1026         case SP_VERB_SELECTION_SYMDIFF:
1027             sp_selected_path_symdiff();
1028             break;
1030         case SP_VERB_SELECTION_CUT:
1031             sp_selected_path_cut();
1032             break;
1033         case SP_VERB_SELECTION_SLICE:
1034             sp_selected_path_slice();
1035             break;
1037         case SP_VERB_SELECTION_OFFSET:
1038             sp_selected_path_offset();
1039             break;
1040         case SP_VERB_SELECTION_OFFSET_SCREEN:
1041             sp_selected_path_offset_screen(1);
1042             break;
1043         case SP_VERB_SELECTION_OFFSET_SCREEN_10:
1044             sp_selected_path_offset_screen(10);
1045             break;
1046         case SP_VERB_SELECTION_INSET:
1047             sp_selected_path_inset();
1048             break;
1049         case SP_VERB_SELECTION_INSET_SCREEN:
1050             sp_selected_path_inset_screen(1);
1051             break;
1052         case SP_VERB_SELECTION_INSET_SCREEN_10:
1053             sp_selected_path_inset_screen(10);
1054             break;
1055         case SP_VERB_SELECTION_DYNAMIC_OFFSET:
1056             sp_selected_path_create_offset_object_zero();
1057             tools_switch_current(TOOLS_NODES);
1058             break;
1059         case SP_VERB_SELECTION_LINKED_OFFSET:
1060             sp_selected_path_create_updating_offset_object_zero();
1061             tools_switch_current(TOOLS_NODES);
1062             break;
1064         case SP_VERB_SELECTION_OUTLINE:
1065             sp_selected_path_outline();
1066             break;
1067         case SP_VERB_SELECTION_SIMPLIFY:
1068             sp_selected_path_simplify();
1069             break;
1070         case SP_VERB_SELECTION_REVERSE:
1071             sp_selected_path_reverse();
1072             break;
1073         case SP_VERB_SELECTION_TRACE:
1074             dt->_dlg_mgr->showDialog("Trace");
1075             break;
1076         case SP_VERB_SELECTION_CREATE_BITMAP:
1077             sp_selection_create_bitmap_copy();
1078             break;
1080         case SP_VERB_SELECTION_COMBINE:
1081             sp_selected_path_combine();
1082             break;
1083         case SP_VERB_SELECTION_BREAK_APART:
1084             sp_selected_path_break_apart();
1085             break;
1086         case SP_VERB_SELECTION_GRIDTILE:
1087             dt->_dlg_mgr->showDialog("TileDialog");
1088             break;
1089         default:
1090             break;
1091     }
1093 } // end of sp_verb_action_selection_perform()
1095 /** \brief  Decode the verb code and take appropriate action */
1096 void
1097 LayerVerb::perform(SPAction *action, void *data, void *pdata)
1099     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1100     unsigned int verb = reinterpret_cast<std::size_t>(data);
1102     if ( !dt || !dt->currentLayer() ) {
1103         return;
1104     }
1106     switch (verb) {
1107         case SP_VERB_LAYER_NEW: {
1108             Inkscape::UI::Dialogs::LayerPropertiesDialog::showCreate(dt, dt->currentLayer());
1109             break;
1110         }
1111         case SP_VERB_LAYER_RENAME: {
1112             Inkscape::UI::Dialogs::LayerPropertiesDialog::showRename(dt, dt->currentLayer());
1113             break;
1114         }
1115         case SP_VERB_LAYER_NEXT: {
1116             SPObject *next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer());
1117             if (next) {
1118                 dt->setCurrentLayer(next);
1119                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_NEXT, 
1120                                  _("Move to next layer"));
1121                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Moved to next layer."));
1122             } else {
1123                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot move past last layer."));
1124             }
1125             break;
1126         }
1127         case SP_VERB_LAYER_PREV: {
1128             SPObject *prev=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer());
1129             if (prev) {
1130                 dt->setCurrentLayer(prev);
1131                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_PREV, 
1132                                  _("Move to previous layer"));
1133                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Moved to previous layer."));
1134             } else {
1135                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot move past first layer."));
1136             }
1137             break;
1138         }
1139         case SP_VERB_LAYER_MOVE_TO_NEXT: {
1140             sp_selection_to_next_layer();
1141             break;
1142         }
1143         case SP_VERB_LAYER_MOVE_TO_PREV: {
1144             sp_selection_to_prev_layer();
1145             break;
1146         }
1147         case SP_VERB_LAYER_TO_TOP:
1148         case SP_VERB_LAYER_TO_BOTTOM:
1149         case SP_VERB_LAYER_RAISE:
1150         case SP_VERB_LAYER_LOWER: {
1151             if ( dt->currentLayer() == dt->currentRoot() ) {
1152                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1153                 return;
1154             }
1156             SPItem *layer=SP_ITEM(dt->currentLayer());
1157             g_return_if_fail(layer != NULL);
1159             SPObject *old_pos=SP_OBJECT_NEXT(layer);
1161             switch (verb) {
1162                 case SP_VERB_LAYER_TO_TOP:
1163                     layer->raiseToTop();
1164                     break;
1165                 case SP_VERB_LAYER_TO_BOTTOM:
1166                     layer->lowerToBottom();
1167                     break;
1168                 case SP_VERB_LAYER_RAISE:
1169                     layer->raiseOne();
1170                     break;
1171                 case SP_VERB_LAYER_LOWER:
1172                     layer->lowerOne();
1173                     break;
1174             }
1176             if ( SP_OBJECT_NEXT(layer) != old_pos ) {
1177                 char const *message = NULL;
1178                 Glib::ustring description = "";
1179                 switch (verb) {
1180                     case SP_VERB_LAYER_TO_TOP:
1181                         message = g_strdup_printf(_("Raised layer <b>%s</b>."), layer->defaultLabel());
1182                         description = _("Layer to top");
1183                         break;
1184                     case SP_VERB_LAYER_RAISE:
1185                         message = g_strdup_printf(_("Raised layer <b>%s</b>."), layer->defaultLabel());
1186                         description = _("Raise layer");
1187                         break;
1188                     case SP_VERB_LAYER_TO_BOTTOM:
1189                         message = g_strdup_printf(_("Lowered layer <b>%s</b>."), layer->defaultLabel());
1190                         description = _("Layer to bottom");
1191                         break;
1192                     case SP_VERB_LAYER_LOWER:
1193                         message = g_strdup_printf(_("Lowered layer <b>%s</b>."), layer->defaultLabel());
1194                         description = _("Lower layer");
1195                         break;
1196                 };
1197                 sp_document_done(sp_desktop_document(dt), verb, description);
1198                 if (message) {
1199                     dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, message);
1200                     g_free((void *) message);
1201                 }
1202             } else {
1203                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot move layer any further."));
1204             }
1206             break;
1207         }
1208         case SP_VERB_LAYER_DELETE: {
1209             if ( dt->currentLayer() != dt->currentRoot() ) {
1210                 sp_desktop_selection(dt)->clear();
1211                 SPObject *old_layer=dt->currentLayer();
1213                 sp_object_ref(old_layer, NULL);
1214                 SPObject *survivor=Inkscape::next_layer(dt->currentRoot(), old_layer);
1215                 if (!survivor) {
1216                     survivor = Inkscape::previous_layer(dt->currentRoot(), old_layer);
1217                 }
1219                 /* Deleting the old layer before switching layers is a hack to trigger the
1220                  * listeners of the deletion event (as happens when old_layer is deleted using the
1221                  * xml editor).  See
1222                  * http://sourceforge.net/tracker/index.php?func=detail&aid=1339397&group_id=93438&atid=604306
1223                  */
1224                 old_layer->deleteObject();
1225                 sp_object_unref(old_layer, NULL);
1226                 if (survivor) {
1227                     dt->setCurrentLayer(survivor);
1228                 }
1230                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_DELETE, 
1231                                  _("Delete layer"));
1233                 // TRANSLATORS: this means "The layer has been deleted."
1234                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Deleted layer."));
1235             } else {
1236                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1237             }
1238             break;
1239         }
1240     }
1242     return;
1243 } // end of sp_verb_action_layer_perform()
1245 /** \brief  Decode the verb code and take appropriate action */
1246 void
1247 ObjectVerb::perform( SPAction *action, void *data, void *pdata )
1249     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1250     if (!dt)
1251         return;
1253     SPEventContext *ec = dt->event_context;
1255     Inkscape::Selection *sel = sp_desktop_selection(dt);
1257     if (sel->isEmpty())
1258         return;
1260     NR::Point const center(sel->bounds().midpoint());
1262     switch (reinterpret_cast<std::size_t>(data)) {
1263         case SP_VERB_OBJECT_ROTATE_90_CW:
1264             sp_selection_rotate_90_cw();
1265             break;
1266         case SP_VERB_OBJECT_ROTATE_90_CCW:
1267             sp_selection_rotate_90_ccw();
1268             break;
1269         case SP_VERB_OBJECT_FLATTEN:
1270             sp_selection_remove_transform();
1271             break;
1272         case SP_VERB_OBJECT_TO_CURVE:
1273             sp_selected_path_to_curves();
1274             break;
1275         case SP_VERB_OBJECT_FLOW_TEXT:
1276             text_flow_into_shape();
1277             break;
1278         case SP_VERB_OBJECT_UNFLOW_TEXT:
1279             text_unflow();
1280             break;
1281         case SP_VERB_OBJECT_FLOWTEXT_TO_TEXT:
1282             flowtext_to_text();
1283             break;
1284         case SP_VERB_OBJECT_FLIP_HORIZONTAL:
1285             if (tools_isactive(dt, TOOLS_NODES)) {
1286                 SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::X);
1287             } else {
1288                 sp_selection_scale_relative(sel, center, NR::scale(-1.0, 1.0));
1289             }
1290             sp_document_done(sp_desktop_document(dt), SP_VERB_OBJECT_FLIP_HORIZONTAL,
1291                              _("Flip horizontally"));
1292             break;
1293         case SP_VERB_OBJECT_FLIP_VERTICAL:
1294             if (tools_isactive(dt, TOOLS_NODES)) {
1295                 SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::Y);
1296             } else {
1297                 sp_selection_scale_relative(sel, center, NR::scale(1.0, -1.0));
1298             }
1299             sp_document_done(sp_desktop_document(dt), SP_VERB_OBJECT_FLIP_VERTICAL,
1300                              _("Flip vertically"));
1301             break;
1302         case SP_VERB_OBJECT_SET_MASK:
1303             sp_selection_set_mask(false, false);
1304             break;
1305         case SP_VERB_OBJECT_UNSET_MASK:
1306             sp_selection_unset_mask(false);
1307             break;
1308         case SP_VERB_OBJECT_SET_CLIPPATH:
1309             sp_selection_set_mask(true, false);
1310             break;
1311         case SP_VERB_OBJECT_UNSET_CLIPPATH:
1312             sp_selection_unset_mask(true);
1313             break;
1314         default:
1315             break;
1316     }
1318 } // end of sp_verb_action_object_perform()
1320 /** \brief  Decode the verb code and take appropriate action */
1321 void
1322 ContextVerb::perform(SPAction *action, void *data, void *pdata)
1324     SPDesktop *dt;
1325     sp_verb_t verb;
1326     int vidx;
1328     dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1330     if (!dt)
1331         return;
1333     verb = (sp_verb_t)GPOINTER_TO_INT((gpointer)data);
1335     /** \todo !!! hopefully this can go away soon and actions can look after
1336      * themselves
1337      */
1338     for (vidx = SP_VERB_CONTEXT_SELECT; vidx <= SP_VERB_CONTEXT_DROPPER_PREFS; vidx++)
1339     {
1340         SPAction *tool_action= get((sp_verb_t)vidx)->get_action(dt);
1341         if (tool_action) {
1342             sp_action_set_active(tool_action, vidx == (int)verb);
1343         }
1344     }
1346     switch (verb) {
1347         case SP_VERB_CONTEXT_SELECT:
1348             tools_switch_current(TOOLS_SELECT);
1349             break;
1350         case SP_VERB_CONTEXT_NODE:
1351             tools_switch_current(TOOLS_NODES);
1352             break;
1353         case SP_VERB_CONTEXT_RECT:
1354             tools_switch_current(TOOLS_SHAPES_RECT);
1355             break;
1356         case SP_VERB_CONTEXT_ARC:
1357             tools_switch_current(TOOLS_SHAPES_ARC);
1358             break;
1359         case SP_VERB_CONTEXT_STAR:
1360             tools_switch_current(TOOLS_SHAPES_STAR);
1361             break;
1362         case SP_VERB_CONTEXT_SPIRAL:
1363             tools_switch_current(TOOLS_SHAPES_SPIRAL);
1364             break;
1365         case SP_VERB_CONTEXT_PENCIL:
1366             tools_switch_current(TOOLS_FREEHAND_PENCIL);
1367             break;
1368         case SP_VERB_CONTEXT_PEN:
1369             tools_switch_current(TOOLS_FREEHAND_PEN);
1370             break;
1371         case SP_VERB_CONTEXT_CALLIGRAPHIC:
1372             tools_switch_current(TOOLS_CALLIGRAPHIC);
1373             break;
1374         case SP_VERB_CONTEXT_TEXT:
1375             tools_switch_current(TOOLS_TEXT);
1376             break;
1377         case SP_VERB_CONTEXT_GRADIENT:
1378             tools_switch_current(TOOLS_GRADIENT);
1379             break;
1380         case SP_VERB_CONTEXT_ZOOM:
1381             tools_switch_current(TOOLS_ZOOM);
1382             break;
1383         case SP_VERB_CONTEXT_DROPPER:
1384             tools_switch_current(TOOLS_DROPPER);
1385             break;
1386         case SP_VERB_CONTEXT_CONNECTOR:
1387             tools_switch_current (TOOLS_CONNECTOR);
1388             break;
1390         case SP_VERB_CONTEXT_SELECT_PREFS:
1391             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SELECTOR);
1392             dt->_dlg_mgr->showDialog("InkscapePreferences");
1393             break;
1394         case SP_VERB_CONTEXT_NODE_PREFS:
1395             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_NODE);
1396             dt->_dlg_mgr->showDialog("InkscapePreferences");
1397             break;
1398         case SP_VERB_CONTEXT_RECT_PREFS:
1399             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_RECT);
1400             dt->_dlg_mgr->showDialog("InkscapePreferences");
1401             break;
1402         case SP_VERB_CONTEXT_ARC_PREFS:
1403             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
1404             dt->_dlg_mgr->showDialog("InkscapePreferences");
1405             break;
1406         case SP_VERB_CONTEXT_STAR_PREFS:
1407             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_STAR);
1408             dt->_dlg_mgr->showDialog("InkscapePreferences");
1409             break;
1410         case SP_VERB_CONTEXT_SPIRAL_PREFS:
1411             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
1412             dt->_dlg_mgr->showDialog("InkscapePreferences");
1413             break;
1414         case SP_VERB_CONTEXT_PENCIL_PREFS:
1415             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_PENCIL);
1416             dt->_dlg_mgr->showDialog("InkscapePreferences");
1417             break;
1418         case SP_VERB_CONTEXT_PEN_PREFS:
1419             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_PEN);
1420             dt->_dlg_mgr->showDialog("InkscapePreferences");
1421             break;
1422         case SP_VERB_CONTEXT_CALLIGRAPHIC_PREFS:
1423             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_CALLIGRAPHY);
1424             dt->_dlg_mgr->showDialog("InkscapePreferences");
1425             break;
1426         case SP_VERB_CONTEXT_TEXT_PREFS:
1427             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_TEXT);
1428             dt->_dlg_mgr->showDialog("InkscapePreferences");
1429             break;
1430         case SP_VERB_CONTEXT_GRADIENT_PREFS:
1431             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_GRADIENT);
1432             dt->_dlg_mgr->showDialog("InkscapePreferences");
1433             break;
1434         case SP_VERB_CONTEXT_ZOOM_PREFS:
1435             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_ZOOM);
1436             dt->_dlg_mgr->showDialog("InkscapePreferences");
1437             break;
1438         case SP_VERB_CONTEXT_DROPPER_PREFS:
1439             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_DROPPER);
1440             dt->_dlg_mgr->showDialog("InkscapePreferences");
1441             break;
1442         case SP_VERB_CONTEXT_CONNECTOR_PREFS:
1443             prefs_set_int_attribute ("dialogs.preferences", "page", PREFS_PAGE_TOOLS_CONNECTOR);
1444             dt->_dlg_mgr->showDialog("InkscapePreferences");
1445             break;
1447         default:
1448             break;
1449     }
1451 } // end of sp_verb_action_ctx_perform()
1453 /** \brief  Decode the verb code and take appropriate action */
1454 void
1455 TextVerb::perform(SPAction *action, void *data, void *pdata)
1457     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1458     if (!dt)
1459         return;
1461     SPDocument *doc = sp_desktop_document(dt);
1462     (void)doc;
1463     Inkscape::XML::Node *repr = SP_OBJECT_REPR(dt->namedview);
1464     (void)repr;
1466  
1467 /** \brief  Decode the verb code and take appropriate action */
1468 void
1469 ZoomVerb::perform(SPAction *action, void *data, void *pdata)
1471     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1472     if (!dt)
1473         return;
1475     SPDocument *doc = sp_desktop_document(dt);
1477     Inkscape::XML::Node *repr = SP_OBJECT_REPR(dt->namedview);
1479     gdouble zoom_inc =
1480         prefs_get_double_attribute_limited( "options.zoomincrement",
1481                                             "value", 1.414213562, 1.01, 10 );
1483     switch (GPOINTER_TO_INT(data)) {
1484         case SP_VERB_ZOOM_IN:
1485         {
1486             NR::Rect const d = dt->get_display_area();
1487             dt->zoom_relative( d.midpoint()[NR::X], d.midpoint()[NR::Y], zoom_inc);
1488             break;
1489         }
1490         case SP_VERB_ZOOM_OUT:
1491         {
1492             NR::Rect const d = dt->get_display_area();
1493             dt->zoom_relative( d.midpoint()[NR::X], d.midpoint()[NR::Y], 1 / zoom_inc );
1494             break;
1495         }
1496         case SP_VERB_ZOOM_1_1:
1497         {
1498             NR::Rect const d = dt->get_display_area();
1499             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 1.0 );
1500             break;
1501         }
1502         case SP_VERB_ZOOM_1_2:
1503         {
1504             NR::Rect const d = dt->get_display_area();
1505             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 0.5);
1506             break;
1507         }
1508         case SP_VERB_ZOOM_2_1:
1509         {
1510             NR::Rect const d = dt->get_display_area();
1511             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 2.0 );
1512             break;
1513         }
1514         case SP_VERB_ZOOM_PAGE:
1515             dt->zoom_page();
1516             break;
1517         case SP_VERB_ZOOM_PAGE_WIDTH:
1518             dt->zoom_page_width();
1519             break;
1520         case SP_VERB_ZOOM_DRAWING:
1521             dt->zoom_drawing();
1522             break;
1523         case SP_VERB_ZOOM_SELECTION:
1524             dt->zoom_selection();
1525             break;
1526         case SP_VERB_ZOOM_NEXT:
1527             dt->next_zoom();
1528             break;
1529         case SP_VERB_ZOOM_PREV:
1530             dt->prev_zoom();
1531             break;
1532         case SP_VERB_TOGGLE_RULERS:
1533             dt->toggleRulers();
1534             break;
1535         case SP_VERB_TOGGLE_SCROLLBARS:
1536             dt->toggleScrollbars();
1537             break;
1538         case SP_VERB_TOGGLE_GUIDES:
1539             sp_namedview_toggle_guides(doc, repr);
1540             break;
1541         case SP_VERB_TOGGLE_GRID:
1542             sp_namedview_toggle_grid(doc, repr);
1543             break;
1544 #ifdef HAVE_GTK_WINDOW_FULLSCREEN
1545         case SP_VERB_FULLSCREEN:
1546             dt->fullscreen();
1547             break;
1548 #endif /* HAVE_GTK_WINDOW_FULLSCREEN */
1549         case SP_VERB_VIEW_NEW:
1550             sp_ui_new_view();
1551             break;
1552         case SP_VERB_VIEW_NEW_PREVIEW:
1553             sp_ui_new_view_preview();
1554             break;
1555         case SP_VERB_VIEW_MODE_NORMAL:
1556             dt->setDisplayModeNormal();
1557             break;
1558         case SP_VERB_VIEW_MODE_OUTLINE:
1559             dt->setDisplayModeOutline();
1560             break;
1561         case SP_VERB_VIEW_MODE_TOGGLE:
1562             dt->displayModeToggle();
1563             break;
1564         case SP_VERB_VIEW_ICON_PREVIEW:
1565             show_panel( Inkscape::UI::Dialogs::IconPreviewPanel::getInstance(), "dialogs.iconpreview", SP_VERB_VIEW_ICON_PREVIEW );
1566             break;
1567         default:
1568             break;
1569     }
1570     
1571     dt->updateNow();
1573 } // end of sp_verb_action_zoom_perform()
1575 /** \brief  Decode the verb code and take appropriate action */
1576 void
1577 DialogVerb::perform(SPAction *action, void *data, void *pdata)
1579     if (reinterpret_cast<std::size_t>(data) != SP_VERB_DIALOG_TOGGLE) {
1580         // unhide all when opening a new dialog
1581         inkscape_dialogs_unhide();
1582     }
1584     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1585     g_assert(dt->_dlg_mgr != NULL);
1587     switch (reinterpret_cast<std::size_t>(data)) {
1588         case SP_VERB_DIALOG_DISPLAY:
1589             //sp_display_dialog();
1590             dt->_dlg_mgr->showDialog("InkscapePreferences");
1591             break;
1592         case SP_VERB_DIALOG_METADATA:
1593             // sp_desktop_dialog();
1594             dt->_dlg_mgr->showDialog("DocumentMetadata");
1595             break;
1596         case SP_VERB_DIALOG_NAMEDVIEW:
1597             // sp_desktop_dialog();
1598             dt->_dlg_mgr->showDialog("DocumentProperties");
1599             break;
1600         case SP_VERB_DIALOG_FILL_STROKE:
1601             sp_object_properties_dialog();
1602             break;
1603         case SP_VERB_DIALOG_SWATCHES:
1604             show_panel( Inkscape::UI::Dialogs::SwatchesPanel::getInstance(), "dialogs.swatches", SP_VERB_DIALOG_SWATCHES);
1605             break;
1606         case SP_VERB_DIALOG_TRANSFORM:
1607             dt->_dlg_mgr->showDialog("Transformation");
1608             break;
1609         case SP_VERB_DIALOG_ALIGN_DISTRIBUTE:
1610             dt->_dlg_mgr->showDialog("AlignAndDistribute");
1611             break;
1612         case SP_VERB_DIALOG_TEXT:
1613             sp_text_edit_dialog();
1614             break;
1615         case SP_VERB_DIALOG_XML_EDITOR:
1616             sp_xml_tree_dialog();
1617             break;
1618         case SP_VERB_DIALOG_FIND:
1619             sp_find_dialog();
1620 //              Please test the new find dialog if you have time:
1621 //            dt->_dlg_mgr->showDialog("Find");
1622             break;
1623         case SP_VERB_DIALOG_DEBUG:
1624             dt->_dlg_mgr->showDialog("Messages");
1625             break;
1626         case SP_VERB_DIALOG_SCRIPT:
1627             dt->_dlg_mgr->showDialog("Script");
1628             break;
1629         case SP_VERB_DIALOG_UNDO_HISTORY:
1630             dt->_dlg_mgr->showDialog("UndoHistory");
1631             break;
1632         case SP_VERB_DIALOG_TOGGLE:
1633             inkscape_dialogs_toggle();
1634             break;
1635         case SP_VERB_DIALOG_CLONETILER:
1636             clonetiler_dialog();
1637             break;
1638         case SP_VERB_DIALOG_ITEM:
1639             sp_item_dialog();
1640             break;
1641 #ifdef WITH_INKBOARD
1642         case SP_VERB_XMPP_CLIENT:
1643                 {
1644             Inkscape::Whiteboard::SessionManager::showClient();
1645                         break;
1646                 }
1647 #endif
1648         case SP_VERB_DIALOG_INPUT:
1649             sp_input_dialog();
1650             break;
1651         case SP_VERB_DIALOG_EXTENSIONEDITOR:
1652             dt->_dlg_mgr->showDialog("ExtensionEditor");
1653             break;
1654         case SP_VERB_DIALOG_LAYERS:
1655             show_panel( Inkscape::UI::Dialogs::LayersPanel::getInstance(), "dialogs.layers", SP_VERB_DIALOG_LAYERS );
1656             break;
1657         default:
1658             break;
1659     }
1660 } // end of sp_verb_action_dialog_perform()
1662 /** \brief  Decode the verb code and take appropriate action */
1663 void
1664 HelpVerb::perform(SPAction *action, void *data, void *pdata)
1666     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1667     g_assert(dt->_dlg_mgr != NULL);
1669     switch (reinterpret_cast<std::size_t>(data)) {
1670         case SP_VERB_HELP_KEYS:
1671             /* TRANSLATORS: If you have translated the keys.svg file to your language, then
1672                translate this string as "keys.LANG.svg" (where LANG is your language code);
1673                otherwise leave as "keys.svg". */
1674             sp_help_open_screen(_("keys.svg"));
1675             break;
1676         case SP_VERB_HELP_ABOUT:
1677             sp_help_about();
1678             break;
1679         case SP_VERB_HELP_ABOUT_EXTENSIONS: {
1680             Inkscape::UI::Dialogs::ExtensionsPanel *panel = new Inkscape::UI::Dialogs::ExtensionsPanel();
1681             panel->set_full(true);
1682             show_panel( *panel, "dialogs.aboutextensions", SP_VERB_HELP_ABOUT_EXTENSIONS );
1683             break;
1684         }
1686         /*
1687         case SP_VERB_SHOW_LICENSE:
1688             // TRANSLATORS: See "tutorial-basic.svg" comment.
1689             sp_help_open_tutorial(NULL, (gpointer) _("gpl-2.svg"));
1690             break;
1691         */
1693         case SP_VERB_HELP_MEMORY:
1694             dt->_dlg_mgr->showDialog("Memory");
1695             break;
1696         default:
1697             break;
1698     }
1699 } // end of sp_verb_action_help_perform()
1701 /** \brief  Decode the verb code and take appropriate action */
1702 void
1703 TutorialVerb::perform(SPAction *action, void *data, void *pdata)
1705     switch (reinterpret_cast<std::size_t>(data)) {
1706         case SP_VERB_TUTORIAL_BASIC:
1707             /* TRANSLATORS: If you have translated the tutorial-basic.svg file to your language,
1708                then translate this string as "tutorial-basic.LANG.svg" (where LANG is your language
1709                code); otherwise leave as "tutorial-basic.svg". */
1710             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-basic.svg"));
1711             break;
1712         case SP_VERB_TUTORIAL_SHAPES:
1713             // TRANSLATORS: See "tutorial-basic.svg" comment.
1714             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-shapes.svg"));
1715             break;
1716         case SP_VERB_TUTORIAL_ADVANCED:
1717             // TRANSLATORS: See "tutorial-basic.svg" comment.
1718             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-advanced.svg"));
1719             break;
1720         case SP_VERB_TUTORIAL_TRACING:
1721             // TRANSLATORS: See "tutorial-basic.svg" comment.
1722             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-tracing.svg"));
1723             break;
1724         case SP_VERB_TUTORIAL_CALLIGRAPHY:
1725             // TRANSLATORS: See "tutorial-basic.svg" comment.
1726             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-calligraphy.svg"));
1727             break;
1728         case SP_VERB_TUTORIAL_DESIGN:
1729             // TRANSLATORS: See "tutorial-basic.svg" comment.
1730             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-elements.svg"));
1731             break;
1732         case SP_VERB_TUTORIAL_TIPS:
1733             // TRANSLATORS: See "tutorial-basic.svg" comment.
1734             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-tips.svg"));
1735             break;
1736         default:
1737             break;
1738     }
1739 } // end of sp_verb_action_tutorial_perform()
1742 /**
1743  * Action vector to define functions called if a staticly defined file verb
1744  * is called.
1745  */
1746 SPActionEventVector FileVerb::vector =
1747             {{NULL},FileVerb::perform, NULL, NULL, NULL, NULL};
1748 /**
1749  * Action vector to define functions called if a staticly defined edit verb is
1750  * called.
1751  */
1752 SPActionEventVector EditVerb::vector =
1753             {{NULL},EditVerb::perform, NULL, NULL, NULL, NULL};
1755 /**
1756  * Action vector to define functions called if a staticly defined selection
1757  * verb is called
1758  */
1759 SPActionEventVector SelectionVerb::vector =
1760             {{NULL},SelectionVerb::perform, NULL, NULL, NULL, NULL};
1762 /**
1763  * Action vector to define functions called if a staticly defined layer
1764  * verb is called
1765  */
1766 SPActionEventVector LayerVerb::vector =
1767             {{NULL}, LayerVerb::perform, NULL, NULL, NULL, NULL};
1769 /**
1770  * Action vector to define functions called if a staticly defined object
1771  * editing verb is called
1772  */
1773 SPActionEventVector ObjectVerb::vector =
1774             {{NULL},ObjectVerb::perform, NULL, NULL, NULL, NULL};
1776 /**
1777  * Action vector to define functions called if a staticly defined context
1778  * verb is called
1779  */
1780 SPActionEventVector ContextVerb::vector =
1781             {{NULL},ContextVerb::perform, NULL, NULL, NULL, NULL};
1783 /**
1784  * Action vector to define functions called if a staticly defined zoom verb
1785  * is called
1786  */
1787 SPActionEventVector ZoomVerb::vector =
1788             {{NULL},ZoomVerb::perform, NULL, NULL, NULL, NULL};
1791 /**
1792  * Action vector to define functions called if a staticly defined dialog verb
1793  * is called
1794  */
1795 SPActionEventVector DialogVerb::vector =
1796             {{NULL},DialogVerb::perform, NULL, NULL, NULL, NULL};
1798 /**
1799  * Action vector to define functions called if a staticly defined help verb
1800  * is called
1801  */
1802 SPActionEventVector HelpVerb::vector =
1803             {{NULL},HelpVerb::perform, NULL, NULL, NULL, NULL};
1805 /**
1806  * Action vector to define functions called if a staticly defined tutorial verb
1807  * is called
1808  */
1809 SPActionEventVector TutorialVerb::vector =
1810             {{NULL},TutorialVerb::perform, NULL, NULL, NULL, NULL};
1812 /**
1813  * Action vector to define functions called if a staticly defined tutorial verb
1814  * is called
1815  */
1816 SPActionEventVector TextVerb::vector =
1817             {{NULL},TextVerb::perform, NULL, NULL, NULL, NULL};
1820 /* *********** Effect Last ********** */
1822 /** \brief A class to represent the last effect issued */
1823 class EffectLastVerb : public Verb {
1824 private:
1825     static void perform(SPAction *action, void *mydata, void *otherdata);
1826     static SPActionEventVector vector;
1827 protected:
1828     virtual SPAction *make_action(Inkscape::UI::View::View *view);
1829 public:
1830     /** \brief Use the Verb initializer with the same parameters. */
1831     EffectLastVerb(unsigned int const code,
1832                    gchar const *id,
1833                    gchar const *name,
1834                    gchar const *tip,
1835                    gchar const *image) :
1836         Verb(code, id, name, tip, image)
1837     {
1838         set_default_sensitive(false);
1839     }
1840 }; /* EffectLastVerb class */
1842 /**
1843  * The vector to attach in the last effect verb.
1844  */
1845 SPActionEventVector EffectLastVerb::vector =
1846             {{NULL},EffectLastVerb::perform, NULL, NULL, NULL, NULL};
1848 /** \brief  Create an action for a \c EffectLastVerb
1849     \param  view  Which view the action should be created for
1850     \return The built action.
1852     Calls \c make_action_helper with the \c vector.
1853 */
1854 SPAction *
1855 EffectLastVerb::make_action(Inkscape::UI::View::View *view)
1857     return make_action_helper(view, &vector);
1860 /** \brief  Decode the verb code and take appropriate action */
1861 void
1862 EffectLastVerb::perform(SPAction *action, void *data, void *pdata)
1864     /* These aren't used, but are here to remind people not to use
1865        the CURRENT_DOCUMENT macros unless they really have to. */
1866     Inkscape::UI::View::View *current_view = sp_action_get_view(action);
1867     // SPDocument *current_document = SP_VIEW_DOCUMENT(current_view);
1868     Inkscape::Extension::Effect *effect = Inkscape::Extension::Effect::get_last_effect();
1870     if (effect == NULL) return;
1871     if (current_view == NULL) return;
1873     switch ((long) data) {
1874         case SP_VERB_EFFECT_LAST_PREF:
1875             if (!effect->prefs(current_view))
1876                 return;
1877             /* Note: fall through */
1878         case SP_VERB_EFFECT_LAST:
1879             effect->effect(current_view);
1880             break;
1881         default:
1882             return;
1883     }
1885     return;
1887 /* *********** End Effect Last ********** */
1889 /* *********** Fit Canvas ********** */
1891 /** \brief A class to represent the canvas fitting verbs */
1892 class FitCanvasVerb : public Verb {
1893 private:
1894     static void perform(SPAction *action, void *mydata, void *otherdata);
1895     static SPActionEventVector vector;
1896 protected:
1897     virtual SPAction *make_action(Inkscape::UI::View::View *view);
1898 public:
1899     /** \brief Use the Verb initializer with the same parameters. */
1900     FitCanvasVerb(unsigned int const code,
1901                    gchar const *id,
1902                    gchar const *name,
1903                    gchar const *tip,
1904                    gchar const *image) :
1905         Verb(code, id, name, tip, image)
1906     {
1907         set_default_sensitive(false);
1908     }
1909 }; /* FitCanvasVerb class */
1911 /**
1912  * The vector to attach in the fit canvas verb.
1913  */
1914 SPActionEventVector FitCanvasVerb::vector =
1915             {{NULL},FitCanvasVerb::perform, NULL, NULL, NULL, NULL};
1917 /** \brief  Create an action for a \c FitCanvasVerb
1918     \param  view  Which view the action should be created for
1919     \return The built action.
1921     Calls \c make_action_helper with the \c vector.
1922 */
1923 SPAction *
1924 FitCanvasVerb::make_action(Inkscape::UI::View::View *view)
1926     SPAction *action = make_action_helper(view, &vector);
1927     return action;
1930 /** \brief  Decode the verb code and take appropriate action */
1931 void
1932 FitCanvasVerb::perform(SPAction *action, void *data, void *pdata)
1934     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1935     if (!dt) return;
1936     SPDocument *doc = sp_desktop_document(dt);
1937     if (!doc) return;
1938     
1939     switch ((long) data) {
1940         case SP_VERB_FIT_CANVAS_TO_SELECTION:
1941             fit_canvas_to_selection(dt);
1942             break;
1943         case SP_VERB_FIT_CANVAS_TO_DRAWING:
1944             fit_canvas_to_drawing(doc);
1945             break;
1946         case SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING:
1947             fit_canvas_to_selection_or_drawing(dt);
1948             break;
1949         default:
1950             return;
1951     }
1953     return;
1955 /* *********** End Fit Canvas ********** */
1962 /* these must be in the same order as the SP_VERB_* enum in "verbs.h" */
1963 Verb *Verb::_base_verbs[] = {
1964     /* Header */
1965     new Verb(SP_VERB_INVALID, NULL, NULL, NULL, NULL),
1966     new Verb(SP_VERB_NONE, "None", N_("None"), N_("Does nothing"), NULL),
1968     /* File */
1969     new FileVerb(SP_VERB_FILE_NEW, "FileNew", N_("Default"), N_("Create new document from the default template"),
1970                  GTK_STOCK_NEW ),
1971     new FileVerb(SP_VERB_FILE_OPEN, "FileOpen", N_("_Open..."),
1972                  N_("Open an existing document"), GTK_STOCK_OPEN ),
1973     new FileVerb(SP_VERB_FILE_REVERT, "FileRevert", N_("Re_vert"),
1974                  N_("Revert to the last saved version of document (changes will be lost)"), GTK_STOCK_REVERT_TO_SAVED ),
1975     new FileVerb(SP_VERB_FILE_SAVE, "FileSave", N_("_Save"), N_("Save document"),
1976                  GTK_STOCK_SAVE ),
1977     new FileVerb(SP_VERB_FILE_SAVE_AS, "FileSaveAs", N_("Save _As..."),
1978                  N_("Save document under a new name"), GTK_STOCK_SAVE_AS ),
1979     new FileVerb(SP_VERB_FILE_SAVE_A_COPY, "FileSaveACopy", N_("Save a Cop_y..."),
1980                  N_("Save a copy of the document under a new name"), NULL ),
1981     new FileVerb(SP_VERB_FILE_PRINT, "FilePrint", N_("_Print..."), N_("Print document"),
1982                  GTK_STOCK_PRINT ),
1983     // TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions)
1984     new FileVerb(SP_VERB_FILE_VACUUM, "FileVacuum", N_("Vac_uum Defs"), N_("Remove unused definitions (such as gradients or clipping paths) from the &lt;defs&gt; of the document"),
1985                  "file_vacuum" ),
1986     new FileVerb(SP_VERB_FILE_PRINT_DIRECT, "FilePrintDirect", N_("Print _Direct"),
1987                  N_("Print directly without prompting to a file or pipe"), NULL ),
1988     new FileVerb(SP_VERB_FILE_PRINT_PREVIEW, "FilePrintPreview", N_("Print Previe_w"),
1989                  N_("Preview document printout"), GTK_STOCK_PRINT_PREVIEW ),
1990     new FileVerb(SP_VERB_FILE_IMPORT, "FileImport", N_("_Import..."),
1991                  N_("Import a bitmap or SVG image into this document"), "file_import"),
1992     new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."),
1993                  N_("Export this document or a selection as a bitmap image"), "file_export"),
1994     new FileVerb(SP_VERB_FILE_NEXT_DESKTOP, "NextWindow", N_("N_ext Window"),
1995                  N_("Switch to the next document window"), "window_next"),
1996     new FileVerb(SP_VERB_FILE_PREV_DESKTOP, "PrevWindow", N_("P_revious Window"),
1997                  N_("Switch to the previous document window"), "window_previous"),
1998     new FileVerb(SP_VERB_FILE_CLOSE_VIEW, "FileClose", N_("_Close"),
1999                  N_("Close this document window"), GTK_STOCK_CLOSE),
2000     new FileVerb(SP_VERB_FILE_QUIT, "FileQuit", N_("_Quit"), N_("Quit Inkscape"), GTK_STOCK_QUIT),
2002     /* Edit */
2003     new EditVerb(SP_VERB_EDIT_UNDO, "EditUndo", N_("_Undo"), N_("Undo last action"),
2004                  GTK_STOCK_UNDO),
2005     new EditVerb(SP_VERB_EDIT_REDO, "EditRedo", N_("_Redo"),
2006                  N_("Do again the last undone action"), GTK_STOCK_REDO),
2007     new EditVerb(SP_VERB_EDIT_CUT, "EditCut", N_("Cu_t"),
2008                  N_("Cut selection to clipboard"), GTK_STOCK_CUT),
2009     new EditVerb(SP_VERB_EDIT_COPY, "EditCopy", N_("_Copy"),
2010                  N_("Copy selection to clipboard"), GTK_STOCK_COPY),
2011     new EditVerb(SP_VERB_EDIT_PASTE, "EditPaste", N_("_Paste"),
2012                  N_("Paste objects from clipboard to mouse point, or paste text"), GTK_STOCK_PASTE),
2013     new EditVerb(SP_VERB_EDIT_PASTE_STYLE, "EditPasteStyle", N_("Paste _Style"),
2014                  N_("Apply the style of the copied object to selection"), "selection_paste_style"),
2015     new EditVerb(SP_VERB_EDIT_PASTE_SIZE, "EditPasteSize", N_("Paste Si_ze"),
2016                  N_("Scale selection to match the size of the copied object"), NULL),
2017     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_X, "EditPasteWidth", N_("Paste _Width"),
2018                  N_("Scale selection horizontally to match the width of the copied object"), NULL),
2019     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_Y, "EditPasteHeight", N_("Paste _Height"),
2020                  N_("Scale selection vertically to match the height of the copied object"), NULL),
2021     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY, "EditPasteSizeSeparately", N_("Paste Size Separately"),
2022                  N_("Scale each selected object to match the size of the copied object"), NULL),
2023     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_X, "EditPasteWidthSeparately", N_("Paste Width Separately"),
2024                  N_("Scale each selected object horizontally to match the width of the copied object"), NULL),
2025     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_Y, "EditPasteHeightSeparately", N_("Paste Height Separately"),
2026                  N_("Scale each selected object vertically to match the height of the copied object"), NULL),
2027     new EditVerb(SP_VERB_EDIT_PASTE_IN_PLACE, "EditPasteInPlace", N_("Paste _In Place"),
2028                  N_("Paste objects from clipboard to the original location"), "selection_paste_in_place"),
2029     new EditVerb(SP_VERB_EDIT_DELETE, "EditDelete", N_("_Delete"),
2030                  N_("Delete selection"), GTK_STOCK_DELETE),
2031     new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"),
2032                  N_("Duplicate selected objects"), "edit_duplicate"),
2033     new EditVerb(SP_VERB_EDIT_CLONE, "EditClone", N_("Create Clo_ne"),
2034                  N_("Create a clone (a copy linked to the original) of selected object"), "edit_clone"),
2035     new EditVerb(SP_VERB_EDIT_UNLINK_CLONE, "EditUnlinkClone", N_("Unlin_k Clone"),
2036                  N_("Cut the selected clone's link to its original, turning it into a standalone object"), "edit_unlink_clone"),
2037     new EditVerb(SP_VERB_EDIT_CLONE_ORIGINAL, "EditCloneOriginal", N_("Select _Original"),
2038                  N_("Select the object to which the selected clone is linked"), "edit_select_original"),
2039     // TRANSLATORS: Convert selection to a rectangle with tiled pattern fill
2040     new EditVerb(SP_VERB_EDIT_TILE, "ObjectsToPattern", N_("Objects to Patter_n"),
2041                  N_("Convert selection to a rectangle with tiled pattern fill"), NULL),
2042     // TRANSLATORS: Extract objects from a tiled pattern fill
2043     new EditVerb(SP_VERB_EDIT_UNTILE, "ObjectsFromPattern", N_("Pattern to _Objects"),
2044                  N_("Extract objects from a tiled pattern fill"), NULL),
2045     new EditVerb(SP_VERB_EDIT_CLEAR_ALL, "EditClearAll", N_("Clea_r All"),
2046                  N_("Delete all objects from document"), NULL),
2047     new EditVerb(SP_VERB_EDIT_SELECT_ALL, "EditSelectAll", N_("Select Al_l"),
2048                  N_("Select all objects or all nodes"), "selection_select_all"),
2049     new EditVerb(SP_VERB_EDIT_SELECT_ALL_IN_ALL_LAYERS, "EditSelectAllInAllLayers", N_("Select All in All La_yers"),
2050                  N_("Select all objects in all visible and unlocked layers"), "selection_select_all_in_all_layers"),
2051     new EditVerb(SP_VERB_EDIT_INVERT, "EditInvert", N_("In_vert Selection"),
2052                  N_("Invert selection (unselect what is selected and select everything else)"), "selection_invert"),
2053     new EditVerb(SP_VERB_EDIT_INVERT_IN_ALL_LAYERS, "EditInvertInAllLayers", N_("Invert in All Layers"),
2054                  N_("Invert selection in all visible and unlocked layers"), NULL),
2055     new EditVerb(SP_VERB_EDIT_SELECT_NEXT, "EditSelectNext", N_("Select Next"),
2056                  N_("Select next object or node"), NULL),
2057     new EditVerb(SP_VERB_EDIT_SELECT_PREV, "EditSelectPrev", N_("Select Previous"),
2058                  N_("Select previous object or node"), NULL),
2059     new EditVerb(SP_VERB_EDIT_DESELECT, "EditDeselect", N_("D_eselect"),
2060                  N_("Deselect any selected objects or nodes"), "selection_deselect"),
2062     /* Selection */
2063     new SelectionVerb(SP_VERB_SELECTION_TO_FRONT, "SelectionToFront", N_("Raise to _Top"),
2064                       N_("Raise selection to top"), "selection_top"),
2065     new SelectionVerb(SP_VERB_SELECTION_TO_BACK, "SelectionToBack", N_("Lower to _Bottom"),
2066                       N_("Lower selection to bottom"), "selection_bot"),
2067     new SelectionVerb(SP_VERB_SELECTION_RAISE, "SelectionRaise", N_("_Raise"),
2068                       N_("Raise selection one step"), "selection_up"),
2069     new SelectionVerb(SP_VERB_SELECTION_LOWER, "SelectionLower", N_("_Lower"),
2070                       N_("Lower selection one step"), "selection_down"),
2071     new SelectionVerb(SP_VERB_SELECTION_GROUP, "SelectionGroup", N_("_Group"),
2072                       N_("Group selected objects"), "selection_group"),
2073     new SelectionVerb(SP_VERB_SELECTION_UNGROUP, "SelectionUnGroup", N_("_Ungroup"),
2074                       N_("Ungroup selected groups"), "selection_ungroup"),
2076     new SelectionVerb(SP_VERB_SELECTION_TEXTTOPATH, "SelectionTextToPath", N_("_Put on Path"),
2077                       N_("Put text on path"), "put_on_path"),
2078     new SelectionVerb(SP_VERB_SELECTION_TEXTFROMPATH, "SelectionTextFromPath", N_("_Remove from Path"),
2079                       N_("Remove text from path"), "remove_from_path"),
2080     new SelectionVerb(SP_VERB_SELECTION_REMOVE_KERNS, "SelectionTextRemoveKerns", N_("Remove Manual _Kerns"),
2081                       // TRANSLATORS: "glyph": An image used in the visual representation of characters;
2082                       //  roughly speaking, how a character looks. A font is a set of glyphs.
2083                       N_("Remove all manual kerns and glyph rotations from a text object"), "remove_manual_kerns"),
2085     new SelectionVerb(SP_VERB_SELECTION_UNION, "SelectionUnion", N_("_Union"),
2086                       N_("Create union of selected paths"), "union"),
2087     new SelectionVerb(SP_VERB_SELECTION_INTERSECT, "SelectionIntersect", N_("_Intersection"),
2088                       N_("Create intersection of selected paths"), "intersection"),
2089     new SelectionVerb(SP_VERB_SELECTION_DIFF, "SelectionDiff", N_("_Difference"),
2090                       N_("Create difference of selected paths (bottom minus top)"), "difference"),
2091     new SelectionVerb(SP_VERB_SELECTION_SYMDIFF, "SelectionSymDiff", N_("E_xclusion"),
2092                       N_("Create exclusive OR of selected paths (those parts that belong to only one path)"), "exclusion"),
2093     new SelectionVerb(SP_VERB_SELECTION_CUT, "SelectionDivide", N_("Di_vision"),
2094                       N_("Cut the bottom path into pieces"), "division"),
2095     // TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the
2096     // Advanced tutorial for more info
2097     new SelectionVerb(SP_VERB_SELECTION_SLICE, "SelectionCutPath", N_("Cut _Path"),
2098                       N_("Cut the bottom path's stroke into pieces, removing fill"), "cut_path"),
2099     // TRANSLATORS: "outset": expand a shape by offsetting the object's path,
2100     // i.e. by displacing it perpendicular to the path in each point.
2101     // See also the Advanced Tutorial for explanation.
2102     new SelectionVerb(SP_VERB_SELECTION_OFFSET, "SelectionOffset", N_("Outs_et"),
2103                       N_("Outset selected paths"), "outset_path"),
2104     new SelectionVerb(SP_VERB_SELECTION_OFFSET_SCREEN, "SelectionOffsetScreen",
2105                       N_("O_utset Path by 1 px"),
2106                       N_("Outset selected paths by 1 px"), NULL),
2107     new SelectionVerb(SP_VERB_SELECTION_OFFSET_SCREEN_10, "SelectionOffsetScreen10",
2108                       N_("O_utset Path by 10 px"),
2109                       N_("Outset selected paths by 10 px"), NULL),
2110     // TRANSLATORS: "inset": contract a shape by offsetting the object's path,
2111     // i.e. by displacing it perpendicular to the path in each point.
2112     // See also the Advanced Tutorial for explanation.
2113     new SelectionVerb(SP_VERB_SELECTION_INSET, "SelectionInset", N_("I_nset"),
2114                       N_("Inset selected paths"), "inset_path"),
2115     new SelectionVerb(SP_VERB_SELECTION_INSET_SCREEN, "SelectionInsetScreen",
2116                       N_("I_nset Path by 1 px"),
2117                       N_("Inset selected paths by 1 px"), NULL),
2118     new SelectionVerb(SP_VERB_SELECTION_INSET_SCREEN_10, "SelectionInsetScreen10",
2119                       N_("I_nset Path by 10 px"),
2120                       N_("Inset selected paths by 10 px"), NULL),
2121     new SelectionVerb(SP_VERB_SELECTION_DYNAMIC_OFFSET, "SelectionDynOffset",
2122                       N_("D_ynamic Offset"), N_("Create a dynamic offset object"), "dynamic_offset"),
2123     new SelectionVerb(SP_VERB_SELECTION_LINKED_OFFSET, "SelectionLinkedOffset",
2124                       N_("_Linked Offset"),
2125                       N_("Create a dynamic offset object linked to the original path"),
2126                       "linked_offset"),
2127     new SelectionVerb(SP_VERB_SELECTION_OUTLINE, "StrokeToPath", N_("_Stroke to Path"),
2128                       N_("Convert selected object's stroke to paths"), "stroke_tocurve"),
2129     new SelectionVerb(SP_VERB_SELECTION_SIMPLIFY, "SelectionSimplify", N_("Si_mplify"),
2130                       N_("Simplify selected paths (remove extra nodes)"), "simplify"),
2131     new SelectionVerb(SP_VERB_SELECTION_REVERSE, "SelectionReverse", N_("_Reverse"),
2132                       N_("Reverse the direction of selected paths (useful for flipping markers)"), "selection_reverse"),
2133     // TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize)
2134     new SelectionVerb(SP_VERB_SELECTION_TRACE, "SelectionTrace", N_("_Trace Bitmap..."),
2135                       N_("Create one or more paths from a bitmap by tracing it"), "selection_trace"),
2136     new SelectionVerb(SP_VERB_SELECTION_CREATE_BITMAP, "SelectionCreateBitmap", N_("_Make a Bitmap Copy"),
2137                       N_("Export selection to a bitmap and insert it into document"), "selection_bitmap" ),
2138     new SelectionVerb(SP_VERB_SELECTION_COMBINE, "SelectionCombine", N_("_Combine"),
2139                       N_("Combine several paths into one"), "selection_combine"),
2140     // TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the
2141     // Advanced tutorial for more info
2142     new SelectionVerb(SP_VERB_SELECTION_BREAK_APART, "SelectionBreakApart", N_("Break _Apart"),
2143                       N_("Break selected paths into subpaths"), "selection_break"),
2144     new SelectionVerb(SP_VERB_SELECTION_GRIDTILE, "DialogGridArrange", N_("Gri_d Arrange..."),
2145                       N_("Arrange selected objects in a grid pattern"), "grid_arrange"),
2146     /* Layer */
2147     new LayerVerb(SP_VERB_LAYER_NEW, "LayerNew", N_("_Add Layer..."),
2148                   N_("Create a new layer"), "new_layer"),
2149     new LayerVerb(SP_VERB_LAYER_RENAME, "LayerRename", N_("Re_name Layer..."),
2150                   N_("Rename the current layer"), "rename_layer"),
2151     new LayerVerb(SP_VERB_LAYER_NEXT, "LayerNext", N_("Switch to Layer Abov_e"),
2152                   N_("Switch to the layer above the current"), "switch_to_layer_above"),
2153     new LayerVerb(SP_VERB_LAYER_PREV, "LayerPrev", N_("Switch to Layer Belo_w"),
2154                   N_("Switch to the layer below the current"), "switch_to_layer_below"),
2155     new LayerVerb(SP_VERB_LAYER_MOVE_TO_NEXT, "LayerMoveToNext", N_("Move Selection to Layer Abo_ve"),
2156                   N_("Move selection to the layer above the current"), "move_selection_above"),
2157     new LayerVerb(SP_VERB_LAYER_MOVE_TO_PREV, "LayerMoveToPrev", N_("Move Selection to Layer Bel_ow"),
2158                   N_("Move selection to the layer below the current"), "move_selection_below"),
2159     new LayerVerb(SP_VERB_LAYER_TO_TOP, "LayerToTop", N_("Layer to _Top"),
2160                   N_("Raise the current layer to the top"), "layer_to_top"),
2161     new LayerVerb(SP_VERB_LAYER_TO_BOTTOM, "LayerToBottom", N_("Layer to _Bottom"),
2162                   N_("Lower the current layer to the bottom"), "layer_to_bottom"),
2163     new LayerVerb(SP_VERB_LAYER_RAISE, "LayerRaise", N_("_Raise Layer"),
2164                   N_("Raise the current layer"), "raise_layer"),
2165     new LayerVerb(SP_VERB_LAYER_LOWER, "LayerLower", N_("_Lower Layer"),
2166                   N_("Lower the current layer"), "lower_layer"),
2167     new LayerVerb(SP_VERB_LAYER_DELETE, "LayerDelete", N_("_Delete Current Layer"),
2168                   N_("Delete the current layer"), "delete_layer"),
2170     /* Object */
2171     new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90&#176; CW"),
2172                    N_("Rotate selection 90&#176; clockwise"), "object_rotate_90_CW"),
2173     new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0&#176; CCW"),
2174                    N_("Rotate selection 90&#176; counter-clockwise"), "object_rotate_90_CCW"),
2175     new ObjectVerb(SP_VERB_OBJECT_FLATTEN, "ObjectRemoveTransform", N_("Remove _Transformations"),
2176                    N_("Remove transformations from object"), "object_reset"),
2177     new ObjectVerb(SP_VERB_OBJECT_TO_CURVE, "ObjectToPath", N_("_Object to Path"),
2178                    N_("Convert selected object to path"), "object_tocurve"),
2179     new ObjectVerb(SP_VERB_OBJECT_FLOW_TEXT, "ObjectFlowText", N_("_Flow into Frame"),
2180                    N_("Put text into a frame (path or shape), creating a flowed text linked to the frame object"), "flow_into_frame"),
2181     new ObjectVerb(SP_VERB_OBJECT_UNFLOW_TEXT, "ObjectUnFlowText", N_("_Unflow"),
2182                    N_("Remove text from frame (creates a single-line text object)"), "unflow"),
2183     new ObjectVerb(SP_VERB_OBJECT_FLOWTEXT_TO_TEXT, "ObjectFlowtextToText", N_("_Convert to Text"),
2184                    N_("Convert flowed text to regular text object (preserves appearance)"), "convert_to_text"),
2185     new ObjectVerb(SP_VERB_OBJECT_FLIP_HORIZONTAL, "ObjectFlipHorizontally",
2186                    N_("Flip _Horizontal"), N_("Flip selected objects horizontally"),
2187                    "object_flip_hor"),
2188     new ObjectVerb(SP_VERB_OBJECT_FLIP_VERTICAL, "ObjectFlipVertically",
2189                    N_("Flip _Vertical"), N_("Flip selected objects vertically"),
2190                    "object_flip_ver"),
2191     new ObjectVerb(SP_VERB_OBJECT_SET_MASK, "ObjectSetMask", N_("_Set"),
2192                  N_("Apply mask to selection (using the topmost object as mask)"), NULL),
2193     new ObjectVerb(SP_VERB_OBJECT_UNSET_MASK, "ObjectUnSetMask", N_("_Release"),
2194                  N_("Remove mask from selection"), NULL),
2195     new ObjectVerb(SP_VERB_OBJECT_SET_CLIPPATH, "ObjectSetClipPath", N_("_Set"),
2196                  N_("Apply clipping path to selection (using the topmost object as clipping path)"), NULL),
2197     new ObjectVerb(SP_VERB_OBJECT_UNSET_CLIPPATH, "ObjectUnSetClipPath", N_("_Release"),
2198                  N_("Remove clipping path from selection"), NULL),
2200     /* Tools */
2201     new ContextVerb(SP_VERB_CONTEXT_SELECT, "ToolSelector", N_("Select"),
2202                     N_("Select and transform objects"), "draw_select"),
2203     new ContextVerb(SP_VERB_CONTEXT_NODE, "ToolNode", N_("Node Edit"),
2204                     N_("Edit path nodes or control handles"), "draw_node"),
2205     new ContextVerb(SP_VERB_CONTEXT_RECT, "ToolRect", N_("Rectangle"),
2206                     N_("Create rectangles and squares"), "draw_rect"),
2207     new ContextVerb(SP_VERB_CONTEXT_ARC, "ToolArc", N_("Ellipse"),
2208                     N_("Create circles, ellipses, and arcs"), "draw_arc"),
2209     new ContextVerb(SP_VERB_CONTEXT_STAR, "ToolStar", N_("Star"),
2210                     N_("Create stars and polygons"), "draw_star"),
2211     new ContextVerb(SP_VERB_CONTEXT_SPIRAL, "ToolSpiral", N_("Spiral"),
2212                     N_("Create spirals"), "draw_spiral"),
2213     new ContextVerb(SP_VERB_CONTEXT_PENCIL, "ToolPencil", N_("Pencil"),
2214                     N_("Draw freehand lines"), "draw_freehand"),
2215     new ContextVerb(SP_VERB_CONTEXT_PEN, "ToolPen", N_("Pen"),
2216                     N_("Draw Bezier curves and straight lines"), "draw_pen"),
2217     new ContextVerb(SP_VERB_CONTEXT_CALLIGRAPHIC, "ToolCalligrphic", N_("Calligraphy"),
2218                     N_("Draw calligraphic lines"), "draw_calligraphic"),
2219     new ContextVerb(SP_VERB_CONTEXT_TEXT, "ToolText", N_("Text"),
2220                     N_("Create and edit text objects"), "draw_text"),
2221     new ContextVerb(SP_VERB_CONTEXT_GRADIENT, "ToolGradient", N_("Gradient"),
2222                     N_("Create and edit gradients"), "draw_gradient"),
2223     new ContextVerb(SP_VERB_CONTEXT_ZOOM, "ToolZoom", N_("Zoom"),
2224                     N_("Zoom in or out"), "draw_zoom"),
2225     new ContextVerb(SP_VERB_CONTEXT_DROPPER, "ToolDropper", N_("Dropper"),
2226                     N_("Pick averaged colors from image"), "draw_dropper"),
2227     new ContextVerb(SP_VERB_CONTEXT_CONNECTOR, "ToolConnector", N_("Connector"),
2228                     N_("Create connectors"), "draw_connector"),
2230     /* Tool prefs */
2231     new ContextVerb(SP_VERB_CONTEXT_SELECT_PREFS, "SelectPrefs", N_("Selector Preferences"),
2232                     N_("Open Preferences for the Selector tool"), NULL),
2233     new ContextVerb(SP_VERB_CONTEXT_NODE_PREFS, "NodePrefs", N_("Node Tool Preferences"),
2234                     N_("Open Preferences for the Node tool"), NULL),
2235     new ContextVerb(SP_VERB_CONTEXT_RECT_PREFS, "RectPrefs", N_("Rectangle Preferences"),
2236                     N_("Open Preferences for the Rectangle tool"), NULL),
2237     new ContextVerb(SP_VERB_CONTEXT_ARC_PREFS, "ArcPrefs", N_("Ellipse Preferences"),
2238                     N_("Open Preferences for the Ellipse tool"), NULL),
2239     new ContextVerb(SP_VERB_CONTEXT_STAR_PREFS, "StarPrefs", N_("Star Preferences"),
2240                     N_("Open Preferences for the Star tool"), NULL),
2241     new ContextVerb(SP_VERB_CONTEXT_SPIRAL_PREFS, "SpiralPrefs", N_("Spiral Preferences"),
2242                     N_("Open Preferences for the Spiral tool"), NULL),
2243     new ContextVerb(SP_VERB_CONTEXT_PENCIL_PREFS, "PencilPrefs", N_("Pencil Preferences"),
2244                     N_("Open Preferences for the Pencil tool"), NULL),
2245     new ContextVerb(SP_VERB_CONTEXT_PEN_PREFS, "PenPrefs", N_("Pen Preferences"),
2246                     N_("Open Preferences for the Pen tool"), NULL),
2247     new ContextVerb(SP_VERB_CONTEXT_CALLIGRAPHIC_PREFS, "CalligraphicPrefs", N_("Calligraphic Preferences"),
2248                     N_("Open Preferences for the Calligraphy tool"), NULL),
2249     new ContextVerb(SP_VERB_CONTEXT_TEXT_PREFS, "TextPrefs", N_("Text Preferences"),
2250                     N_("Open Preferences for the Text tool"), NULL),
2251     new ContextVerb(SP_VERB_CONTEXT_GRADIENT_PREFS, "GradientPrefs", N_("Gradient Preferences"),
2252                     N_("Open Preferences for the Gradient tool"), NULL),
2253     new ContextVerb(SP_VERB_CONTEXT_ZOOM_PREFS, "ZoomPrefs", N_("Zoom Preferences"),
2254                     N_("Open Preferences for the Zoom tool"), NULL),
2255     new ContextVerb(SP_VERB_CONTEXT_DROPPER_PREFS, "DropperPrefs", N_("Dropper Preferences"),
2256                     N_("Open Preferences for the Dropper tool"), NULL),
2257     new ContextVerb(SP_VERB_CONTEXT_CONNECTOR_PREFS, "ConnectorPrefs", N_("Connector Preferences"),
2258                     N_("Open Preferences for the Connector tool"), NULL),
2260     /* Zoom/View */
2261     new ZoomVerb(SP_VERB_ZOOM_IN, "ZoomIn", N_("Zoom In"), N_("Zoom in"), "zoom_in"),
2262     new ZoomVerb(SP_VERB_ZOOM_OUT, "ZoomOut", N_("Zoom Out"), N_("Zoom out"), "zoom_out"),
2263     new ZoomVerb(SP_VERB_TOGGLE_RULERS, "ToggleRulers", N_("_Rulers"), N_("Show or hide the canvas rulers"), "rulers"),
2264     new ZoomVerb(SP_VERB_TOGGLE_SCROLLBARS, "ToggleScrollbars", N_("Scroll_bars"), N_("Show or hide the canvas scrollbars"), "scrollbars"),
2265     new ZoomVerb(SP_VERB_TOGGLE_GRID, "ToggleGrid", N_("_Grid"), N_("Show or hide the grid"), "grid"),
2266     new ZoomVerb(SP_VERB_TOGGLE_GUIDES, "ToggleGuides", N_("G_uides"), N_("Show or hide guides (drag from a ruler to create a guide)"), "guides"),
2267     new ZoomVerb(SP_VERB_ZOOM_NEXT, "ZoomNext", N_("Nex_t Zoom"), N_("Next zoom (from the history of zooms)"),
2268                  "zoom_next"),
2269     new ZoomVerb(SP_VERB_ZOOM_PREV, "ZoomPrev", N_("Pre_vious Zoom"), N_("Previous zoom (from the history of zooms)"),
2270                  "zoom_previous"),
2271     new ZoomVerb(SP_VERB_ZOOM_1_1, "Zoom1:0", N_("Zoom 1:_1"), N_("Zoom to 1:1"),
2272                  "zoom_1_to_1"),
2273     new ZoomVerb(SP_VERB_ZOOM_1_2, "Zoom1:2", N_("Zoom 1:_2"), N_("Zoom to 1:2"),
2274                  "zoom_1_to_2"),
2275     new ZoomVerb(SP_VERB_ZOOM_2_1, "Zoom2:1", N_("_Zoom 2:1"), N_("Zoom to 2:1"),
2276                  "zoom_2_to_1"),
2277 #ifdef HAVE_GTK_WINDOW_FULLSCREEN
2278     new ZoomVerb(SP_VERB_FULLSCREEN, "FullScreen", N_("_Fullscreen"), N_("Stretch this document window to full screen"),
2279                  "fullscreen"),
2280 #endif /* HAVE_GTK_WINDOW_FULLSCREEN */
2281     new ZoomVerb(SP_VERB_VIEW_NEW, "ViewNew", N_("Duplic_ate Window"), N_("Open a new window with the same document"),
2282                  "view_new"),
2283     new ZoomVerb(SP_VERB_VIEW_NEW_PREVIEW, "ViewNewPreview", N_("_New View Preview"),
2284                  N_("New View Preview"), NULL/*"view_new_preview"*/),
2286     new ZoomVerb(SP_VERB_VIEW_MODE_NORMAL, "ViewModeNormal", N_("_Normal"),
2287                  N_("Switch to normal display mode"), NULL),
2288     new ZoomVerb(SP_VERB_VIEW_MODE_OUTLINE, "ViewModeOutline", N_("_Outline"),
2289                  N_("Switch to outline (wireframe) display mode"), NULL),
2290     new ZoomVerb(SP_VERB_VIEW_MODE_TOGGLE, "ViewModeToggle", N_("_Toggle"),
2291                  N_("Toggle between normal and outline display modes"), NULL),
2293     new ZoomVerb(SP_VERB_VIEW_ICON_PREVIEW, "ViewIconPreview", N_("Ico_n Preview..."),
2294                  N_("Open a window to preview objects at different icon resolutions"), "view_icon_preview"),
2295     new ZoomVerb(SP_VERB_ZOOM_PAGE, "ZoomPage", N_("_Page"),
2296                  N_("Zoom to fit page in window"), "zoom_page"),
2297     new ZoomVerb(SP_VERB_ZOOM_PAGE_WIDTH, "ZoomPageWidth", N_("Page _Width"),
2298                  N_("Zoom to fit page width in window"), "zoom_pagewidth"),
2299     new ZoomVerb(SP_VERB_ZOOM_DRAWING, "ZoomDrawing", N_("_Drawing"),
2300                  N_("Zoom to fit drawing in window"), "zoom_draw"),
2301     new ZoomVerb(SP_VERB_ZOOM_SELECTION, "ZoomSelection", N_("_Selection"),
2302                  N_("Zoom to fit selection in window"), "zoom_select"),
2304     /* Dialogs */
2305     new DialogVerb(SP_VERB_DIALOG_DISPLAY, "DialogPreferences", N_("In_kscape Preferences..."),
2306                    N_("Edit global Inkscape preferences"), GTK_STOCK_PREFERENCES ),
2307     new DialogVerb(SP_VERB_DIALOG_NAMEDVIEW, "DialogDocumentProperties", N_("_Document Properties..."),
2308                    N_("Edit properties of this document (to be saved with the document)"), GTK_STOCK_PROPERTIES ),
2309     new DialogVerb(SP_VERB_DIALOG_METADATA, "DialogMetadata", N_("Document _Metadata..."),
2310                    N_("Edit document metadata (to be saved with the document)"), "document_metadata" ),
2311     new DialogVerb(SP_VERB_DIALOG_FILL_STROKE, "DialogFillStroke", N_("_Fill and Stroke..."),
2312                    N_("Edit objects' colors, gradients, stroke width, arrowheads, dash patterns..."), "fill_and_stroke"),
2313     // TRANSLATORS: "Swatches" means: color samples
2314     new DialogVerb(SP_VERB_DIALOG_SWATCHES, "DialogSwatches", N_("S_watches..."),
2315                    N_("Select colors from a swatches palette"), GTK_STOCK_SELECT_COLOR),
2316     new DialogVerb(SP_VERB_DIALOG_TRANSFORM, "DialogTransform", N_("Transfor_m..."),
2317                    N_("Precisely control objects' transformations"), "object_trans"),
2318     new DialogVerb(SP_VERB_DIALOG_ALIGN_DISTRIBUTE, "DialogAlignDistribute", N_("_Align and Distribute..."),
2319                    N_("Align and distribute objects"), "object_align"),
2320     new DialogVerb(SP_VERB_DIALOG_UNDO_HISTORY, "DialogUndoHistory", N_("Undo _History..."),
2321                    N_("Undo History"), "edit_undo_history"),
2322     new DialogVerb(SP_VERB_DIALOG_TEXT, "DialogText", N_("_Text and Font..."),
2323                    N_("View and select font family, font size and other text properties"), "object_font"),
2324     new DialogVerb(SP_VERB_DIALOG_XML_EDITOR, "DialogXMLEditor", N_("_XML Editor..."),
2325                    N_("View and edit the XML tree of the document"), "xml_editor"),
2326     new DialogVerb(SP_VERB_DIALOG_FIND, "DialogFind", N_("_Find..."),
2327                    N_("Find objects in document"), GTK_STOCK_FIND ),
2328     new DialogVerb(SP_VERB_DIALOG_DEBUG, "DialogDebug", N_("_Messages..."),
2329                    N_("View debug messages"), "messages"),
2330     new DialogVerb(SP_VERB_DIALOG_SCRIPT, "DialogScript", N_("S_cripts..."),
2331                    N_("Run scripts"), "scripts"),
2332     new DialogVerb(SP_VERB_DIALOG_TOGGLE, "DialogsToggle", N_("Show/Hide D_ialogs"),
2333                    N_("Show or hide all open dialogs"), "dialog_toggle"),
2334     new DialogVerb(SP_VERB_DIALOG_CLONETILER, "DialogClonetiler", N_("Create Tiled Clones..."),
2335                    N_("Create multiple clones of selected object, arranging them into a pattern or scattering"), "edit_create_tiled_clones"),
2336     new DialogVerb(SP_VERB_DIALOG_ITEM, "DialogObjectProperties", N_("_Object Properties..."),
2337                    N_("Edit the ID, locked and visible status, and other object properties"), "dialog_item_properties"),
2338 #ifdef WITH_INKBOARD
2339     new DialogVerb(SP_VERB_XMPP_CLIENT, "DialogXmppClient",
2340                    N_("_Instant Messaging..."), N_("Jabber Instant Messaging Client"), NULL),
2341 #endif
2342     new DialogVerb(SP_VERB_DIALOG_INPUT, "DialogInput", N_("_Input Devices..."),
2343                    N_("Configure extended input devices, such as a graphics tablet"), "input_devices"),
2344     new DialogVerb(SP_VERB_DIALOG_EXTENSIONEDITOR, "org.inkscape.dialogs.extensioneditor", N_("_Extensions..."),
2345                    N_("Query information about extensions"), NULL),
2346     new DialogVerb(SP_VERB_DIALOG_LAYERS, "DialogLayers", N_("Layer_s..."),
2347                    N_("View Layers"), "layers"),
2349     /* Help */
2350     new HelpVerb(SP_VERB_HELP_KEYS, "HelpKeys", N_("_Keys and Mouse"),
2351                  N_("Keys and mouse shortcuts reference"), "help_keys"),
2352     new HelpVerb(SP_VERB_HELP_ABOUT_EXTENSIONS, "HelpAboutExtensions", N_("About E_xtensions"),
2353                  N_("Information on Inkscape extensions"), NULL),
2354     new HelpVerb(SP_VERB_HELP_MEMORY, "HelpAboutMemory", N_("About _Memory"),
2355                  N_("Memory usage information"), "about_memory"),
2356     new HelpVerb(SP_VERB_HELP_ABOUT, "HelpAbout", N_("_About Inkscape"),
2357                  N_("Inkscape version, authors, license"), /*"help_about"*/"inkscape_options"),
2358     //new HelpVerb(SP_VERB_SHOW_LICENSE, "ShowLicense", N_("_License"),
2359     //           N_("Distribution terms"), /*"show_license"*/"inkscape_options"),
2361     /* Tutorials */
2362     new TutorialVerb(SP_VERB_TUTORIAL_BASIC, "TutorialsBasic", N_("Inkscape: _Basic"),
2363                      N_("Getting started with Inkscape"), NULL/*"tutorial_basic"*/),
2364     new TutorialVerb(SP_VERB_TUTORIAL_SHAPES, "TutorialsShapes", N_("Inkscape: _Shapes"),
2365                      N_("Using shape tools to create and edit shapes"), NULL),
2366     new TutorialVerb(SP_VERB_TUTORIAL_ADVANCED, "TutorialsAdvanced", N_("Inkscape: _Advanced"),
2367                      N_("Advanced Inkscape topics"), NULL/*"tutorial_advanced"*/),
2368     // TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize)
2369     new TutorialVerb(SP_VERB_TUTORIAL_TRACING, "TutorialsTracing", N_("Inkscape: T_racing"),
2370                      N_("Using bitmap tracing"), NULL/*"tutorial_tracing"*/),
2371     new TutorialVerb(SP_VERB_TUTORIAL_CALLIGRAPHY, "TutorialsCalligraphy", N_("Inkscape: _Calligraphy"),
2372                      N_("Using the Calligraphy pen tool"), NULL),
2373     new TutorialVerb(SP_VERB_TUTORIAL_DESIGN, "TutorialsDesign", N_("_Elements of Design"),
2374                      N_("Principles of design in the tutorial form"), NULL/*"tutorial_design"*/),
2375     new TutorialVerb(SP_VERB_TUTORIAL_TIPS, "TutorialsTips", N_("_Tips and Tricks"),
2376                      N_("Miscellaneous tips and tricks"), NULL/*"tutorial_tips"*/),
2378     /* Effect */
2379     new EffectLastVerb(SP_VERB_EFFECT_LAST, "EffectLast", N_("Previous Effect"),
2380                        N_("Repeat the last effect with the same settings"), NULL),
2381     new EffectLastVerb(SP_VERB_EFFECT_LAST_PREF, "EffectLastPref", N_("Previous Effect Settings..."),
2382                        N_("Repeat the last effect with new settings"), NULL),
2384     /* Fit Page */
2385     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_SELECTION, "FitCanvasToSelection", N_("Fit Page to Selection"),
2386                        N_("Fit the page to the current selection"), NULL),
2387     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_DRAWING, "FitCanvasToDrawing", N_("Fit Page to Drawing"),
2388                        N_("Fit the page to the drawing"), NULL),
2389     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING, "FitCanvasToSelectionOrDrawing", N_("Fit Page to Selection or Drawing"),
2390                        N_("Fit the page to the current selection or the drawing if there is no selection"), NULL),
2391     /* Footer */
2392     new Verb(SP_VERB_LAST, " '\"invalid id", NULL, NULL, NULL)
2393 };
2396 }  /* namespace Inkscape */
2398 /*
2399   Local Variables:
2400   mode:c++
2401   c-file-style:"stroustrup"
2402   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
2403   indent-tabs-mode:nil
2404   fill-column:99
2405   End:
2406 */
2407 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :