Code

Groundwork for new LPETool tool (which consists of subtools that are constructed...
[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  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #include <cstring>
31 #include <string>
32 #include <gtk/gtkstock.h>
34 #include "helper/action.h"
36 #include <gtkmm/messagedialog.h>
37 #include <gtkmm/filechooserdialog.h>
38 #include <gtkmm/stock.h>
40 #include "layer-manager.h"
41 #include "dialogs/text-edit.h"
42 #include "dialogs/xml-tree.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"
58 #include "bind/javabind.h"
60 #include "tools-switch.h"
61 #include "inkscape-private.h"
62 #include "file.h"
63 #include "help.h"
64 #include "document.h"
65 #include "desktop.h"
66 #include "message-stack.h"
67 #include "desktop-handles.h"
68 #include "selection-chemistry.h"
69 #include "path-chemistry.h"
70 #include "text-chemistry.h"
71 #include "ui/dialog/dialog-manager.h"
72 #include "ui/dialog/inkscape-preferences.h"
73 #include "interface.h"
74 #include "prefs-utils.h"
75 #include "splivarot.h"
76 #include "sp-namedview.h"
77 #include "sp-flowtext.h"
78 #include "layer-fns.h"
79 #include "node-context.h"
80 #include "select-context.h"
81 #include "seltrans.h"
82 #include "gradient-context.h"
83 #include "shape-editor.h"
84 #include "draw-context.h"
85 #include "gradient-drag.h"
86 #include "sp-guide.h"
87 #include "display/curve.h"
89 /**
90  * \brief Return the name without underscores and ellipsis, for use in dialog
91  * titles, etc. Allocated memory must be freed by caller.
92  */
93 gchar *
94 sp_action_get_title(SPAction const *action)
95 {
96     char const *src = action->name;
97     gchar *ret = g_new(gchar, strlen(src) + 1);
98     unsigned ri = 0;
100     for (unsigned si = 0 ; ; si++)  {
101         int const c = src[si];
102         if ( c != '_' && c != '.' ) {
103             ret[ri] = c;
104             ri++;
105             if (c == '\0') {
106                 return ret;
107             }
108         }
109     }
111 } // end of sp_action_get_title()
113 namespace Inkscape {
115 /** \brief A class to encompass all of the verbs which deal with
116            file operations. */
117 class FileVerb : public Verb {
118 private:
119     static void perform(SPAction *action, void *mydata, void *otherdata);
120     static SPActionEventVector vector;
121 protected:
122     virtual SPAction *make_action(Inkscape::UI::View::View *view);
123 public:
124     /** \brief Use the Verb initializer with the same parameters. */
125     FileVerb(unsigned int const code,
126              gchar const *id,
127              gchar const *name,
128              gchar const *tip,
129              gchar const *image) :
130         Verb(code, id, name, tip, image)
131     { }
132 }; /* FileVerb class */
134 /** \brief A class to encompass all of the verbs which deal with
135            edit operations. */
136 class EditVerb : public Verb {
137 private:
138     static void perform(SPAction *action, void *mydata, void *otherdata);
139     static SPActionEventVector vector;
140 protected:
141     virtual SPAction *make_action(Inkscape::UI::View::View *view);
142 public:
143     /** \brief Use the Verb initializer with the same parameters. */
144     EditVerb(unsigned int const code,
145              gchar const *id,
146              gchar const *name,
147              gchar const *tip,
148              gchar const *image) :
149         Verb(code, id, name, tip, image)
150     { }
151 }; /* EditVerb class */
153 /** \brief A class to encompass all of the verbs which deal with
154            selection operations. */
155 class SelectionVerb : public Verb {
156 private:
157     static void perform(SPAction *action, void *mydata, void *otherdata);
158     static SPActionEventVector vector;
159 protected:
160     virtual SPAction *make_action(Inkscape::UI::View::View *view);
161 public:
162     /** \brief Use the Verb initializer with the same parameters. */
163     SelectionVerb(unsigned int const code,
164                   gchar const *id,
165                   gchar const *name,
166                   gchar const *tip,
167                   gchar const *image) :
168         Verb(code, id, name, tip, image)
169     { }
170 }; /* SelectionVerb class */
172 /** \brief A class to encompass all of the verbs which deal with
173            layer operations. */
174 class LayerVerb : public Verb {
175 private:
176     static void perform(SPAction *action, void *mydata, void *otherdata);
177     static SPActionEventVector vector;
178 protected:
179     virtual SPAction *make_action(Inkscape::UI::View::View *view);
180 public:
181     /** \brief Use the Verb initializer with the same parameters. */
182     LayerVerb(unsigned int const code,
183               gchar const *id,
184               gchar const *name,
185               gchar const *tip,
186               gchar const *image) :
187         Verb(code, id, name, tip, image)
188     { }
189 }; /* LayerVerb class */
191 /** \brief A class to encompass all of the verbs which deal with
192            operations related to objects. */
193 class ObjectVerb : public Verb {
194 private:
195     static void perform(SPAction *action, void *mydata, void *otherdata);
196     static SPActionEventVector vector;
197 protected:
198     virtual SPAction *make_action(Inkscape::UI::View::View *view);
199 public:
200     /** \brief Use the Verb initializer with the same parameters. */
201     ObjectVerb(unsigned int const code,
202                gchar const *id,
203                gchar const *name,
204                gchar const *tip,
205                gchar const *image) :
206         Verb(code, id, name, tip, image)
207     { }
208 }; /* ObjectVerb class */
210 /** \brief A class to encompass all of the verbs which deal with
211            operations relative to context. */
212 class ContextVerb : public Verb {
213 private:
214     static void perform(SPAction *action, void *mydata, void *otherdata);
215     static SPActionEventVector vector;
216 protected:
217     virtual SPAction *make_action(Inkscape::UI::View::View *view);
218 public:
219     /** \brief Use the Verb initializer with the same parameters. */
220     ContextVerb(unsigned int const code,
221                 gchar const *id,
222                 gchar const *name,
223                 gchar const *tip,
224                 gchar const *image) :
225         Verb(code, id, name, tip, image)
226     { }
227 }; /* ContextVerb class */
229 /** \brief A class to encompass all of the verbs which deal with
230            zoom operations. */
231 class ZoomVerb : public Verb {
232 private:
233     static void perform(SPAction *action, void *mydata, void *otherdata);
234     static SPActionEventVector vector;
235 protected:
236     virtual SPAction *make_action(Inkscape::UI::View::View *view);
237 public:
238     /** \brief Use the Verb initializer with the same parameters. */
239     ZoomVerb(unsigned int const code,
240              gchar const *id,
241              gchar const *name,
242              gchar const *tip,
243              gchar const *image) :
244         Verb(code, id, name, tip, image)
245     { }
246 }; /* ZoomVerb class */
249 /** \brief A class to encompass all of the verbs which deal with
250            dialog operations. */
251 class DialogVerb : public Verb {
252 private:
253     static void perform(SPAction *action, void *mydata, void *otherdata);
254     static SPActionEventVector vector;
255 protected:
256     virtual SPAction *make_action(Inkscape::UI::View::View *view);
257 public:
258     /** \brief Use the Verb initializer with the same parameters. */
259     DialogVerb(unsigned int const code,
260                gchar const *id,
261                gchar const *name,
262                gchar const *tip,
263                gchar const *image) :
264         Verb(code, id, name, tip, image)
265     { }
266 }; /* DialogVerb class */
268 /** \brief A class to encompass all of the verbs which deal with
269            help operations. */
270 class HelpVerb : public Verb {
271 private:
272     static void perform(SPAction *action, void *mydata, void *otherdata);
273     static SPActionEventVector vector;
274 protected:
275     virtual SPAction *make_action(Inkscape::UI::View::View *view);
276 public:
277     /** \brief Use the Verb initializer with the same parameters. */
278     HelpVerb(unsigned int const code,
279              gchar const *id,
280              gchar const *name,
281              gchar const *tip,
282              gchar const *image) :
283         Verb(code, id, name, tip, image)
284     { }
285 }; /* HelpVerb class */
287 /** \brief A class to encompass all of the verbs which deal with
288            tutorial operations. */
289 class TutorialVerb : public Verb {
290 private:
291     static void perform(SPAction *action, void *mydata, void *otherdata);
292     static SPActionEventVector vector;
293 protected:
294     virtual SPAction *make_action(Inkscape::UI::View::View *view);
295 public:
296     /** \brief Use the Verb initializer with the same parameters. */
297     TutorialVerb(unsigned int const code,
298                  gchar const *id,
299                  gchar const *name,
300                  gchar const *tip,
301                  gchar const *image) :
302         Verb(code, id, name, tip, image)
303     { }
304 }; /* TutorialVerb class */
306 /** \brief A class to encompass all of the verbs which deal with
307            text operations. */
308 class TextVerb : public Verb {
309 private:
310     static void perform(SPAction *action, void *mydata, void *otherdata);
311     static SPActionEventVector vector;
312 protected:
313     virtual SPAction *make_action(Inkscape::UI::View::View *view);
314 public:
315     /** \brief Use the Verb initializer with the same parameters. */
316     TextVerb(unsigned int const code,
317               gchar const *id,
318               gchar const *name,
319               gchar const *tip,
320               gchar const *image) :
321         Verb(code, id, name, tip, image)
322     { }
323 }; //TextVerb : public Verb
325 Verb::VerbTable Verb::_verbs;
326 Verb::VerbIDTable Verb::_verb_ids;
328 /** \brief  Create a verb without a code.
330     This function calls the other constructor for all of the parameters,
331     but generates the code.  It is important to READ THE OTHER DOCUMENTATION
332     it has important details in it.  To generate the code a static is
333     used which starts at the last static value: \c SP_VERB_LAST.  For
334     each call it is incremented.  The list of allocated verbs is kept
335     in the \c _verbs hashtable which is indexed by the \c code.
336 */
337 Verb::Verb(gchar const *id, gchar const *name, gchar const *tip, gchar const *image) :
338     _actions(NULL), _id(id), _name(name), _tip(tip), _image(image)
340     static int count = SP_VERB_LAST;
342     count++;
343     _code = count;
344     _verbs.insert(VerbTable::value_type(count, this));
345     _verb_ids.insert(VerbIDTable::value_type(_id, this));
347     return;
350 /** \brief  Destroy a verb.
352       The only allocated variable is the _actions variable.  If it has
353     been allocated it is deleted.
354 */
355 Verb::~Verb(void)
357     /// \todo all the actions need to be cleaned up first.
358     if (_actions != NULL) {
359         delete _actions;
360     }
362     return;
365 /** \brief  Verbs are no good without actions.  This is a place holder
366             for a function that every subclass should write.  Most
367             can be written using \c make_action_helper.
368     \param  view  Which view the action should be created for.
369     \return NULL to represent error (this function shouldn't ever be called)
370 */
371 SPAction *
372 Verb::make_action(Inkscape::UI::View::View */*view*/)
374     //std::cout << "make_action" << std::endl;
375     return NULL;
378 /** \brief  Create an action for a \c FileVerb
379     \param  view  Which view the action should be created for
380     \return The built action.
382     Calls \c make_action_helper with the \c vector.
383 */
384 SPAction *
385 FileVerb::make_action(Inkscape::UI::View::View *view)
387     //std::cout << "fileverb: make_action: " << &vector << std::endl;
388     return make_action_helper(view, &vector);
391 /** \brief  Create an action for a \c EditVerb
392     \param  view  Which view the action should be created for
393     \return The built action.
395     Calls \c make_action_helper with the \c vector.
396 */
397 SPAction *
398 EditVerb::make_action(Inkscape::UI::View::View *view)
400     //std::cout << "editverb: make_action: " << &vector << std::endl;
401     return make_action_helper(view, &vector);
404 /** \brief  Create an action for a \c SelectionVerb
405     \param  view  Which view the action should be created for
406     \return The built action.
408     Calls \c make_action_helper with the \c vector.
409 */
410 SPAction *
411 SelectionVerb::make_action(Inkscape::UI::View::View *view)
413     return make_action_helper(view, &vector);
416 /** \brief  Create an action for a \c LayerVerb
417     \param  view  Which view the action should be created for
418     \return The built action.
420     Calls \c make_action_helper with the \c vector.
421 */
422 SPAction *
423 LayerVerb::make_action(Inkscape::UI::View::View *view)
425     return make_action_helper(view, &vector);
428 /** \brief  Create an action for a \c ObjectVerb
429     \param  view  Which view the action should be created for
430     \return The built action.
432     Calls \c make_action_helper with the \c vector.
433 */
434 SPAction *
435 ObjectVerb::make_action(Inkscape::UI::View::View *view)
437     return make_action_helper(view, &vector);
440 /** \brief  Create an action for a \c ContextVerb
441     \param  view  Which view the action should be created for
442     \return The built action.
444     Calls \c make_action_helper with the \c vector.
445 */
446 SPAction *
447 ContextVerb::make_action(Inkscape::UI::View::View *view)
449     return make_action_helper(view, &vector);
452 /** \brief  Create an action for a \c ZoomVerb
453     \param  view  Which view the action should be created for
454     \return The built action.
456     Calls \c make_action_helper with the \c vector.
457 */
458 SPAction *
459 ZoomVerb::make_action(Inkscape::UI::View::View *view)
461     return make_action_helper(view, &vector);
464 /** \brief  Create an action for a \c DialogVerb
465     \param  view  Which view the action should be created for
466     \return The built action.
468     Calls \c make_action_helper with the \c vector.
469 */
470 SPAction *
471 DialogVerb::make_action(Inkscape::UI::View::View *view)
473     return make_action_helper(view, &vector);
476 /** \brief  Create an action for a \c HelpVerb
477     \param  view  Which view the action should be created for
478     \return The built action.
480     Calls \c make_action_helper with the \c vector.
481 */
482 SPAction *
483 HelpVerb::make_action(Inkscape::UI::View::View *view)
485     return make_action_helper(view, &vector);
488 /** \brief  Create an action for a \c TutorialVerb
489     \param  view  Which view the action should be created for
490     \return The built action.
492     Calls \c make_action_helper with the \c vector.
493 */
494 SPAction *
495 TutorialVerb::make_action(Inkscape::UI::View::View *view)
497     return make_action_helper(view, &vector);
500 /** \brief  Create an action for a \c TextVerb
501     \param  view  Which view the action should be created for
502     \return The built action.
504     Calls \c make_action_helper with the \c vector.
505 */
506 SPAction *
507 TextVerb::make_action(Inkscape::UI::View::View *view)
509     return make_action_helper(view, &vector);
512 /** \brief A quick little convience function to make building actions
513            a little bit easier.
514     \param  view    Which view the action should be created for.
515     \param  vector  The function vector for the verb.
516     \return The created action.
518     This function does a couple of things.  The most obvious is that
519     it allocates and creates the action.  When it does this it
520     translates the \c _name and \c _tip variables.  This allows them
521     to be staticly allocated easily, and get translated in the end.  Then,
522     if the action gets crated, a listener is added to the action with
523     the vector that is passed in.
524 */
525 SPAction *
526 Verb::make_action_helper(Inkscape::UI::View::View *view, SPActionEventVector *vector, void *in_pntr)
528     SPAction *action;
530     //std::cout << "Adding action: " << _code << std::endl;
531     action = sp_action_new(view, _id, _(_name),
532                            _(_tip), _image, this);
534     if (action != NULL) {
535         if (in_pntr == NULL) {
536             nr_active_object_add_listener(
537                 (NRActiveObject *) action,
538                 (NRObjectEventVector *) vector,
539                 sizeof(SPActionEventVector),
540                 reinterpret_cast<void *>(_code)
541             );
542         } else {
543             nr_active_object_add_listener(
544                 (NRActiveObject *) action,
545                 (NRObjectEventVector *) vector,
546                 sizeof(SPActionEventVector),
547                 in_pntr
548             );
549         }
550     }
552     return action;
555 /** \brief  A function to get an action if it exists, or otherwise to
556             build it.
557     \param  view  The view which this action would relate to
558     \return The action, or NULL if there is an error.
560     This function will get the action for a given view for this verb.  It
561     will create the verb if it can't be found in the ActionTable.  Also,
562     if the \c ActionTable has not been created, it gets created by this
563     function.
565     If the action is created, it's sensitivity must be determined.  The
566     default for a new action is that it is sensitive.  If the value in
567     \c _default_sensitive is \c false, then the sensitivity must be
568     removed.  Also, if the view being created is based on the same
569     document as a view already created, the sensitivity should be the
570     same as views on that document.  A view with the same document is
571     looked for, and the sensitivity is matched.  Unfortunately, this is
572     currently a linear search.
573 */
574 SPAction *
575 Verb::get_action(Inkscape::UI::View::View *view)
577     SPAction *action = NULL;
579     if ( _actions == NULL ) {
580         _actions = new ActionTable;
581     }
582     ActionTable::iterator action_found = _actions->find(view);
584     if (action_found != _actions->end()) {
585         action = action_found->second;
586     } else {
587         action = this->make_action(view);
589         // if (action == NULL) printf("Hmm, NULL in %s\n", _name);
590         if (action == NULL) printf("Hmm, NULL in %s\n", _name);
591         if (!_default_sensitive) {
592             sp_action_set_sensitive(action, 0);
593         } else {
594             for (ActionTable::iterator cur_action = _actions->begin();
595                  cur_action != _actions->end() && view != NULL;
596                  cur_action++) {
597                 if (cur_action->first != NULL && cur_action->first->doc() == view->doc()) {
598                     sp_action_set_sensitive(action, cur_action->second->sensitive);
599                     break;
600                 }
601             }
602         }
604         _actions->insert(ActionTable::value_type(view, action));
605     }
607     return action;
610 void
611 Verb::sensitive(SPDocument *in_doc, bool in_sensitive)
613     // printf("Setting sensitivity of \"%s\" to %d\n", _name, in_sensitive);
614     if (_actions != NULL) {
615         for (ActionTable::iterator cur_action = _actions->begin();
616              cur_action != _actions->end();
617              cur_action++) {
618             if (in_doc == NULL || (cur_action->first != NULL && cur_action->first->doc() == in_doc)) {
619                 sp_action_set_sensitive(cur_action->second, in_sensitive ? 1 : 0);
620             }
621         }
622     }
624     if (in_doc == NULL) {
625         _default_sensitive = in_sensitive;
626     }
628     return;
631 /** \brief Accessor to get the tooltip for verb as localised string */ 
632 gchar const *
633 Verb::get_tip (void) 
635         return _(_tip); 
638 void
639 Verb::name(SPDocument *in_doc, Glib::ustring in_name)
641     if (_actions != NULL) {
642         for (ActionTable::iterator cur_action = _actions->begin();
643              cur_action != _actions->end();
644              cur_action++) {
645             if (in_doc == NULL || (cur_action->first != NULL && cur_action->first->doc() == in_doc)) {
646                 sp_action_set_name(cur_action->second, in_name);
647             }
648         }
649     }
652 /** \brief  A function to remove the action associated with a view.
653     \param  view  Which view's actions should be removed.
654     \return None
656     This function looks for the action in \c _actions.  If it is
657     found then it is unreferenced and the entry in the action
658     table is erased.
659 */
660 void
661 Verb::delete_view(Inkscape::UI::View::View *view)
663     if (_actions == NULL) return;
664     if (_actions->empty()) return;
666 #if 0
667     static int count = 0;
668     std::cout << count++ << std::endl;
669 #endif
671     ActionTable::iterator action_found = _actions->find(view);
673     if (action_found != _actions->end()) {
674         SPAction *action = action_found->second;
675         nr_object_unref(NR_OBJECT(action));
676         _actions->erase(action_found);
677     }
679     return;
682 /** \brief  A function to delete a view from all verbs
683     \param  view  Which view's actions should be removed.
684     \return None
686     This function first looks through _base_verbs and deteles
687     the view from all of those views.  If \c _verbs is not empty
688     then all of the entries in that table have all of the views
689     deleted also.
690 */
691 void
692 Verb::delete_all_view(Inkscape::UI::View::View *view)
694     for (int i = 0; i <= SP_VERB_LAST; i++) {
695         if (_base_verbs[i])
696           _base_verbs[i]->delete_view(view);
697     }
699     if (!_verbs.empty()) {
700         for (VerbTable::iterator thisverb = _verbs.begin();
701              thisverb != _verbs.end(); thisverb++) {
702             Inkscape::Verb *verbpntr = thisverb->second;
703             // std::cout << "Delete In Verb: " << verbpntr->_name << std::endl;
704             verbpntr->delete_view(view);
705         }
706     }
708     return;
711 /** \brief  A function to turn a \c code into a Verb for dynamically
712             created Verbs.
713     \param  code  What code is being looked for
714     \return The found Verb of NULL if none is found.
716     This function basically just looks through the \c _verbs hash
717     table.  STL does all the work.
718 */
719 Verb *
720 Verb::get_search(unsigned int code)
722     Verb *verb = NULL;
723     VerbTable::iterator verb_found = _verbs.find(code);
725     if (verb_found != _verbs.end()) {
726         verb = verb_found->second;
727     }
729     return verb;
732 /** \brief  Find a Verb using it's ID
733     \param  id  Which id to search for
735     This function uses the \c _verb_ids has table to find the
736     verb by it's id.  Should be much faster than previous
737     implementations.
738 */
739 Verb *
740 Verb::getbyid(gchar const *id)
742     Verb *verb = NULL;
743     VerbIDTable::iterator verb_found = _verb_ids.find(id);
745     if (verb_found != _verb_ids.end()) {
746         verb = verb_found->second;
747     }
749     if (verb == NULL)
750         printf("Unable to find: %s\n", id);
752     return verb;
755 /** \brief  Decode the verb code and take appropriate action */
756 void
757 FileVerb::perform(SPAction *action, void *data, void */*pdata*/)
759 #if 0
760     /* These aren't used, but are here to remind people not to use
761        the CURRENT_DOCUMENT macros unless they really have to. */
762     Inkscape::UI::View::View *current_view = sp_action_get_view(action);
763     SPDocument *current_document = current_view->doc();
764 #endif
766     SPDesktop *desktop = dynamic_cast<SPDesktop*>(sp_action_get_view(action));
767     g_assert(desktop != NULL);
768     Gtk::Window *parent = desktop->getToplevel();
769     g_assert(parent != NULL);
771     switch ((long) data) {
772         case SP_VERB_FILE_NEW:
773             sp_file_new_default();
774             break;
775         case SP_VERB_FILE_OPEN:
776             sp_file_open_dialog(*parent, NULL, NULL);
777             break;
778         case SP_VERB_FILE_REVERT:
779             sp_file_revert_dialog();
780             break;
781         case SP_VERB_FILE_SAVE:
782             sp_file_save(*parent, NULL, NULL);
783             break;
784         case SP_VERB_FILE_SAVE_AS:
785             sp_file_save_as(*parent, NULL, NULL);
786             break;
787         case SP_VERB_FILE_SAVE_A_COPY:
788             sp_file_save_a_copy(*parent, NULL, NULL);
789             break;
790         case SP_VERB_FILE_PRINT:
791             sp_file_print(*parent);
792             break;
793         case SP_VERB_FILE_VACUUM:
794             sp_file_vacuum();
795             break;
796         case SP_VERB_FILE_PRINT_PREVIEW:
797             sp_file_print_preview(NULL, NULL);
798             break;
799         case SP_VERB_FILE_IMPORT:
800             sp_file_import(*parent);
801             break;
802         case SP_VERB_FILE_EXPORT:
803             sp_file_export_dialog(NULL);
804             break;
805         case SP_VERB_FILE_IMPORT_FROM_OCAL:
806             sp_file_import_from_ocal(*parent);
807             break;
808         case SP_VERB_FILE_EXPORT_TO_OCAL:
809             sp_file_export_to_ocal(*parent);
810             break;
811         case SP_VERB_FILE_NEXT_DESKTOP:
812             inkscape_switch_desktops_next();
813             break;
814         case SP_VERB_FILE_PREV_DESKTOP:
815             inkscape_switch_desktops_prev();
816             break;
817         case SP_VERB_FILE_CLOSE_VIEW:
818             sp_ui_close_view(NULL);
819             break;
820         case SP_VERB_FILE_QUIT:
821             sp_file_exit();
822             break;
823         default:
824             break;
825     }
828 } // end of sp_verb_action_file_perform()
830 /** \brief  Decode the verb code and take appropriate action */
831 void
832 EditVerb::perform(SPAction *action, void *data, void */*pdata*/)
834     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
835     if (!dt)
836         return;
837     SPEventContext *ec = dt->event_context;
839     switch (reinterpret_cast<std::size_t>(data)) {
840         case SP_VERB_EDIT_UNDO:
841             sp_undo(dt, sp_desktop_document(dt));
842             break;
843         case SP_VERB_EDIT_REDO:
844             sp_redo(dt, sp_desktop_document(dt));
845             break;
846         case SP_VERB_EDIT_CUT:
847             sp_selection_cut(dt);
848             break;
849         case SP_VERB_EDIT_COPY:
850             sp_selection_copy();
851             break;
852         case SP_VERB_EDIT_PASTE:
853             sp_selection_paste(dt, false);
854             break;
855         case SP_VERB_EDIT_PASTE_STYLE:
856             sp_selection_paste_style(dt);
857             break;
858         case SP_VERB_EDIT_PASTE_SIZE:
859             sp_selection_paste_size(dt, true, true);
860             break;
861         case SP_VERB_EDIT_PASTE_SIZE_X:
862             sp_selection_paste_size(dt, true, false);
863             break;
864         case SP_VERB_EDIT_PASTE_SIZE_Y:
865             sp_selection_paste_size(dt, false, true);
866             break;
867         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY:
868             sp_selection_paste_size_separately(dt, true, true);
869             break;
870         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_X:
871             sp_selection_paste_size_separately(dt, true, false);
872             break;
873         case SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_Y:
874             sp_selection_paste_size_separately(dt, false, true);
875             break;
876         case SP_VERB_EDIT_PASTE_IN_PLACE:
877             sp_selection_paste(dt, true);
878             break;
879         case SP_VERB_EDIT_PASTE_LIVEPATHEFFECT:
880             sp_selection_paste_livepatheffect(dt);
881             break;
882         case SP_VERB_EDIT_REMOVE_LIVEPATHEFFECT:
883             sp_selection_remove_livepatheffect(dt);
884             break;
885         case SP_VERB_EDIT_REMOVE_FILTER:
886             sp_selection_remove_filter(dt);
887             break;
888         case SP_VERB_EDIT_DELETE:
889             sp_selection_delete(dt);
890             break;
891         case SP_VERB_EDIT_DUPLICATE:
892             sp_selection_duplicate(dt);
893             break;
894         case SP_VERB_EDIT_CLONE:
895             sp_selection_clone(dt);
896             break;
897         case SP_VERB_EDIT_UNLINK_CLONE:
898             sp_selection_unlink(dt);
899             break;
900         case SP_VERB_EDIT_RELINK_CLONE:
901             sp_selection_relink(dt);
902             break;
903         case SP_VERB_EDIT_CLONE_SELECT_ORIGINAL:
904             sp_select_clone_original(dt);
905             break;
906         case SP_VERB_EDIT_SELECTION_2_MARKER:
907             sp_selection_to_marker(dt);
908             break;
909         case SP_VERB_EDIT_SELECTION_2_GUIDES:
910             sp_selection_to_guides(dt);
911             break;
912         case SP_VERB_EDIT_TILE:
913             sp_selection_tile(dt);
914             break;
915         case SP_VERB_EDIT_UNTILE:
916             sp_selection_untile(dt);
917             break;
918         case SP_VERB_EDIT_CLEAR_ALL:
919             sp_edit_clear_all(dt);
920             break;
921         case SP_VERB_EDIT_SELECT_ALL:
922             if (tools_isactive(dt, TOOLS_NODES)) {
923                 SP_NODE_CONTEXT(ec)->shape_editor->select_all_from_subpath(false);
924             } else {
925                 sp_edit_select_all(dt);
926             }
927             break;
928         case SP_VERB_EDIT_INVERT:
929             if (tools_isactive(dt, TOOLS_NODES)) {
930                 SP_NODE_CONTEXT(ec)->shape_editor->select_all_from_subpath(true);
931             } else {
932                 sp_edit_invert(dt);
933             }
934             break;
935         case SP_VERB_EDIT_SELECT_ALL_IN_ALL_LAYERS:
936             if (tools_isactive(dt, TOOLS_NODES)) {
937                 SP_NODE_CONTEXT(ec)->shape_editor->select_all(false);
938             } else {
939                 sp_edit_select_all_in_all_layers(dt);
940             }
941             break;
942         case SP_VERB_EDIT_INVERT_IN_ALL_LAYERS:
943             if (tools_isactive(dt, TOOLS_NODES)) {
944                 SP_NODE_CONTEXT(ec)->shape_editor->select_all(true);
945             } else {
946                 sp_edit_invert_in_all_layers(dt);
947             }
948             break;
950         case SP_VERB_EDIT_SELECT_NEXT:
951             if (tools_isactive(dt, TOOLS_NODES)) {
952                 SP_NODE_CONTEXT(ec)->shape_editor->select_next();
953             } else if (tools_isactive(dt, TOOLS_GRADIENT)
954                        && ec->_grdrag->isNonEmpty()) {
955                 sp_gradient_context_select_next (ec);
956             } else {
957                 sp_selection_item_next(dt);
958             }
959             break;
960         case SP_VERB_EDIT_SELECT_PREV:
961             if (tools_isactive(dt, TOOLS_NODES)) {
962                 SP_NODE_CONTEXT(ec)->shape_editor->select_prev();
963             } else if (tools_isactive(dt, TOOLS_GRADIENT)
964                        && ec->_grdrag->isNonEmpty()) {
965                 sp_gradient_context_select_prev (ec);
966             } else {
967                 sp_selection_item_prev(dt);
968             }
969             break;
971         case SP_VERB_EDIT_DESELECT:
972             if (tools_isactive(dt, TOOLS_NODES)) {
973                 SP_NODE_CONTEXT(ec)->shape_editor->deselect();
974             } else {
975                 sp_desktop_selection(dt)->clear();
976             }
977             break;
979         case SP_VERB_EDIT_GUIDES_AROUND_PAGE:
980             sp_guide_create_guides_around_page(dt);
981             break;
983         case SP_VERB_EDIT_NEXT_PATHEFFECT_PARAMETER:
984             sp_selection_next_patheffect_param(dt);
985             break;
986         default:
987             break;
988     }
990 } // end of sp_verb_action_edit_perform()
992 /** \brief  Decode the verb code and take appropriate action */
993 void
994 SelectionVerb::perform(SPAction *action, void *data, void */*pdata*/)
996     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
998     if (!dt)
999         return;
1001     g_assert(dt->_dlg_mgr != NULL);
1003     switch (reinterpret_cast<std::size_t>(data)) {
1004         case SP_VERB_SELECTION_TO_FRONT:
1005             sp_selection_raise_to_top(dt);
1006             break;
1007         case SP_VERB_SELECTION_TO_BACK:
1008             sp_selection_lower_to_bottom(dt);
1009             break;
1010         case SP_VERB_SELECTION_RAISE:
1011             sp_selection_raise(dt);
1012             break;
1013         case SP_VERB_SELECTION_LOWER:
1014             sp_selection_lower(dt);
1015             break;
1016         case SP_VERB_SELECTION_GROUP:
1017             sp_selection_group(dt);
1018             break;
1019         case SP_VERB_SELECTION_UNGROUP:
1020             sp_selection_ungroup(dt);
1021             break;
1023         case SP_VERB_SELECTION_TEXTTOPATH:
1024             text_put_on_path();
1025             break;
1026         case SP_VERB_SELECTION_TEXTFROMPATH:
1027             text_remove_from_path();
1028             break;
1029         case SP_VERB_SELECTION_REMOVE_KERNS:
1030             text_remove_all_kerns();
1031             break;
1033         case SP_VERB_SELECTION_UNION:
1034             sp_selected_path_union(dt);
1035             break;
1036         case SP_VERB_SELECTION_INTERSECT:
1037             sp_selected_path_intersect(dt);
1038             break;
1039         case SP_VERB_SELECTION_DIFF:
1040             sp_selected_path_diff(dt);
1041             break;
1042         case SP_VERB_SELECTION_SYMDIFF:
1043             sp_selected_path_symdiff(dt);
1044             break;
1046         case SP_VERB_SELECTION_CUT:
1047             sp_selected_path_cut(dt);
1048             break;
1049         case SP_VERB_SELECTION_SLICE:
1050             sp_selected_path_slice(dt);
1051             break;
1053         case SP_VERB_SELECTION_OFFSET:
1054             sp_selected_path_offset(dt);
1055             break;
1056         case SP_VERB_SELECTION_OFFSET_SCREEN:
1057             sp_selected_path_offset_screen(dt, 1);
1058             break;
1059         case SP_VERB_SELECTION_OFFSET_SCREEN_10:
1060             sp_selected_path_offset_screen(dt, 10);
1061             break;
1062         case SP_VERB_SELECTION_INSET:
1063             sp_selected_path_inset(dt);
1064             break;
1065         case SP_VERB_SELECTION_INSET_SCREEN:
1066             sp_selected_path_inset_screen(dt, 1);
1067             break;
1068         case SP_VERB_SELECTION_INSET_SCREEN_10:
1069             sp_selected_path_inset_screen(dt, 10);
1070             break;
1071         case SP_VERB_SELECTION_DYNAMIC_OFFSET:
1072             sp_selected_path_create_offset_object_zero(dt);
1073             tools_switch_current(TOOLS_NODES);
1074             break;
1075         case SP_VERB_SELECTION_LINKED_OFFSET:
1076             sp_selected_path_create_updating_offset_object_zero(dt);
1077             tools_switch_current(TOOLS_NODES);
1078             break;
1080         case SP_VERB_SELECTION_OUTLINE:
1081             sp_selected_path_outline(dt);
1082             break;
1083         case SP_VERB_SELECTION_SIMPLIFY:
1084             sp_selected_path_simplify(dt);
1085             break;
1086         case SP_VERB_SELECTION_REVERSE:
1087             sp_selected_path_reverse(dt);
1088             break;
1089         case SP_VERB_SELECTION_TRACE:
1090             inkscape_dialogs_unhide();
1091             dt->_dlg_mgr->showDialog("Trace");
1092             break;
1093         case SP_VERB_SELECTION_CREATE_BITMAP:
1094             sp_selection_create_bitmap_copy(dt);
1095             break;
1097         case SP_VERB_SELECTION_COMBINE:
1098             sp_selected_path_combine(dt);
1099             break;
1100         case SP_VERB_SELECTION_BREAK_APART:
1101             sp_selected_path_break_apart(dt);
1102             break;
1103         case SP_VERB_SELECTION_GRIDTILE:
1104             inkscape_dialogs_unhide();
1105             dt->_dlg_mgr->showDialog("TileDialog");
1106             break;
1107         default:
1108             break;
1109     }
1111 } // end of sp_verb_action_selection_perform()
1113 /** \brief  Decode the verb code and take appropriate action */
1114 void
1115 LayerVerb::perform(SPAction *action, void *data, void */*pdata*/)
1117     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1118     unsigned int verb = reinterpret_cast<std::size_t>(data);
1120     if ( !dt || !dt->currentLayer() ) {
1121         return;
1122     }
1124     switch (verb) {
1125         case SP_VERB_LAYER_NEW: {
1126             Inkscape::UI::Dialogs::LayerPropertiesDialog::showCreate(dt, dt->currentLayer());
1127             break;
1128         }
1129         case SP_VERB_LAYER_RENAME: {
1130             Inkscape::UI::Dialogs::LayerPropertiesDialog::showRename(dt, dt->currentLayer());
1131             break;
1132         }
1133         case SP_VERB_LAYER_NEXT: {
1134             SPObject *next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer());
1135             if (next) {
1136                 dt->setCurrentLayer(next);
1137                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_NEXT,
1138                                  _("Switch to next layer"));
1139                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Switched to next layer."));
1140             } else {
1141                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot go past last layer."));
1142             }
1143             break;
1144         }
1145         case SP_VERB_LAYER_PREV: {
1146             SPObject *prev=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer());
1147             if (prev) {
1148                 dt->setCurrentLayer(prev);
1149                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_PREV,
1150                                  _("Switch to previous layer"));
1151                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Switched to previous layer."));
1152             } else {
1153                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot go before first layer."));
1154             }
1155             break;
1156         }
1157         case SP_VERB_LAYER_MOVE_TO_NEXT: {
1158             sp_selection_to_next_layer(dt);
1159             break;
1160         }
1161         case SP_VERB_LAYER_MOVE_TO_PREV: {
1162             sp_selection_to_prev_layer(dt);
1163             break;
1164         }
1165         case SP_VERB_LAYER_TO_TOP:
1166         case SP_VERB_LAYER_TO_BOTTOM:
1167         case SP_VERB_LAYER_RAISE:
1168         case SP_VERB_LAYER_LOWER: {
1169             if ( dt->currentLayer() == dt->currentRoot() ) {
1170                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1171                 return;
1172             }
1174             SPItem *layer=SP_ITEM(dt->currentLayer());
1175             g_return_if_fail(layer != NULL);
1177             SPObject *old_pos=SP_OBJECT_NEXT(layer);
1179             switch (verb) {
1180                 case SP_VERB_LAYER_TO_TOP:
1181                     layer->raiseToTop();
1182                     break;
1183                 case SP_VERB_LAYER_TO_BOTTOM:
1184                     layer->lowerToBottom();
1185                     break;
1186                 case SP_VERB_LAYER_RAISE:
1187                     layer->raiseOne();
1188                     break;
1189                 case SP_VERB_LAYER_LOWER:
1190                     layer->lowerOne();
1191                     break;
1192             }
1194             if ( SP_OBJECT_NEXT(layer) != old_pos ) {
1195                 char const *message = NULL;
1196                 Glib::ustring description = "";
1197                 switch (verb) {
1198                     case SP_VERB_LAYER_TO_TOP:
1199                         message = g_strdup_printf(_("Raised layer <b>%s</b>."), layer->defaultLabel());
1200                         description = _("Layer to top");
1201                         break;
1202                     case SP_VERB_LAYER_RAISE:
1203                         message = g_strdup_printf(_("Raised layer <b>%s</b>."), layer->defaultLabel());
1204                         description = _("Raise layer");
1205                         break;
1206                     case SP_VERB_LAYER_TO_BOTTOM:
1207                         message = g_strdup_printf(_("Lowered layer <b>%s</b>."), layer->defaultLabel());
1208                         description = _("Layer to bottom");
1209                         break;
1210                     case SP_VERB_LAYER_LOWER:
1211                         message = g_strdup_printf(_("Lowered layer <b>%s</b>."), layer->defaultLabel());
1212                         description = _("Lower layer");
1213                         break;
1214                 };
1215                 sp_document_done(sp_desktop_document(dt), verb, description);
1216                 if (message) {
1217                     dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, message);
1218                     g_free((void *) message);
1219                 }
1220             } else {
1221                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Cannot move layer any further."));
1222             }
1224             break;
1225         }
1226         case SP_VERB_LAYER_DUPLICATE: {
1227             if ( dt->currentLayer() != dt->currentRoot() ) {
1228                 SPObject *new_layer = Inkscape::create_layer(dt->currentRoot(), dt->currentLayer(), LPOS_BELOW);
1229                 if ( dt->currentLayer()->label() ) {
1230                     gchar* name = g_strdup_printf(_("%s copy"), dt->currentLayer()->label());
1231                     dt->layer_manager->renameLayer( new_layer, name );
1232                     g_free(name);
1233                 }
1235                 sp_edit_select_all(dt);
1236                 sp_selection_duplicate(dt, true);
1237                 sp_selection_to_prev_layer(dt, true);
1238                 dt->setCurrentLayer(new_layer);
1239                 sp_edit_select_all(dt);
1241                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_DUPLICATE,
1242                                  _("Duplicate layer"));
1243                 
1244                 // TRANSLATORS: this means "The layer has been duplicated."
1245                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Duplicated layer."));
1246             } else {
1247                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1248             }
1249             break;
1250         }
1251         case SP_VERB_LAYER_DELETE: {
1252             if ( dt->currentLayer() != dt->currentRoot() ) {
1253                 sp_desktop_selection(dt)->clear();
1254                 SPObject *old_layer=dt->currentLayer();
1256                 sp_object_ref(old_layer, NULL);
1257                 SPObject *survivor=Inkscape::next_layer(dt->currentRoot(), old_layer);
1258                 if (!survivor) {
1259                     survivor = Inkscape::previous_layer(dt->currentRoot(), old_layer);
1260                 }
1262                 /* Deleting the old layer before switching layers is a hack to trigger the
1263                  * listeners of the deletion event (as happens when old_layer is deleted using the
1264                  * xml editor).  See
1265                  * http://sourceforge.net/tracker/index.php?func=detail&aid=1339397&group_id=93438&atid=604306
1266                  */
1267                 old_layer->deleteObject();
1268                 sp_object_unref(old_layer, NULL);
1269                 if (survivor) {
1270                     dt->setCurrentLayer(survivor);
1271                 }
1273                 sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_DELETE,
1274                                  _("Delete layer"));
1276                 // TRANSLATORS: this means "The layer has been deleted."
1277                 dt->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Deleted layer."));
1278             } else {
1279                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1280             }
1281             break;
1282         }
1283         case SP_VERB_LAYER_SOLO: {
1284             if ( dt->currentLayer() == dt->currentRoot() ) {
1285                 dt->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("No current layer."));
1286             } else {
1287                 dt->toggleLayerSolo( dt->currentLayer() );
1288                 sp_document_maybe_done(sp_desktop_document(dt), "layer:solo", SP_VERB_LAYER_SOLO, _("Toggle layer solo"));
1289             }
1290             break;
1291         }
1292     }
1294     return;
1295 } // end of sp_verb_action_layer_perform()
1297 /** \brief  Decode the verb code and take appropriate action */
1298 void
1299 ObjectVerb::perform( SPAction *action, void *data, void */*pdata*/ )
1301     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1302     if (!dt)
1303         return;
1305     SPEventContext *ec = dt->event_context;
1307     Inkscape::Selection *sel = sp_desktop_selection(dt);
1309     if (sel->isEmpty())
1310         return;
1312     boost::optional<NR::Rect> bbox = sel->bounds();
1313     if (!bbox) {
1314         return;
1315     }
1316     // If the rotation center of the selection is visible, choose it as reference point
1317     // for horizontal and vertical flips. Otherwise, take the center of the bounding box.
1318     NR::Point center;
1319     if (tools_isactive(dt, TOOLS_SELECT) && sel->center() && SP_SELECT_CONTEXT(ec)->_seltrans->centerIsVisible())
1320         center = *sel->center();
1321     else
1322         center = bbox->midpoint();
1324     switch (reinterpret_cast<std::size_t>(data)) {
1325         case SP_VERB_OBJECT_ROTATE_90_CW:
1326             sp_selection_rotate_90_cw(dt);
1327             break;
1328         case SP_VERB_OBJECT_ROTATE_90_CCW:
1329             sp_selection_rotate_90_ccw(dt);
1330             break;
1331         case SP_VERB_OBJECT_FLATTEN:
1332             sp_selection_remove_transform(dt);
1333             break;
1334         case SP_VERB_OBJECT_TO_CURVE:
1335             sp_selected_path_to_curves(dt);
1336             break;
1337         case SP_VERB_OBJECT_FLOW_TEXT:
1338             text_flow_into_shape();
1339             break;
1340         case SP_VERB_OBJECT_UNFLOW_TEXT:
1341             text_unflow();
1342             break;
1343         case SP_VERB_OBJECT_FLOWTEXT_TO_TEXT:
1344             flowtext_to_text();
1345             break;
1346         case SP_VERB_OBJECT_FLIP_HORIZONTAL:
1347             // When working with the node tool ...
1348             if (tools_isactive(dt, TOOLS_NODES)) {
1349                 Inkscape::NodePath::Node *active_node = Inkscape::NodePath::Path::active_node;
1351                 // ... and one of the nodes is currently mouseovered ...
1352                 if (active_node) {
1354                     // ... flip the selected nodes about that node
1355                     SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::X, active_node->pos);
1356                 } else {
1358                     // ... or else about the center of their bounding box.
1359                     SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::X);
1360                 }
1362             // When working with the selector tool, flip the selection about its rotation center
1363             // (if it is visible) or about the center of the bounding box.
1364             } else {
1365                 sp_selection_scale_relative(sel, center, NR::scale(-1.0, 1.0));
1366             }
1367             sp_document_done(sp_desktop_document(dt), SP_VERB_OBJECT_FLIP_HORIZONTAL,
1368                              _("Flip horizontally"));
1369             break;
1370         case SP_VERB_OBJECT_FLIP_VERTICAL:
1371             // The behaviour is analogous to flipping horizontally
1372             if (tools_isactive(dt, TOOLS_NODES)) {
1373                 Inkscape::NodePath::Node *active_node = Inkscape::NodePath::Path::active_node;
1374                 if (active_node) {
1375                     SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::Y, active_node->pos);
1376                 } else {
1377                     SP_NODE_CONTEXT(ec)->shape_editor->flip(NR::Y);
1378                 }
1379             } else {
1380                 sp_selection_scale_relative(sel, center, NR::scale(1.0, -1.0));
1381             }
1382             sp_document_done(sp_desktop_document(dt), SP_VERB_OBJECT_FLIP_VERTICAL,
1383                              _("Flip vertically"));
1384             break;
1385         case SP_VERB_OBJECT_SET_MASK:
1386             sp_selection_set_mask(dt, false, false);
1387             break;
1388         case SP_VERB_OBJECT_EDIT_MASK:
1389             sp_selection_edit_clip_or_mask(dt, false);
1390             break;
1391         case SP_VERB_OBJECT_UNSET_MASK:
1392             sp_selection_unset_mask(dt, false);
1393             break;
1394         case SP_VERB_OBJECT_SET_CLIPPATH:
1395             sp_selection_set_mask(dt, true, false);
1396             break;
1397         case SP_VERB_OBJECT_EDIT_CLIPPATH:
1398             sp_selection_edit_clip_or_mask(dt, true);
1399             break;
1400         case SP_VERB_OBJECT_UNSET_CLIPPATH:
1401             sp_selection_unset_mask(dt, true);
1402             break;
1403         default:
1404             break;
1405     }
1407 } // end of sp_verb_action_object_perform()
1409 /** \brief  Decode the verb code and take appropriate action */
1410 void
1411 ContextVerb::perform(SPAction *action, void *data, void */*pdata*/)
1413     SPDesktop *dt;
1414     sp_verb_t verb;
1415     int vidx;
1417     dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1419     if (!dt)
1420         return;
1422     verb = (sp_verb_t)GPOINTER_TO_INT((gpointer)data);
1424     /** \todo !!! hopefully this can go away soon and actions can look after
1425      * themselves
1426      */
1427     for (vidx = SP_VERB_CONTEXT_SELECT; vidx <= SP_VERB_CONTEXT_PAINTBUCKET_PREFS; vidx++)
1428     {
1429         SPAction *tool_action= get((sp_verb_t)vidx)->get_action(dt);
1430         if (tool_action) {
1431             sp_action_set_active(tool_action, vidx == (int)verb);
1432         }
1433     }
1435     switch (verb) {
1436         case SP_VERB_CONTEXT_SELECT:
1437             tools_switch_current(TOOLS_SELECT);
1438             break;
1439         case SP_VERB_CONTEXT_NODE:
1440             tools_switch_current(TOOLS_NODES);
1441             break;
1442         case SP_VERB_CONTEXT_TWEAK:
1443             tools_switch_current(TOOLS_TWEAK);
1444             break;
1445         case SP_VERB_CONTEXT_RECT:
1446             tools_switch_current(TOOLS_SHAPES_RECT);
1447             break;
1448         case SP_VERB_CONTEXT_3DBOX:
1449             tools_switch_current(TOOLS_SHAPES_3DBOX);
1450             break;
1451         case SP_VERB_CONTEXT_ARC:
1452             tools_switch_current(TOOLS_SHAPES_ARC);
1453             break;
1454         case SP_VERB_CONTEXT_STAR:
1455             tools_switch_current(TOOLS_SHAPES_STAR);
1456             break;
1457         case SP_VERB_CONTEXT_SPIRAL:
1458             tools_switch_current(TOOLS_SHAPES_SPIRAL);
1459             break;
1460         case SP_VERB_CONTEXT_PENCIL:
1461             tools_switch_current(TOOLS_FREEHAND_PENCIL);
1462             break;
1463         case SP_VERB_CONTEXT_PEN:
1464             tools_switch_current(TOOLS_FREEHAND_PEN);
1465             break;
1466         case SP_VERB_CONTEXT_CALLIGRAPHIC:
1467             tools_switch_current(TOOLS_CALLIGRAPHIC);
1468             break;
1469         case SP_VERB_CONTEXT_TEXT:
1470             tools_switch_current(TOOLS_TEXT);
1471             break;
1472         case SP_VERB_CONTEXT_GRADIENT:
1473             tools_switch_current(TOOLS_GRADIENT);
1474             break;
1475         case SP_VERB_CONTEXT_ZOOM:
1476             tools_switch_current(TOOLS_ZOOM);
1477             break;
1478         case SP_VERB_CONTEXT_DROPPER:
1479             tools_switch_current(TOOLS_DROPPER);
1480             break;
1481         case SP_VERB_CONTEXT_CONNECTOR:
1482             tools_switch_current (TOOLS_CONNECTOR);
1483             break;
1484         case SP_VERB_CONTEXT_PAINTBUCKET:
1485             tools_switch_current(TOOLS_PAINTBUCKET);
1486             break;
1487         case SP_VERB_CONTEXT_ERASER:
1488             tools_switch_current(TOOLS_ERASER);
1489             break;
1490         case SP_VERB_CONTEXT_LPETOOL:
1491             tools_switch_current(TOOLS_LPETOOL);
1492             break;
1494         case SP_VERB_CONTEXT_SELECT_PREFS:
1495             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SELECTOR);
1496             dt->_dlg_mgr->showDialog("InkscapePreferences");
1497             break;
1498         case SP_VERB_CONTEXT_NODE_PREFS:
1499             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_NODE);
1500             dt->_dlg_mgr->showDialog("InkscapePreferences");
1501             break;
1502         case SP_VERB_CONTEXT_TWEAK_PREFS:
1503             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_TWEAK);
1504             dt->_dlg_mgr->showDialog("InkscapePreferences");
1505             break;
1506         case SP_VERB_CONTEXT_RECT_PREFS:
1507             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_RECT);
1508             dt->_dlg_mgr->showDialog("InkscapePreferences");
1509             break;
1510         case SP_VERB_CONTEXT_3DBOX_PREFS:
1511             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_3DBOX);
1512             dt->_dlg_mgr->showDialog("InkscapePreferences");
1513             break;
1514         case SP_VERB_CONTEXT_ARC_PREFS:
1515             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
1516             dt->_dlg_mgr->showDialog("InkscapePreferences");
1517             break;
1518         case SP_VERB_CONTEXT_STAR_PREFS:
1519             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_STAR);
1520             dt->_dlg_mgr->showDialog("InkscapePreferences");
1521             break;
1522         case SP_VERB_CONTEXT_SPIRAL_PREFS:
1523             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
1524             dt->_dlg_mgr->showDialog("InkscapePreferences");
1525             break;
1526         case SP_VERB_CONTEXT_PENCIL_PREFS:
1527             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_PENCIL);
1528             dt->_dlg_mgr->showDialog("InkscapePreferences");
1529             break;
1530         case SP_VERB_CONTEXT_PEN_PREFS:
1531             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_PEN);
1532             dt->_dlg_mgr->showDialog("InkscapePreferences");
1533             break;
1534         case SP_VERB_CONTEXT_CALLIGRAPHIC_PREFS:
1535             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_CALLIGRAPHY);
1536             dt->_dlg_mgr->showDialog("InkscapePreferences");
1537             break;
1538         case SP_VERB_CONTEXT_TEXT_PREFS:
1539             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_TEXT);
1540             dt->_dlg_mgr->showDialog("InkscapePreferences");
1541             break;
1542         case SP_VERB_CONTEXT_GRADIENT_PREFS:
1543             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_GRADIENT);
1544             dt->_dlg_mgr->showDialog("InkscapePreferences");
1545             break;
1546         case SP_VERB_CONTEXT_ZOOM_PREFS:
1547             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_ZOOM);
1548             dt->_dlg_mgr->showDialog("InkscapePreferences");
1549             break;
1550         case SP_VERB_CONTEXT_DROPPER_PREFS:
1551             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_DROPPER);
1552             dt->_dlg_mgr->showDialog("InkscapePreferences");
1553             break;
1554         case SP_VERB_CONTEXT_CONNECTOR_PREFS:
1555             prefs_set_int_attribute ("dialogs.preferences", "page", PREFS_PAGE_TOOLS_CONNECTOR);
1556             dt->_dlg_mgr->showDialog("InkscapePreferences");
1557             break;
1558         case SP_VERB_CONTEXT_PAINTBUCKET_PREFS:
1559             prefs_set_int_attribute ("dialogs.preferences", "page", PREFS_PAGE_TOOLS_PAINTBUCKET);
1560             dt->_dlg_mgr->showDialog("InkscapePreferences");
1561             break;
1562         case SP_VERB_CONTEXT_ERASER_PREFS:
1563             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_ERASER);
1564             dt->_dlg_mgr->showDialog("InkscapePreferences");
1565             break;
1566         case SP_VERB_CONTEXT_LPETOOL_PREFS:
1567             g_print ("TODO: Create preferences page for LPETool\n");
1568             prefs_set_int_attribute("dialogs.preferences", "page", PREFS_PAGE_TOOLS_LPETOOL);
1569             dt->_dlg_mgr->showDialog("InkscapePreferences");
1570             break;
1572         default:
1573             break;
1574     }
1576 } // end of sp_verb_action_ctx_perform()
1578 /** \brief  Decode the verb code and take appropriate action */
1579 void
1580 TextVerb::perform(SPAction *action, void */*data*/, void */*pdata*/)
1582     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1583     if (!dt)
1584         return;
1586     SPDocument *doc = sp_desktop_document(dt);
1587     (void)doc;
1588     Inkscape::XML::Node *repr = SP_OBJECT_REPR(dt->namedview);
1589     (void)repr;
1592 /** \brief  Decode the verb code and take appropriate action */
1593 void
1594 ZoomVerb::perform(SPAction *action, void *data, void */*pdata*/)
1596     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1597     if (!dt)
1598         return;
1599     SPEventContext *ec = dt->event_context;
1601     SPDocument *doc = sp_desktop_document(dt);
1603     Inkscape::XML::Node *repr = SP_OBJECT_REPR(dt->namedview);
1605     gdouble zoom_inc =
1606         prefs_get_double_attribute_limited( "options.zoomincrement",
1607                                             "value", 1.414213562, 1.01, 10 );
1609     switch (GPOINTER_TO_INT(data)) {
1610         case SP_VERB_ZOOM_IN:
1611         {
1612             gint mul = 1 + gobble_key_events(
1613                  GDK_KP_Add, 0); // with any mask
1614             // While drawing with the pen/pencil tool, zoom towards the end of the unfinished path
1615             if (tools_isactive(dt, TOOLS_FREEHAND_PENCIL) || tools_isactive(dt, TOOLS_FREEHAND_PEN)) {
1616                 SPCurve *rc = SP_DRAW_CONTEXT(ec)->red_curve;
1617                 if (!rc->is_empty()) {
1618                     Geom::Point const zoom_to (*rc->last_point());
1619                     dt->zoom_relative_keep_point(zoom_to, mul*zoom_inc);
1620                     break;
1621                 }
1622             }
1624             NR::Rect const d = dt->get_display_area();
1625             dt->zoom_relative( d.midpoint()[NR::X], d.midpoint()[NR::Y], mul*zoom_inc);
1626             break;
1627         }
1628         case SP_VERB_ZOOM_OUT:
1629         {
1630             gint mul = 1 + gobble_key_events(
1631                  GDK_KP_Subtract, 0); // with any mask
1632             // While drawing with the pen/pencil tool, zoom away from the end of the unfinished path
1633             if (tools_isactive(dt, TOOLS_FREEHAND_PENCIL) || tools_isactive(dt, TOOLS_FREEHAND_PEN)) {
1634                 SPCurve *rc = SP_DRAW_CONTEXT(ec)->red_curve;
1635                 if (!rc->is_empty()) {
1636                     Geom::Point const zoom_to (*rc->last_point());
1637                     dt->zoom_relative_keep_point(zoom_to, 1 / (mul*zoom_inc));
1638                     break;
1639                 }
1640             }
1642             NR::Rect const d = dt->get_display_area();
1643             dt->zoom_relative( d.midpoint()[NR::X], d.midpoint()[NR::Y], 1 / (mul*zoom_inc) );
1644             break;
1645         }
1646         case SP_VERB_ZOOM_1_1:
1647         {
1648             NR::Rect const d = dt->get_display_area();
1649             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 1.0 );
1650             break;
1651         }
1652         case SP_VERB_ZOOM_1_2:
1653         {
1654             NR::Rect const d = dt->get_display_area();
1655             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 0.5);
1656             break;
1657         }
1658         case SP_VERB_ZOOM_2_1:
1659         {
1660             NR::Rect const d = dt->get_display_area();
1661             dt->zoom_absolute( d.midpoint()[NR::X], d.midpoint()[NR::Y], 2.0 );
1662             break;
1663         }
1664         case SP_VERB_ZOOM_PAGE:
1665             dt->zoom_page();
1666             break;
1667         case SP_VERB_ZOOM_PAGE_WIDTH:
1668             dt->zoom_page_width();
1669             break;
1670         case SP_VERB_ZOOM_DRAWING:
1671             dt->zoom_drawing();
1672             break;
1673         case SP_VERB_ZOOM_SELECTION:
1674             dt->zoom_selection();
1675             break;
1676         case SP_VERB_ZOOM_NEXT:
1677             dt->next_zoom();
1678             break;
1679         case SP_VERB_ZOOM_PREV:
1680             dt->prev_zoom();
1681             break;
1682         case SP_VERB_TOGGLE_RULERS:
1683             dt->toggleRulers();
1684             break;
1685         case SP_VERB_TOGGLE_SCROLLBARS:
1686             dt->toggleScrollbars();
1687             break;
1688         case SP_VERB_TOGGLE_GUIDES:
1689             sp_namedview_toggle_guides(doc, repr);
1690             break;
1691         case SP_VERB_TOGGLE_SNAPPING:
1692             dt->toggleSnapping();
1693             break;        
1694         case SP_VERB_TOGGLE_GRID:
1695             dt->toggleGrids();
1696             break;
1697 #ifdef HAVE_GTK_WINDOW_FULLSCREEN
1698         case SP_VERB_FULLSCREEN:
1699             dt->fullscreen();
1700             break;
1701 #endif /* HAVE_GTK_WINDOW_FULLSCREEN */
1702         case SP_VERB_VIEW_NEW:
1703             sp_ui_new_view();
1704             break;
1705         case SP_VERB_VIEW_NEW_PREVIEW:
1706             sp_ui_new_view_preview();
1707             break;
1708         case SP_VERB_VIEW_MODE_NORMAL:
1709             dt->setDisplayModeNormal();
1710             break;
1711         case SP_VERB_VIEW_MODE_NO_FILTERS:
1712             dt->setDisplayModeNoFilters();
1713             break;
1714         case SP_VERB_VIEW_MODE_OUTLINE:
1715             dt->setDisplayModeOutline();
1716             break;
1717         case SP_VERB_VIEW_MODE_TOGGLE:
1718             dt->displayModeToggle();
1719             break;
1720         case SP_VERB_VIEW_CMS_TOGGLE:
1721             dt->toggleColorProfAdjust();
1722             break;
1723         case SP_VERB_VIEW_ICON_PREVIEW:
1724             inkscape_dialogs_unhide();
1725             dt->_dlg_mgr->showDialog("IconPreviewPanel");
1726             break;
1727         default:
1728             break;
1729     }
1731     dt->updateNow();
1733 } // end of sp_verb_action_zoom_perform()
1735 /** \brief  Decode the verb code and take appropriate action */
1736 void
1737 DialogVerb::perform(SPAction *action, void *data, void */*pdata*/)
1739     if (reinterpret_cast<std::size_t>(data) != SP_VERB_DIALOG_TOGGLE) {
1740         // unhide all when opening a new dialog
1741         inkscape_dialogs_unhide();
1742     }
1744     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1745     g_assert(dt->_dlg_mgr != NULL);
1747     switch (reinterpret_cast<std::size_t>(data)) {
1748         case SP_VERB_DIALOG_DISPLAY:
1749             //sp_display_dialog();
1750             dt->_dlg_mgr->showDialog("InkscapePreferences");
1751             break;
1752         case SP_VERB_DIALOG_METADATA:
1753             // sp_desktop_dialog();
1754             dt->_dlg_mgr->showDialog("DocumentMetadata");
1755             break;
1756         case SP_VERB_DIALOG_NAMEDVIEW:
1757             // sp_desktop_dialog();
1758             dt->_dlg_mgr->showDialog("DocumentProperties");
1759             break;
1760         case SP_VERB_DIALOG_FILL_STROKE:
1761             dt->_dlg_mgr->showDialog("FillAndStroke");
1762             break;
1763         case SP_VERB_DIALOG_SWATCHES:
1764             dt->_dlg_mgr->showDialog("Swatches");
1765             break;
1766         case SP_VERB_DIALOG_TRANSFORM:
1767             dt->_dlg_mgr->showDialog("Transformation");
1768             break;
1769         case SP_VERB_DIALOG_ALIGN_DISTRIBUTE:
1770             dt->_dlg_mgr->showDialog("AlignAndDistribute");
1771             break;
1772         case SP_VERB_DIALOG_TEXT:
1773             sp_text_edit_dialog();
1774             break;
1775         case SP_VERB_DIALOG_XML_EDITOR:
1776             sp_xml_tree_dialog();
1777             break;
1778         case SP_VERB_DIALOG_FIND:
1779             sp_find_dialog();
1780 //              Please test the new find dialog if you have time:
1781 //            dt->_dlg_mgr->showDialog("Find");
1782             break;
1783         case SP_VERB_DIALOG_DEBUG:
1784             dt->_dlg_mgr->showDialog("Messages");
1785             break;
1786         case SP_VERB_DIALOG_SCRIPT:
1787             //dt->_dlg_mgr->showDialog("Script");
1788             Inkscape::Bind::JavaBindery::getInstance()->showConsole();
1789             break;
1790         case SP_VERB_DIALOG_UNDO_HISTORY:
1791             dt->_dlg_mgr->showDialog("UndoHistory");
1792             break;
1793         case SP_VERB_DIALOG_TOGGLE:
1794             inkscape_dialogs_toggle();
1795             break;
1796         case SP_VERB_DIALOG_CLONETILER:
1797             clonetiler_dialog();
1798             break;
1799         case SP_VERB_DIALOG_ITEM:
1800             sp_item_dialog();
1801             break;
1802 #ifdef WITH_INKBOARD
1803         case SP_VERB_XMPP_CLIENT:
1804         {
1805             Inkscape::Whiteboard::SessionManager::showClient();
1806             break;
1807         }
1808 #endif
1809         case SP_VERB_DIALOG_INPUT:
1810             sp_input_dialog();
1811             break;
1812         case SP_VERB_DIALOG_INPUT2:
1813             dt->_dlg_mgr->showDialog("InputDevices");
1814             break;
1815         case SP_VERB_DIALOG_EXTENSIONEDITOR:
1816             dt->_dlg_mgr->showDialog("ExtensionEditor");
1817             break;
1818         case SP_VERB_DIALOG_LAYERS:
1819             dt->_dlg_mgr->showDialog("LayersPanel");
1820             break;
1821         case SP_VERB_DIALOG_LIVE_PATH_EFFECT:
1822             dt->_dlg_mgr->showDialog("LivePathEffect");
1823             break;
1824         case SP_VERB_DIALOG_FILTER_EFFECTS:
1825             dt->_dlg_mgr->showDialog("FilterEffectsDialog");
1826             break;
1827         case SP_VERB_DIALOG_SVG_FONTS:
1828             dt->_dlg_mgr->showDialog("SvgFontsDialog");
1829             break;
1830         default:
1831             break;
1832     }
1833 } // end of sp_verb_action_dialog_perform()
1835 /** \brief  Decode the verb code and take appropriate action */
1836 void
1837 HelpVerb::perform(SPAction *action, void *data, void */*pdata*/)
1839     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
1840     g_assert(dt->_dlg_mgr != NULL);
1842     switch (reinterpret_cast<std::size_t>(data)) {
1843         case SP_VERB_HELP_ABOUT:
1844             sp_help_about();
1845             break;
1846         case SP_VERB_HELP_ABOUT_EXTENSIONS: {
1847             // Inkscape::UI::Dialogs::ExtensionsPanel *panel = new Inkscape::UI::Dialogs::ExtensionsPanel();
1848             // panel->set_full(true);
1849             // show_panel( *panel, "dialogs.aboutextensions", SP_VERB_HELP_ABOUT_EXTENSIONS );
1850             break;
1851         }
1853         /*
1854         case SP_VERB_SHOW_LICENSE:
1855             // TRANSLATORS: See "tutorial-basic.svg" comment.
1856             sp_help_open_tutorial(NULL, (gpointer) _("gpl-2.svg"));
1857             break;
1858         */
1860         case SP_VERB_HELP_MEMORY:
1861             inkscape_dialogs_unhide();
1862             dt->_dlg_mgr->showDialog("Memory");
1863             break;
1864         default:
1865             break;
1866     }
1867 } // end of sp_verb_action_help_perform()
1869 /** \brief  Decode the verb code and take appropriate action */
1870 void
1871 TutorialVerb::perform(SPAction */*action*/, void *data, void */*pdata*/)
1873     switch (reinterpret_cast<std::size_t>(data)) {
1874         case SP_VERB_TUTORIAL_BASIC:
1875             /* TRANSLATORS: If you have translated the tutorial-basic.svg file to your language,
1876                then translate this string as "tutorial-basic.LANG.svg" (where LANG is your language
1877                code); otherwise leave as "tutorial-basic.svg". */
1878             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-basic.svg"));
1879             break;
1880         case SP_VERB_TUTORIAL_SHAPES:
1881             // TRANSLATORS: See "tutorial-basic.svg" comment.
1882             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-shapes.svg"));
1883             break;
1884         case SP_VERB_TUTORIAL_ADVANCED:
1885             // TRANSLATORS: See "tutorial-basic.svg" comment.
1886             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-advanced.svg"));
1887             break;
1888         case SP_VERB_TUTORIAL_TRACING:
1889             // TRANSLATORS: See "tutorial-basic.svg" comment.
1890             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-tracing.svg"));
1891             break;
1892         case SP_VERB_TUTORIAL_CALLIGRAPHY:
1893             // TRANSLATORS: See "tutorial-basic.svg" comment.
1894             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-calligraphy.svg"));
1895             break;
1896         case SP_VERB_TUTORIAL_DESIGN:
1897             // TRANSLATORS: See "tutorial-basic.svg" comment.
1898             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-elements.svg"));
1899             break;
1900         case SP_VERB_TUTORIAL_TIPS:
1901             // TRANSLATORS: See "tutorial-basic.svg" comment.
1902             sp_help_open_tutorial(NULL, (gpointer)_("tutorial-tips.svg"));
1903             break;
1904         default:
1905             break;
1906     }
1907 } // end of sp_verb_action_tutorial_perform()
1910 /**
1911  * Action vector to define functions called if a staticly defined file verb
1912  * is called.
1913  */
1914 SPActionEventVector FileVerb::vector =
1915             {{NULL},FileVerb::perform, NULL, NULL, NULL, NULL};
1916 /**
1917  * Action vector to define functions called if a staticly defined edit verb is
1918  * called.
1919  */
1920 SPActionEventVector EditVerb::vector =
1921             {{NULL},EditVerb::perform, NULL, NULL, NULL, NULL};
1923 /**
1924  * Action vector to define functions called if a staticly defined selection
1925  * verb is called
1926  */
1927 SPActionEventVector SelectionVerb::vector =
1928             {{NULL},SelectionVerb::perform, NULL, NULL, NULL, NULL};
1930 /**
1931  * Action vector to define functions called if a staticly defined layer
1932  * verb is called
1933  */
1934 SPActionEventVector LayerVerb::vector =
1935             {{NULL}, LayerVerb::perform, NULL, NULL, NULL, NULL};
1937 /**
1938  * Action vector to define functions called if a staticly defined object
1939  * editing verb is called
1940  */
1941 SPActionEventVector ObjectVerb::vector =
1942             {{NULL},ObjectVerb::perform, NULL, NULL, NULL, NULL};
1944 /**
1945  * Action vector to define functions called if a staticly defined context
1946  * verb is called
1947  */
1948 SPActionEventVector ContextVerb::vector =
1949             {{NULL},ContextVerb::perform, NULL, NULL, NULL, NULL};
1951 /**
1952  * Action vector to define functions called if a staticly defined zoom verb
1953  * is called
1954  */
1955 SPActionEventVector ZoomVerb::vector =
1956             {{NULL},ZoomVerb::perform, NULL, NULL, NULL, NULL};
1959 /**
1960  * Action vector to define functions called if a staticly defined dialog verb
1961  * is called
1962  */
1963 SPActionEventVector DialogVerb::vector =
1964             {{NULL},DialogVerb::perform, NULL, NULL, NULL, NULL};
1966 /**
1967  * Action vector to define functions called if a staticly defined help verb
1968  * is called
1969  */
1970 SPActionEventVector HelpVerb::vector =
1971             {{NULL},HelpVerb::perform, NULL, NULL, NULL, NULL};
1973 /**
1974  * Action vector to define functions called if a staticly defined tutorial verb
1975  * is called
1976  */
1977 SPActionEventVector TutorialVerb::vector =
1978             {{NULL},TutorialVerb::perform, NULL, NULL, NULL, NULL};
1980 /**
1981  * Action vector to define functions called if a staticly defined tutorial verb
1982  * is called
1983  */
1984 SPActionEventVector TextVerb::vector =
1985             {{NULL},TextVerb::perform, NULL, NULL, NULL, NULL};
1988 /* *********** Effect Last ********** */
1990 /** \brief A class to represent the last effect issued */
1991 class EffectLastVerb : public Verb {
1992 private:
1993     static void perform(SPAction *action, void *mydata, void *otherdata);
1994     static SPActionEventVector vector;
1995 protected:
1996     virtual SPAction *make_action(Inkscape::UI::View::View *view);
1997 public:
1998     /** \brief Use the Verb initializer with the same parameters. */
1999     EffectLastVerb(unsigned int const code,
2000                    gchar const *id,
2001                    gchar const *name,
2002                    gchar const *tip,
2003                    gchar const *image) :
2004         Verb(code, id, name, tip, image)
2005     {
2006         set_default_sensitive(false);
2007     }
2008 }; /* EffectLastVerb class */
2010 /**
2011  * The vector to attach in the last effect verb.
2012  */
2013 SPActionEventVector EffectLastVerb::vector =
2014             {{NULL},EffectLastVerb::perform, NULL, NULL, NULL, NULL};
2016 /** \brief  Create an action for a \c EffectLastVerb
2017     \param  view  Which view the action should be created for
2018     \return The built action.
2020     Calls \c make_action_helper with the \c vector.
2021 */
2022 SPAction *
2023 EffectLastVerb::make_action(Inkscape::UI::View::View *view)
2025     return make_action_helper(view, &vector);
2028 /** \brief  Decode the verb code and take appropriate action */
2029 void
2030 EffectLastVerb::perform(SPAction *action, void *data, void */*pdata*/)
2032     /* These aren't used, but are here to remind people not to use
2033        the CURRENT_DOCUMENT macros unless they really have to. */
2034     Inkscape::UI::View::View *current_view = sp_action_get_view(action);
2035     // SPDocument *current_document = SP_VIEW_DOCUMENT(current_view);
2036     Inkscape::Extension::Effect *effect = Inkscape::Extension::Effect::get_last_effect();
2038     if (effect == NULL) return;
2039     if (current_view == NULL) return;
2041     switch ((long) data) {
2042         case SP_VERB_EFFECT_LAST_PREF:
2043             effect->prefs(current_view);
2044             break;
2045         case SP_VERB_EFFECT_LAST:
2046             effect->effect(current_view);
2047             break;
2048         default:
2049             return;
2050     }
2052     return;
2054 /* *********** End Effect Last ********** */
2056 /* *********** Fit Canvas ********** */
2058 /** \brief A class to represent the canvas fitting verbs */
2059 class FitCanvasVerb : public Verb {
2060 private:
2061     static void perform(SPAction *action, void *mydata, void *otherdata);
2062     static SPActionEventVector vector;
2063 protected:
2064     virtual SPAction *make_action(Inkscape::UI::View::View *view);
2065 public:
2066     /** \brief Use the Verb initializer with the same parameters. */
2067     FitCanvasVerb(unsigned int const code,
2068                    gchar const *id,
2069                    gchar const *name,
2070                    gchar const *tip,
2071                    gchar const *image) :
2072         Verb(code, id, name, tip, image)
2073     {
2074         set_default_sensitive(false);
2075     }
2076 }; /* FitCanvasVerb class */
2078 /**
2079  * The vector to attach in the fit canvas verb.
2080  */
2081 SPActionEventVector FitCanvasVerb::vector =
2082             {{NULL},FitCanvasVerb::perform, NULL, NULL, NULL, NULL};
2084 /** \brief  Create an action for a \c FitCanvasVerb
2085     \param  view  Which view the action should be created for
2086     \return The built action.
2088     Calls \c make_action_helper with the \c vector.
2089 */
2090 SPAction *
2091 FitCanvasVerb::make_action(Inkscape::UI::View::View *view)
2093     SPAction *action = make_action_helper(view, &vector);
2094     return action;
2097 /** \brief  Decode the verb code and take appropriate action */
2098 void
2099 FitCanvasVerb::perform(SPAction *action, void *data, void */*pdata*/)
2101     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
2102     if (!dt) return;
2103     SPDocument *doc = sp_desktop_document(dt);
2104     if (!doc) return;
2106     switch ((long) data) {
2107         case SP_VERB_FIT_CANVAS_TO_SELECTION:
2108             verb_fit_canvas_to_selection(dt);
2109             break;
2110         case SP_VERB_FIT_CANVAS_TO_DRAWING:
2111             verb_fit_canvas_to_drawing(dt);
2112             break;
2113         case SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING:
2114             fit_canvas_to_selection_or_drawing(dt);
2115             break;
2116         default:
2117             return;
2118     }
2120     return;
2122 /* *********** End Fit Canvas ********** */
2125 /* *********** Lock'N'Hide ********** */
2127 /** \brief A class to represent the object unlocking and unhiding verbs */
2128 class LockAndHideVerb : public Verb {
2129 private:
2130     static void perform(SPAction *action, void *mydata, void *otherdata);
2131     static SPActionEventVector vector;
2132 protected:
2133     virtual SPAction *make_action(Inkscape::UI::View::View *view);
2134 public:
2135     /** \brief Use the Verb initializer with the same parameters. */
2136     LockAndHideVerb(unsigned int const code,
2137                    gchar const *id,
2138                    gchar const *name,
2139                    gchar const *tip,
2140                    gchar const *image) :
2141         Verb(code, id, name, tip, image)
2142     {
2143         set_default_sensitive(true);
2144     }
2145 }; /* LockAndHideVerb class */
2147 /**
2148  * The vector to attach in the lock'n'hide verb.
2149  */
2150 SPActionEventVector LockAndHideVerb::vector =
2151             {{NULL},LockAndHideVerb::perform, NULL, NULL, NULL, NULL};
2153 /** \brief  Create an action for a \c LockAndHideVerb
2154     \param  view  Which view the action should be created for
2155     \return The built action.
2157     Calls \c make_action_helper with the \c vector.
2158 */
2159 SPAction *
2160 LockAndHideVerb::make_action(Inkscape::UI::View::View *view)
2162     SPAction *action = make_action_helper(view, &vector);
2163     return action;
2166 /** \brief  Decode the verb code and take appropriate action */
2167 void
2168 LockAndHideVerb::perform(SPAction *action, void *data, void */*pdata*/)
2170     SPDesktop *dt = static_cast<SPDesktop*>(sp_action_get_view(action));
2171     if (!dt) return;
2172     SPDocument *doc = sp_desktop_document(dt);
2173     if (!doc) return;
2175     switch ((long) data) {
2176         case SP_VERB_UNLOCK_ALL:
2177             unlock_all(dt);
2178             sp_document_done(doc, SP_VERB_UNLOCK_ALL, _("Unlock all objects in the current layer"));
2179             break;
2180         case SP_VERB_UNLOCK_ALL_IN_ALL_LAYERS:
2181             unlock_all_in_all_layers(dt);
2182             sp_document_done(doc, SP_VERB_UNLOCK_ALL_IN_ALL_LAYERS, _("Unlock all objects in all layers"));
2183             break;
2184         case SP_VERB_UNHIDE_ALL:
2185             unhide_all(dt);
2186             sp_document_done(doc, SP_VERB_UNHIDE_ALL, _("Unhide all objects in the current layer"));
2187             break;
2188         case SP_VERB_UNHIDE_ALL_IN_ALL_LAYERS:
2189             unhide_all_in_all_layers(dt);
2190             sp_document_done(doc, SP_VERB_UNHIDE_ALL_IN_ALL_LAYERS, _("Unhide all objects in all layers"));
2191             break;
2192         default:
2193             return;
2194     }
2196     return;
2198 /* *********** End Lock'N'Hide ********** */
2201 /* these must be in the same order as the SP_VERB_* enum in "verbs.h" */
2202 Verb *Verb::_base_verbs[] = {
2203     /* Header */
2204     new Verb(SP_VERB_INVALID, NULL, NULL, NULL, NULL),
2205     new Verb(SP_VERB_NONE, "None", N_("None"), N_("Does nothing"), NULL),
2207     /* File */
2208     new FileVerb(SP_VERB_FILE_NEW, "FileNew", N_("Default"), N_("Create new document from the default template"),
2209                  GTK_STOCK_NEW ),
2210     new FileVerb(SP_VERB_FILE_OPEN, "FileOpen", N_("_Open..."),
2211                  N_("Open an existing document"), GTK_STOCK_OPEN ),
2212     new FileVerb(SP_VERB_FILE_REVERT, "FileRevert", N_("Re_vert"),
2213                  N_("Revert to the last saved version of document (changes will be lost)"), GTK_STOCK_REVERT_TO_SAVED ),
2214     new FileVerb(SP_VERB_FILE_SAVE, "FileSave", N_("_Save"), N_("Save document"),
2215                  GTK_STOCK_SAVE ),
2216     new FileVerb(SP_VERB_FILE_SAVE_AS, "FileSaveAs", N_("Save _As..."),
2217                  N_("Save document under a new name"), GTK_STOCK_SAVE_AS ),
2218     new FileVerb(SP_VERB_FILE_SAVE_A_COPY, "FileSaveACopy", N_("Save a Cop_y..."),
2219                  N_("Save a copy of the document under a new name"), NULL ),
2220     new FileVerb(SP_VERB_FILE_PRINT, "FilePrint", N_("_Print..."), N_("Print document"),
2221                  GTK_STOCK_PRINT ),
2222     // TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions)
2223     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"),
2224                  "file_vacuum" ),
2225     new FileVerb(SP_VERB_FILE_PRINT_PREVIEW, "FilePrintPreview", N_("Print Previe_w"),
2226                  N_("Preview document printout"), GTK_STOCK_PRINT_PREVIEW ),
2227     new FileVerb(SP_VERB_FILE_IMPORT, "FileImport", N_("_Import..."),
2228                  N_("Import a bitmap or SVG image into this document"), "file_import"),
2229     new FileVerb(SP_VERB_FILE_EXPORT, "FileExport", N_("_Export Bitmap..."),
2230                  N_("Export this document or a selection as a bitmap image"), "file_export"),
2231     new FileVerb(SP_VERB_FILE_IMPORT_FROM_OCAL, "FileImportFromOCAL", N_("Import From Open Clip Art Library"), N_("Import a document from Open Clip Art Library"), "ocal_import"),
2232     new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("Export To Open Clip Art Library"), N_("Export this document to Open Clip Art Library"), "ocal_export"),
2233     new FileVerb(SP_VERB_FILE_NEXT_DESKTOP, "NextWindow", N_("N_ext Window"),
2234                  N_("Switch to the next document window"), "window_next"),
2235     new FileVerb(SP_VERB_FILE_PREV_DESKTOP, "PrevWindow", N_("P_revious Window"),
2236                  N_("Switch to the previous document window"), "window_previous"),
2237     new FileVerb(SP_VERB_FILE_CLOSE_VIEW, "FileClose", N_("_Close"),
2238                  N_("Close this document window"), GTK_STOCK_CLOSE),
2239     new FileVerb(SP_VERB_FILE_QUIT, "FileQuit", N_("_Quit"), N_("Quit Inkscape"), GTK_STOCK_QUIT),
2241     /* Edit */
2242     new EditVerb(SP_VERB_EDIT_UNDO, "EditUndo", N_("_Undo"), N_("Undo last action"),
2243                  GTK_STOCK_UNDO),
2244     new EditVerb(SP_VERB_EDIT_REDO, "EditRedo", N_("_Redo"),
2245                  N_("Do again the last undone action"), GTK_STOCK_REDO),
2246     new EditVerb(SP_VERB_EDIT_CUT, "EditCut", N_("Cu_t"),
2247                  N_("Cut selection to clipboard"), GTK_STOCK_CUT),
2248     new EditVerb(SP_VERB_EDIT_COPY, "EditCopy", N_("_Copy"),
2249                  N_("Copy selection to clipboard"), GTK_STOCK_COPY),
2250     new EditVerb(SP_VERB_EDIT_PASTE, "EditPaste", N_("_Paste"),
2251                  N_("Paste objects from clipboard to mouse point, or paste text"), GTK_STOCK_PASTE),
2252     new EditVerb(SP_VERB_EDIT_PASTE_STYLE, "EditPasteStyle", N_("Paste _Style"),
2253                  N_("Apply the style of the copied object to selection"), "selection_paste_style"),
2254     new EditVerb(SP_VERB_EDIT_PASTE_SIZE, "EditPasteSize", N_("Paste Si_ze"),
2255                  N_("Scale selection to match the size of the copied object"), NULL),
2256     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_X, "EditPasteWidth", N_("Paste _Width"),
2257                  N_("Scale selection horizontally to match the width of the copied object"), NULL),
2258     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_Y, "EditPasteHeight", N_("Paste _Height"),
2259                  N_("Scale selection vertically to match the height of the copied object"), NULL),
2260     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY, "EditPasteSizeSeparately", N_("Paste Size Separately"),
2261                  N_("Scale each selected object to match the size of the copied object"), NULL),
2262     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_X, "EditPasteWidthSeparately", N_("Paste Width Separately"),
2263                  N_("Scale each selected object horizontally to match the width of the copied object"), NULL),
2264     new EditVerb(SP_VERB_EDIT_PASTE_SIZE_SEPARATELY_Y, "EditPasteHeightSeparately", N_("Paste Height Separately"),
2265                  N_("Scale each selected object vertically to match the height of the copied object"), NULL),
2266     new EditVerb(SP_VERB_EDIT_PASTE_IN_PLACE, "EditPasteInPlace", N_("Paste _In Place"),
2267                  N_("Paste objects from clipboard to the original location"), "selection_paste_in_place"),
2268     new EditVerb(SP_VERB_EDIT_PASTE_LIVEPATHEFFECT, "PasteLivePathEffect", N_("Paste Path _Effect"),
2269                  N_("Apply the path effect of the copied object to selection"), NULL),
2270     new EditVerb(SP_VERB_EDIT_REMOVE_LIVEPATHEFFECT, "RemoveLivePathEffect", N_("Remove Path _Effect"),
2271                  N_("Remove any path effects from selected objects"), NULL),
2272     new EditVerb(SP_VERB_EDIT_REMOVE_FILTER, "RemoveFilter", N_("Remove Filter"),
2273                  N_("Remove any filters from selected objects"), NULL),
2274     new EditVerb(SP_VERB_EDIT_DELETE, "EditDelete", N_("_Delete"),
2275                  N_("Delete selection"), GTK_STOCK_DELETE),
2276     new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"),
2277                  N_("Duplicate selected objects"), "edit_duplicate"),
2278     new EditVerb(SP_VERB_EDIT_CLONE, "EditClone", N_("Create Clo_ne"),
2279                  N_("Create a clone (a copy linked to the original) of selected object"), "edit_clone"),
2280     new EditVerb(SP_VERB_EDIT_UNLINK_CLONE, "EditUnlinkClone", N_("Unlin_k Clone"),
2281                  N_("Cut the selected clones' links to the originals, turning them into standalone objects"), "edit_unlink_clone"),
2282     new EditVerb(SP_VERB_EDIT_RELINK_CLONE, "EditRelinkClone", N_("Relink to Copied"),
2283                  N_("Relink the selected clones to the object currently on the clipboard"), NULL),
2284     new EditVerb(SP_VERB_EDIT_CLONE_SELECT_ORIGINAL, "EditCloneSelectOriginal", N_("Select _Original"),
2285                  N_("Select the object to which the selected clone is linked"), "edit_select_original"),
2286     // TRANSLATORS: Convert selection to a line marker
2287     new EditVerb(SP_VERB_EDIT_SELECTION_2_MARKER, "ObjectsToMarker", N_("Objects to _Marker"),
2288                  N_("Convert selection to a line marker"), NULL),
2289     // TRANSLATORS: Convert selection to a collection of guidelines
2290     new EditVerb(SP_VERB_EDIT_SELECTION_2_GUIDES, "ObjectsToGuides", N_("Objects to Gu_ides"),
2291                  N_("Convert selected objects to a collection of guidelines aligned with their edges"), NULL),
2292     // TRANSLATORS: Convert selection to a rectangle with tiled pattern fill
2293     new EditVerb(SP_VERB_EDIT_TILE, "ObjectsToPattern", N_("Objects to Patter_n"),
2294                  N_("Convert selection to a rectangle with tiled pattern fill"), NULL),
2295     // TRANSLATORS: Extract objects from a tiled pattern fill
2296     new EditVerb(SP_VERB_EDIT_UNTILE, "ObjectsFromPattern", N_("Pattern to _Objects"),
2297                  N_("Extract objects from a tiled pattern fill"), NULL),
2298     new EditVerb(SP_VERB_EDIT_CLEAR_ALL, "EditClearAll", N_("Clea_r All"),
2299                  N_("Delete all objects from document"), NULL),
2300     new EditVerb(SP_VERB_EDIT_SELECT_ALL, "EditSelectAll", N_("Select Al_l"),
2301                  N_("Select all objects or all nodes"), "edit-select-all"),
2302     new EditVerb(SP_VERB_EDIT_SELECT_ALL_IN_ALL_LAYERS, "EditSelectAllInAllLayers", N_("Select All in All La_yers"),
2303                  N_("Select all objects in all visible and unlocked layers"), "selection_select_all_in_all_layers"),
2304     new EditVerb(SP_VERB_EDIT_INVERT, "EditInvert", N_("In_vert Selection"),
2305                  N_("Invert selection (unselect what is selected and select everything else)"), "selection_invert"),
2306     new EditVerb(SP_VERB_EDIT_INVERT_IN_ALL_LAYERS, "EditInvertInAllLayers", N_("Invert in All Layers"),
2307                  N_("Invert selection in all visible and unlocked layers"), NULL),
2308     new EditVerb(SP_VERB_EDIT_SELECT_NEXT, "EditSelectNext", N_("Select Next"),
2309                  N_("Select next object or node"), NULL),
2310     new EditVerb(SP_VERB_EDIT_SELECT_PREV, "EditSelectPrev", N_("Select Previous"),
2311                  N_("Select previous object or node"), NULL),
2312     new EditVerb(SP_VERB_EDIT_DESELECT, "EditDeselect", N_("D_eselect"),
2313                  N_("Deselect any selected objects or nodes"), "selection_deselect"),
2314     new EditVerb(SP_VERB_EDIT_GUIDES_AROUND_PAGE, "EditGuidesAroundPage", N_("_Guides around page"),
2315                  N_("Create four guides aligned with the page borders"), NULL),
2316     new EditVerb(SP_VERB_EDIT_NEXT_PATHEFFECT_PARAMETER, "EditNextPathEffectParameter", N_("Next Path Effect Parameter"),
2317                  N_("Show next Path Effect parameter for editing"), "edit_next_parameter"),
2319     /* Selection */
2320     new SelectionVerb(SP_VERB_SELECTION_TO_FRONT, "SelectionToFront", N_("Raise to _Top"),
2321                       N_("Raise selection to top"), "selection_top"),
2322     new SelectionVerb(SP_VERB_SELECTION_TO_BACK, "SelectionToBack", N_("Lower to _Bottom"),
2323                       N_("Lower selection to bottom"), "selection_bot"),
2324     new SelectionVerb(SP_VERB_SELECTION_RAISE, "SelectionRaise", N_("_Raise"),
2325                       N_("Raise selection one step"), "selection_up"),
2326     new SelectionVerb(SP_VERB_SELECTION_LOWER, "SelectionLower", N_("_Lower"),
2327                       N_("Lower selection one step"), "selection_down"),
2328     new SelectionVerb(SP_VERB_SELECTION_GROUP, "SelectionGroup", N_("_Group"),
2329                       N_("Group selected objects"), "selection_group"),
2330     new SelectionVerb(SP_VERB_SELECTION_UNGROUP, "SelectionUnGroup", N_("_Ungroup"),
2331                       N_("Ungroup selected groups"), "selection_ungroup"),
2333     new SelectionVerb(SP_VERB_SELECTION_TEXTTOPATH, "SelectionTextToPath", N_("_Put on Path"),
2334                       N_("Put text on path"), "put_on_path"),
2335     new SelectionVerb(SP_VERB_SELECTION_TEXTFROMPATH, "SelectionTextFromPath", N_("_Remove from Path"),
2336                       N_("Remove text from path"), "remove_from_path"),
2337     new SelectionVerb(SP_VERB_SELECTION_REMOVE_KERNS, "SelectionTextRemoveKerns", N_("Remove Manual _Kerns"),
2338                       // TRANSLATORS: "glyph": An image used in the visual representation of characters;
2339                       //  roughly speaking, how a character looks. A font is a set of glyphs.
2340                       N_("Remove all manual kerns and glyph rotations from a text object"), "remove_manual_kerns"),
2342     new SelectionVerb(SP_VERB_SELECTION_UNION, "SelectionUnion", N_("_Union"),
2343                       N_("Create union of selected paths"), "union"),
2344     new SelectionVerb(SP_VERB_SELECTION_INTERSECT, "SelectionIntersect", N_("_Intersection"),
2345                       N_("Create intersection of selected paths"), "intersection"),
2346     new SelectionVerb(SP_VERB_SELECTION_DIFF, "SelectionDiff", N_("_Difference"),
2347                       N_("Create difference of selected paths (bottom minus top)"), "difference"),
2348     new SelectionVerb(SP_VERB_SELECTION_SYMDIFF, "SelectionSymDiff", N_("E_xclusion"),
2349                       N_("Create exclusive OR of selected paths (those parts that belong to only one path)"), "exclusion"),
2350     new SelectionVerb(SP_VERB_SELECTION_CUT, "SelectionDivide", N_("Di_vision"),
2351                       N_("Cut the bottom path into pieces"), "division"),
2352     // TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the
2353     // Advanced tutorial for more info
2354     new SelectionVerb(SP_VERB_SELECTION_SLICE, "SelectionCutPath", N_("Cut _Path"),
2355                       N_("Cut the bottom path's stroke into pieces, removing fill"), "cut_path"),
2356     // TRANSLATORS: "outset": expand a shape by offsetting the object's path,
2357     // i.e. by displacing it perpendicular to the path in each point.
2358     // See also the Advanced Tutorial for explanation.
2359     new SelectionVerb(SP_VERB_SELECTION_OFFSET, "SelectionOffset", N_("Outs_et"),
2360                       N_("Outset selected paths"), "outset_path"),
2361     new SelectionVerb(SP_VERB_SELECTION_OFFSET_SCREEN, "SelectionOffsetScreen",
2362                       N_("O_utset Path by 1 px"),
2363                       N_("Outset selected paths by 1 px"), NULL),
2364     new SelectionVerb(SP_VERB_SELECTION_OFFSET_SCREEN_10, "SelectionOffsetScreen10",
2365                       N_("O_utset Path by 10 px"),
2366                       N_("Outset selected paths by 10 px"), NULL),
2367     // TRANSLATORS: "inset": contract a shape by offsetting the object's path,
2368     // i.e. by displacing it perpendicular to the path in each point.
2369     // See also the Advanced Tutorial for explanation.
2370     new SelectionVerb(SP_VERB_SELECTION_INSET, "SelectionInset", N_("I_nset"),
2371                       N_("Inset selected paths"), "inset_path"),
2372     new SelectionVerb(SP_VERB_SELECTION_INSET_SCREEN, "SelectionInsetScreen",
2373                       N_("I_nset Path by 1 px"),
2374                       N_("Inset selected paths by 1 px"), NULL),
2375     new SelectionVerb(SP_VERB_SELECTION_INSET_SCREEN_10, "SelectionInsetScreen10",
2376                       N_("I_nset Path by 10 px"),
2377                       N_("Inset selected paths by 10 px"), NULL),
2378     new SelectionVerb(SP_VERB_SELECTION_DYNAMIC_OFFSET, "SelectionDynOffset",
2379                       N_("D_ynamic Offset"), N_("Create a dynamic offset object"), "dynamic_offset"),
2380     new SelectionVerb(SP_VERB_SELECTION_LINKED_OFFSET, "SelectionLinkedOffset",
2381                       N_("_Linked Offset"),
2382                       N_("Create a dynamic offset object linked to the original path"),
2383                       "linked_offset"),
2384     new SelectionVerb(SP_VERB_SELECTION_OUTLINE, "StrokeToPath", N_("_Stroke to Path"),
2385                       N_("Convert selected object's stroke to paths"), "stroke_tocurve"),
2386     new SelectionVerb(SP_VERB_SELECTION_SIMPLIFY, "SelectionSimplify", N_("Si_mplify"),
2387                       N_("Simplify selected paths (remove extra nodes)"), "simplify"),
2388     new SelectionVerb(SP_VERB_SELECTION_REVERSE, "SelectionReverse", N_("_Reverse"),
2389                       N_("Reverse the direction of selected paths (useful for flipping markers)"), "selection_reverse"),
2390     // TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize)
2391     new SelectionVerb(SP_VERB_SELECTION_TRACE, "SelectionTrace", N_("_Trace Bitmap..."),
2392                       N_("Create one or more paths from a bitmap by tracing it"), "selection_trace"),
2393     new SelectionVerb(SP_VERB_SELECTION_CREATE_BITMAP, "SelectionCreateBitmap", N_("_Make a Bitmap Copy"),
2394                       N_("Export selection to a bitmap and insert it into document"), "selection_bitmap" ),
2395     new SelectionVerb(SP_VERB_SELECTION_COMBINE, "SelectionCombine", N_("_Combine"),
2396                       N_("Combine several paths into one"), "selection_combine"),
2397     // TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the
2398     // Advanced tutorial for more info
2399     new SelectionVerb(SP_VERB_SELECTION_BREAK_APART, "SelectionBreakApart", N_("Break _Apart"),
2400                       N_("Break selected paths into subpaths"), "selection_break"),
2401     new SelectionVerb(SP_VERB_SELECTION_GRIDTILE, "DialogGridArrange", N_("Rows and Columns..."),
2402                       N_("Arrange selected objects in a table"), "grid_arrange"),
2403     /* Layer */
2404     new LayerVerb(SP_VERB_LAYER_NEW, "LayerNew", N_("_Add Layer..."),
2405                   N_("Create a new layer"), "new_layer"),
2406     new LayerVerb(SP_VERB_LAYER_RENAME, "LayerRename", N_("Re_name Layer..."),
2407                   N_("Rename the current layer"), "rename_layer"),
2408     new LayerVerb(SP_VERB_LAYER_NEXT, "LayerNext", N_("Switch to Layer Abov_e"),
2409                   N_("Switch to the layer above the current"), "switch_to_layer_above"),
2410     new LayerVerb(SP_VERB_LAYER_PREV, "LayerPrev", N_("Switch to Layer Belo_w"),
2411                   N_("Switch to the layer below the current"), "switch_to_layer_below"),
2412     new LayerVerb(SP_VERB_LAYER_MOVE_TO_NEXT, "LayerMoveToNext", N_("Move Selection to Layer Abo_ve"),
2413                   N_("Move selection to the layer above the current"), "move_selection_above"),
2414     new LayerVerb(SP_VERB_LAYER_MOVE_TO_PREV, "LayerMoveToPrev", N_("Move Selection to Layer Bel_ow"),
2415                   N_("Move selection to the layer below the current"), "move_selection_below"),
2416     new LayerVerb(SP_VERB_LAYER_TO_TOP, "LayerToTop", N_("Layer to _Top"),
2417                   N_("Raise the current layer to the top"), "layer_to_top"),
2418     new LayerVerb(SP_VERB_LAYER_TO_BOTTOM, "LayerToBottom", N_("Layer to _Bottom"),
2419                   N_("Lower the current layer to the bottom"), "layer_to_bottom"),
2420     new LayerVerb(SP_VERB_LAYER_RAISE, "LayerRaise", N_("_Raise Layer"),
2421                   N_("Raise the current layer"), "raise_layer"),
2422     new LayerVerb(SP_VERB_LAYER_LOWER, "LayerLower", N_("_Lower Layer"),
2423                   N_("Lower the current layer"), "lower_layer"),
2424     new LayerVerb(SP_VERB_LAYER_DUPLICATE, "LayerDuplicate", N_("Duplicate Current Layer..."),
2425                   N_("Duplicate an existing layer"), 0),
2426     new LayerVerb(SP_VERB_LAYER_DELETE, "LayerDelete", N_("_Delete Current Layer"),
2427                   N_("Delete the current layer"), "delete_layer"),
2428     new LayerVerb(SP_VERB_LAYER_SOLO, "LayerSolo", N_("_Show/hide other layers"),
2429                   N_("Solo the current layer"), 0),
2431     /* Object */
2432     new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90&#176; CW"),
2433                    // This is shared between tooltips and statusbar, so they
2434                    // must use UTF-8, not HTML entities for special characters.
2435                    N_("Rotate selection 90\xc2\xb0 clockwise"), "object_rotate_90_CW"),
2436     new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0&#176; CCW"),
2437                    // This is shared between tooltips and statusbar, so they
2438                    // must use UTF-8, not HTML entities for special characters.
2439                    N_("Rotate selection 90\xc2\xb0 counter-clockwise"), "object_rotate_90_CCW"),
2440     new ObjectVerb(SP_VERB_OBJECT_FLATTEN, "ObjectRemoveTransform", N_("Remove _Transformations"),
2441                    N_("Remove transformations from object"), "object_reset"),
2442     new ObjectVerb(SP_VERB_OBJECT_TO_CURVE, "ObjectToPath", N_("_Object to Path"),
2443                    N_("Convert selected object to path"), "object_tocurve"),
2444     new ObjectVerb(SP_VERB_OBJECT_FLOW_TEXT, "ObjectFlowText", N_("_Flow into Frame"),
2445                    N_("Put text into a frame (path or shape), creating a flowed text linked to the frame object"), "flow_into_frame"),
2446     new ObjectVerb(SP_VERB_OBJECT_UNFLOW_TEXT, "ObjectUnFlowText", N_("_Unflow"),
2447                    N_("Remove text from frame (creates a single-line text object)"), "unflow"),
2448     new ObjectVerb(SP_VERB_OBJECT_FLOWTEXT_TO_TEXT, "ObjectFlowtextToText", N_("_Convert to Text"),
2449                    N_("Convert flowed text to regular text object (preserves appearance)"), "convert_to_text"),
2450     new ObjectVerb(SP_VERB_OBJECT_FLIP_HORIZONTAL, "ObjectFlipHorizontally",
2451                    N_("Flip _Horizontal"), N_("Flip selected objects horizontally"),
2452                    "object_flip_hor"),
2453     new ObjectVerb(SP_VERB_OBJECT_FLIP_VERTICAL, "ObjectFlipVertically",
2454                    N_("Flip _Vertical"), N_("Flip selected objects vertically"),
2455                    "object_flip_ver"),
2456     new ObjectVerb(SP_VERB_OBJECT_SET_MASK, "ObjectSetMask", N_("_Set"),
2457                  N_("Apply mask to selection (using the topmost object as mask)"), NULL),
2458     new ObjectVerb(SP_VERB_OBJECT_EDIT_MASK, "ObjectEditMask", N_("_Edit"),
2459                  N_("Edit mask"), "nodeedit-mask"),
2460     new ObjectVerb(SP_VERB_OBJECT_UNSET_MASK, "ObjectUnSetMask", N_("_Release"),
2461                  N_("Remove mask from selection"), NULL),
2462     new ObjectVerb(SP_VERB_OBJECT_SET_CLIPPATH, "ObjectSetClipPath", N_("_Set"),
2463                  N_("Apply clipping path to selection (using the topmost object as clipping path)"), NULL),
2464     new ObjectVerb(SP_VERB_OBJECT_EDIT_CLIPPATH, "ObjectEditClipPath", N_("_Edit"),
2465                  N_("Edit clipping path"), "nodeedit-clippath"),
2466     new ObjectVerb(SP_VERB_OBJECT_UNSET_CLIPPATH, "ObjectUnSetClipPath", N_("_Release"),
2467                  N_("Remove clipping path from selection"), NULL),
2469     /* Tools */
2470     new ContextVerb(SP_VERB_CONTEXT_SELECT, "ToolSelector", N_("Select"),
2471                     N_("Select and transform objects"), "draw_select"),
2472     new ContextVerb(SP_VERB_CONTEXT_NODE, "ToolNode", N_("Node Edit"),
2473                     N_("Edit paths by nodes"), "draw_node"),
2474     new ContextVerb(SP_VERB_CONTEXT_TWEAK, "ToolTweak", N_("Tweak"),
2475                     N_("Tweak objects by sculpting or painting"), "draw_tweak"),
2476     new ContextVerb(SP_VERB_CONTEXT_RECT, "ToolRect", N_("Rectangle"),
2477                     N_("Create rectangles and squares"), "draw_rect"),
2478     new ContextVerb(SP_VERB_CONTEXT_3DBOX, "Tool3DBox", N_("3D Box"),
2479                     N_("Create 3D boxes"), "draw_3dbox"),
2480     new ContextVerb(SP_VERB_CONTEXT_ARC, "ToolArc", N_("Ellipse"),
2481                     N_("Create circles, ellipses, and arcs"), "draw_arc"),
2482     new ContextVerb(SP_VERB_CONTEXT_STAR, "ToolStar", N_("Star"),
2483                     N_("Create stars and polygons"), "draw_star"),
2484     new ContextVerb(SP_VERB_CONTEXT_SPIRAL, "ToolSpiral", N_("Spiral"),
2485                     N_("Create spirals"), "draw_spiral"),
2486     new ContextVerb(SP_VERB_CONTEXT_PENCIL, "ToolPencil", N_("Pencil"),
2487                     N_("Draw freehand lines"), "draw_freehand"),
2488     new ContextVerb(SP_VERB_CONTEXT_PEN, "ToolPen", N_("Pen"),
2489                     N_("Draw Bezier curves and straight lines"), "draw_pen"),
2490     new ContextVerb(SP_VERB_CONTEXT_CALLIGRAPHIC, "ToolCalligraphic", N_("Calligraphy"),
2491                     N_("Draw calligraphic or brush strokes"), "draw_calligraphic"),
2492     new ContextVerb(SP_VERB_CONTEXT_TEXT, "ToolText", N_("Text"),
2493                     N_("Create and edit text objects"), "draw_text"),
2494     new ContextVerb(SP_VERB_CONTEXT_GRADIENT, "ToolGradient", N_("Gradient"),
2495                     N_("Create and edit gradients"), "draw_gradient"),
2496     new ContextVerb(SP_VERB_CONTEXT_ZOOM, "ToolZoom", N_("Zoom"),
2497                     N_("Zoom in or out"), "draw_zoom"),
2498     new ContextVerb(SP_VERB_CONTEXT_DROPPER, "ToolDropper", N_("Dropper"),
2499                     N_("Pick colors from image"), "draw_dropper"),
2500     new ContextVerb(SP_VERB_CONTEXT_CONNECTOR, "ToolConnector", N_("Connector"),
2501                     N_("Create diagram connectors"), "draw_connector"),
2502     new ContextVerb(SP_VERB_CONTEXT_PAINTBUCKET, "ToolPaintBucket", N_("Paint Bucket"),
2503                     N_("Fill bounded areas"), "draw_paintbucket"),
2504     new ContextVerb(SP_VERB_CONTEXT_LPE, "ToolLPE", N_("LPE Edit"),
2505                     N_("Edit Live Path Effect parameters"), "draw_lpe"),
2506     new ContextVerb(SP_VERB_CONTEXT_ERASER, "ToolEraser", N_("Eraser"),
2507                     N_("Erase existing paths"), "draw_erase"),
2508     new ContextVerb(SP_VERB_CONTEXT_LPETOOL, "ToolLPETool", N_("LPE Tool"),
2509                     N_("Write something sensible here"), "draw_lpetool"),
2510     /* Tool prefs */
2511     new ContextVerb(SP_VERB_CONTEXT_SELECT_PREFS, "SelectPrefs", N_("Selector Preferences"),
2512                     N_("Open Preferences for the Selector tool"), NULL),
2513     new ContextVerb(SP_VERB_CONTEXT_NODE_PREFS, "NodePrefs", N_("Node Tool Preferences"),
2514                     N_("Open Preferences for the Node tool"), NULL),
2515     new ContextVerb(SP_VERB_CONTEXT_TWEAK_PREFS, "TweakPrefs", N_("Tweak Tool Preferences"),
2516                     N_("Open Preferences for the Tweak tool"), NULL),
2517     new ContextVerb(SP_VERB_CONTEXT_RECT_PREFS, "RectPrefs", N_("Rectangle Preferences"),
2518                     N_("Open Preferences for the Rectangle tool"), NULL),
2519     new ContextVerb(SP_VERB_CONTEXT_3DBOX_PREFS, "3DBoxPrefs", N_("3D Box Preferences"),
2520                     N_("Open Preferences for the 3D Box tool"), NULL),
2521     new ContextVerb(SP_VERB_CONTEXT_ARC_PREFS, "ArcPrefs", N_("Ellipse Preferences"),
2522                     N_("Open Preferences for the Ellipse tool"), NULL),
2523     new ContextVerb(SP_VERB_CONTEXT_STAR_PREFS, "StarPrefs", N_("Star Preferences"),
2524                     N_("Open Preferences for the Star tool"), NULL),
2525     new ContextVerb(SP_VERB_CONTEXT_SPIRAL_PREFS, "SpiralPrefs", N_("Spiral Preferences"),
2526                     N_("Open Preferences for the Spiral tool"), NULL),
2527     new ContextVerb(SP_VERB_CONTEXT_PENCIL_PREFS, "PencilPrefs", N_("Pencil Preferences"),
2528                     N_("Open Preferences for the Pencil tool"), NULL),
2529     new ContextVerb(SP_VERB_CONTEXT_PEN_PREFS, "PenPrefs", N_("Pen Preferences"),
2530                     N_("Open Preferences for the Pen tool"), NULL),
2531     new ContextVerb(SP_VERB_CONTEXT_CALLIGRAPHIC_PREFS, "CalligraphicPrefs", N_("Calligraphic Preferences"),
2532                     N_("Open Preferences for the Calligraphy tool"), NULL),
2533     new ContextVerb(SP_VERB_CONTEXT_TEXT_PREFS, "TextPrefs", N_("Text Preferences"),
2534                     N_("Open Preferences for the Text tool"), NULL),
2535     new ContextVerb(SP_VERB_CONTEXT_GRADIENT_PREFS, "GradientPrefs", N_("Gradient Preferences"),
2536                     N_("Open Preferences for the Gradient tool"), NULL),
2537     new ContextVerb(SP_VERB_CONTEXT_ZOOM_PREFS, "ZoomPrefs", N_("Zoom Preferences"),
2538                     N_("Open Preferences for the Zoom tool"), NULL),
2539     new ContextVerb(SP_VERB_CONTEXT_DROPPER_PREFS, "DropperPrefs", N_("Dropper Preferences"),
2540                     N_("Open Preferences for the Dropper tool"), NULL),
2541     new ContextVerb(SP_VERB_CONTEXT_CONNECTOR_PREFS, "ConnectorPrefs", N_("Connector Preferences"),
2542                     N_("Open Preferences for the Connector tool"), NULL),
2543     new ContextVerb(SP_VERB_CONTEXT_PAINTBUCKET_PREFS, "PaintBucketPrefs", N_("Paint Bucket Preferences"),
2544                     N_("Open Preferences for the Paint Bucket tool"), NULL),
2545     new ContextVerb(SP_VERB_CONTEXT_ERASER_PREFS, "EraserPrefs", N_("Eraser Preferences"),
2546                     N_("Open Preferences for the Eraser tool"), NULL),
2547     new ContextVerb(SP_VERB_CONTEXT_LPETOOL_PREFS, "LPEToolPrefs", N_("LPE Tool Preferences"),
2548                     N_("Open Preferences for the LPETool tool"), NULL),
2550     /* Zoom/View */
2551     new ZoomVerb(SP_VERB_ZOOM_IN, "ZoomIn", N_("Zoom In"), N_("Zoom in"), "zoom_in"),
2552     new ZoomVerb(SP_VERB_ZOOM_OUT, "ZoomOut", N_("Zoom Out"), N_("Zoom out"), "zoom_out"),
2553     new ZoomVerb(SP_VERB_TOGGLE_RULERS, "ToggleRulers", N_("_Rulers"), N_("Show or hide the canvas rulers"), "rulers"),
2554     new ZoomVerb(SP_VERB_TOGGLE_SCROLLBARS, "ToggleScrollbars", N_("Scroll_bars"), N_("Show or hide the canvas scrollbars"), "scrollbars"),
2555     new ZoomVerb(SP_VERB_TOGGLE_GRID, "ToggleGrid", N_("_Grid"), N_("Show or hide the grid"), "grid"),
2556     new ZoomVerb(SP_VERB_TOGGLE_GUIDES, "ToggleGuides", N_("G_uides"), N_("Show or hide guides (drag from a ruler to create a guide)"), "guides"),
2557     new ZoomVerb(SP_VERB_TOGGLE_SNAPPING, "ToggleSnapping", N_("Snap"), N_("Toggle snapping on or off"), NULL),
2558     new ZoomVerb(SP_VERB_ZOOM_NEXT, "ZoomNext", N_("Nex_t Zoom"), N_("Next zoom (from the history of zooms)"),
2559                  "zoom_next"),
2560     new ZoomVerb(SP_VERB_ZOOM_PREV, "ZoomPrev", N_("Pre_vious Zoom"), N_("Previous zoom (from the history of zooms)"),
2561                  "zoom_previous"),
2562     new ZoomVerb(SP_VERB_ZOOM_1_1, "Zoom1:0", N_("Zoom 1:_1"), N_("Zoom to 1:1"),
2563                  "zoom_1_to_1"),
2564     new ZoomVerb(SP_VERB_ZOOM_1_2, "Zoom1:2", N_("Zoom 1:_2"), N_("Zoom to 1:2"),
2565                  "zoom_1_to_2"),
2566     new ZoomVerb(SP_VERB_ZOOM_2_1, "Zoom2:1", N_("_Zoom 2:1"), N_("Zoom to 2:1"),
2567                  "zoom_2_to_1"),
2568 #ifdef HAVE_GTK_WINDOW_FULLSCREEN
2569     new ZoomVerb(SP_VERB_FULLSCREEN, "FullScreen", N_("_Fullscreen"), N_("Stretch this document window to full screen"),
2570                  "view-fullscreen"),
2571 #endif /* HAVE_GTK_WINDOW_FULLSCREEN */
2572     new ZoomVerb(SP_VERB_VIEW_NEW, "ViewNew", N_("Duplic_ate Window"), N_("Open a new window with the same document"),
2573                  "window-new"),
2574     new ZoomVerb(SP_VERB_VIEW_NEW_PREVIEW, "ViewNewPreview", N_("_New View Preview"),
2575                  N_("New View Preview"), NULL/*"view_new_preview"*/),
2577     new ZoomVerb(SP_VERB_VIEW_MODE_NORMAL, "ViewModeNormal", N_("_Normal"),
2578                  N_("Switch to normal display mode"), NULL),
2579     new ZoomVerb(SP_VERB_VIEW_MODE_NO_FILTERS, "ViewModeNoFilters", N_("No _Filters"),
2580                  N_("Switch to normal display without filters"), NULL),
2581     new ZoomVerb(SP_VERB_VIEW_MODE_OUTLINE, "ViewModeOutline", N_("_Outline"),
2582                  N_("Switch to outline (wireframe) display mode"), NULL),
2583     new ZoomVerb(SP_VERB_VIEW_MODE_TOGGLE, "ViewModeToggle", N_("_Toggle"),
2584                  N_("Toggle between normal and outline display modes"), NULL),
2586     new ZoomVerb(SP_VERB_VIEW_CMS_TOGGLE, "ViewCmsToggle", N_("Color-managed view"),
2587                  N_("Toggle color-managed display for this document window"), "color_management"),
2589     new ZoomVerb(SP_VERB_VIEW_ICON_PREVIEW, "ViewIconPreview", N_("Ico_n Preview..."),
2590                  N_("Open a window to preview objects at different icon resolutions"), "view_icon_preview"),
2591     new ZoomVerb(SP_VERB_ZOOM_PAGE, "ZoomPage", N_("_Page"),
2592                  N_("Zoom to fit page in window"), "zoom_page"),
2593     new ZoomVerb(SP_VERB_ZOOM_PAGE_WIDTH, "ZoomPageWidth", N_("Page _Width"),
2594                  N_("Zoom to fit page width in window"), "zoom_pagewidth"),
2595     new ZoomVerb(SP_VERB_ZOOM_DRAWING, "ZoomDrawing", N_("_Drawing"),
2596                  N_("Zoom to fit drawing in window"), "zoom_draw"),
2597     new ZoomVerb(SP_VERB_ZOOM_SELECTION, "ZoomSelection", N_("_Selection"),
2598                  N_("Zoom to fit selection in window"), "zoom_select"),
2600     /* Dialogs */
2601     new DialogVerb(SP_VERB_DIALOG_DISPLAY, "DialogPreferences", N_("In_kscape Preferences..."),
2602                    N_("Edit global Inkscape preferences"), GTK_STOCK_PREFERENCES ),
2603     new DialogVerb(SP_VERB_DIALOG_NAMEDVIEW, "DialogDocumentProperties", N_("_Document Properties..."),
2604                    N_("Edit properties of this document (to be saved with the document)"), GTK_STOCK_PROPERTIES ),
2605     new DialogVerb(SP_VERB_DIALOG_METADATA, "DialogMetadata", N_("Document _Metadata..."),
2606                    N_("Edit document metadata (to be saved with the document)"), "document_metadata" ),
2607     new DialogVerb(SP_VERB_DIALOG_FILL_STROKE, "DialogFillStroke", N_("_Fill and Stroke..."),
2608                    N_("Edit objects' colors, gradients, stroke width, arrowheads, dash patterns..."), "fill_and_stroke"),
2609     // TRANSLATORS: "Swatches" means: color samples
2610     new DialogVerb(SP_VERB_DIALOG_SWATCHES, "DialogSwatches", N_("S_watches..."),
2611                    N_("Select colors from a swatches palette"), GTK_STOCK_SELECT_COLOR),
2612     new DialogVerb(SP_VERB_DIALOG_TRANSFORM, "DialogTransform", N_("Transfor_m..."),
2613                    N_("Precisely control objects' transformations"), "object_trans"),
2614     new DialogVerb(SP_VERB_DIALOG_ALIGN_DISTRIBUTE, "DialogAlignDistribute", N_("_Align and Distribute..."),
2615                    N_("Align and distribute objects"), "object_align"),
2616     new DialogVerb(SP_VERB_DIALOG_UNDO_HISTORY, "DialogUndoHistory", N_("Undo _History..."),
2617                    N_("Undo History"), "edit_undo_history"),
2618     new DialogVerb(SP_VERB_DIALOG_TEXT, "DialogText", N_("_Text and Font..."),
2619                    N_("View and select font family, font size and other text properties"), "object_font"),
2620     new DialogVerb(SP_VERB_DIALOG_XML_EDITOR, "DialogXMLEditor", N_("_XML Editor..."),
2621                    N_("View and edit the XML tree of the document"), "xml_editor"),
2622     new DialogVerb(SP_VERB_DIALOG_FIND, "DialogFind", N_("_Find..."),
2623                    N_("Find objects in document"), GTK_STOCK_FIND ),
2624     new DialogVerb(SP_VERB_DIALOG_DEBUG, "DialogDebug", N_("_Messages..."),
2625                    N_("View debug messages"), "messages"),
2626     new DialogVerb(SP_VERB_DIALOG_SCRIPT, "DialogScript", N_("S_cripts..."),
2627                    N_("Run scripts"), "scripts"),
2628     new DialogVerb(SP_VERB_DIALOG_TOGGLE, "DialogsToggle", N_("Show/Hide D_ialogs"),
2629                    N_("Show or hide all open dialogs"), "dialog_toggle"),
2630     new DialogVerb(SP_VERB_DIALOG_CLONETILER, "DialogClonetiler", N_("Create Tiled Clones..."),
2631                    N_("Create multiple clones of selected object, arranging them into a pattern or scattering"), "edit_create_tiled_clones"),
2632     new DialogVerb(SP_VERB_DIALOG_ITEM, "DialogObjectProperties", N_("_Object Properties..."),
2633                    N_("Edit the ID, locked and visible status, and other object properties"), "dialog_item_properties"),
2634 #ifdef WITH_INKBOARD
2635     new DialogVerb(SP_VERB_XMPP_CLIENT, "DialogXmppClient",
2636                    N_("_Instant Messaging..."), N_("Jabber Instant Messaging Client"), NULL),
2637 #endif
2638     new DialogVerb(SP_VERB_DIALOG_INPUT, "DialogInput", N_("_Input Devices..."),
2639                    N_("Configure extended input devices, such as a graphics tablet"), "input_devices"),
2640     new DialogVerb(SP_VERB_DIALOG_INPUT2, "DialogInput2", N_("_Input Devices (new)..."),
2641                    N_("Configure extended input devices, such as a graphics tablet"), "input_devices"),
2642     new DialogVerb(SP_VERB_DIALOG_EXTENSIONEDITOR, "org.inkscape.dialogs.extensioneditor", N_("_Extensions..."),
2643                    N_("Query information about extensions"), NULL),
2644     new DialogVerb(SP_VERB_DIALOG_LAYERS, "DialogLayers", N_("Layer_s..."),
2645                    N_("View Layers"), "layers"),
2646     new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path Effects..."),
2647                    N_("Manage path effects"), NULL),
2648     new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter Effects..."),
2649                    N_("Manage SVG filter effects"), NULL),
2650     new DialogVerb(SP_VERB_DIALOG_SVG_FONTS, "DialogSVGFonts", N_("SVG Fonts..."),
2651                    N_("Manage SVG fonts"), NULL),
2653     /* Help */
2654     new HelpVerb(SP_VERB_HELP_ABOUT_EXTENSIONS, "HelpAboutExtensions", N_("About E_xtensions"),
2655                  N_("Information on Inkscape extensions"), NULL),
2656     new HelpVerb(SP_VERB_HELP_MEMORY, "HelpAboutMemory", N_("About _Memory"),
2657                  N_("Memory usage information"), "about_memory"),
2658     new HelpVerb(SP_VERB_HELP_ABOUT, "HelpAbout", N_("_About Inkscape"),
2659                  N_("Inkscape version, authors, license"), /*"help_about"*/"inkscape_options"),
2660     //new HelpVerb(SP_VERB_SHOW_LICENSE, "ShowLicense", N_("_License"),
2661     //           N_("Distribution terms"), /*"show_license"*/"inkscape_options"),
2663     /* Tutorials */
2664     new TutorialVerb(SP_VERB_TUTORIAL_BASIC, "TutorialsBasic", N_("Inkscape: _Basic"),
2665                      N_("Getting started with Inkscape"), NULL/*"tutorial_basic"*/),
2666     new TutorialVerb(SP_VERB_TUTORIAL_SHAPES, "TutorialsShapes", N_("Inkscape: _Shapes"),
2667                      N_("Using shape tools to create and edit shapes"), NULL),
2668     new TutorialVerb(SP_VERB_TUTORIAL_ADVANCED, "TutorialsAdvanced", N_("Inkscape: _Advanced"),
2669                      N_("Advanced Inkscape topics"), NULL/*"tutorial_advanced"*/),
2670     // TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize)
2671     new TutorialVerb(SP_VERB_TUTORIAL_TRACING, "TutorialsTracing", N_("Inkscape: T_racing"),
2672                      N_("Using bitmap tracing"), NULL/*"tutorial_tracing"*/),
2673     new TutorialVerb(SP_VERB_TUTORIAL_CALLIGRAPHY, "TutorialsCalligraphy", N_("Inkscape: _Calligraphy"),
2674                      N_("Using the Calligraphy pen tool"), NULL),
2675     new TutorialVerb(SP_VERB_TUTORIAL_DESIGN, "TutorialsDesign", N_("_Elements of Design"),
2676                      N_("Principles of design in the tutorial form"), NULL/*"tutorial_design"*/),
2677     new TutorialVerb(SP_VERB_TUTORIAL_TIPS, "TutorialsTips", N_("_Tips and Tricks"),
2678                      N_("Miscellaneous tips and tricks"), NULL/*"tutorial_tips"*/),
2680     /* Effect */
2681     new EffectLastVerb(SP_VERB_EFFECT_LAST, "EffectLast", N_("Previous Effect"),
2682                        N_("Repeat the last effect with the same settings"), NULL),
2683     new EffectLastVerb(SP_VERB_EFFECT_LAST_PREF, "EffectLastPref", N_("Previous Effect Settings..."),
2684                        N_("Repeat the last effect with new settings"), NULL),
2686     /* Fit Page */
2687     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_SELECTION, "FitCanvasToSelection", N_("Fit Page to Selection"),
2688                        N_("Fit the page to the current selection"), NULL),
2689     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_DRAWING, "FitCanvasToDrawing", N_("Fit Page to Drawing"),
2690                        N_("Fit the page to the drawing"), NULL),
2691     new FitCanvasVerb(SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING, "FitCanvasToSelectionOrDrawing", N_("Fit Page to Selection or Drawing"),
2692                        N_("Fit the page to the current selection or the drawing if there is no selection"), NULL),
2693     /* LockAndHide */
2694     new LockAndHideVerb(SP_VERB_UNLOCK_ALL, "UnlockAll", N_("Unlock All"),
2695                        N_("Unlock all objects in the current layer"), NULL),
2696     new LockAndHideVerb(SP_VERB_UNLOCK_ALL_IN_ALL_LAYERS, "UnlockAllInAllLayers", N_("Unlock All in All Layers"),
2697                        N_("Unlock all objects in all layers"), NULL),
2698     new LockAndHideVerb(SP_VERB_UNHIDE_ALL, "UnhideAll", N_("Unhide All"),
2699                        N_("Unhide all objects in the current layer"), NULL),
2700     new LockAndHideVerb(SP_VERB_UNHIDE_ALL_IN_ALL_LAYERS, "UnhideAllInAllLayers", N_("Unhide All in All Layers"),
2701                        N_("Unhide all objects in all layers"), NULL),
2702     /* Footer */
2703     new Verb(SP_VERB_LAST, " '\"invalid id", NULL, NULL, NULL)
2704 };
2707 void
2708 Verb::list (void) {
2709     // Go through the dynamic verb table
2710     for (VerbTable::iterator iter = _verbs.begin(); iter != _verbs.end(); iter++) {
2711         Verb * verb = iter->second;
2712         if (verb->get_code() == SP_VERB_INVALID ||
2713                 verb->get_code() == SP_VERB_NONE ||
2714                 verb->get_code() == SP_VERB_LAST) {
2715             continue;
2716         }
2718         printf("%s: %s\n", verb->get_id(), verb->get_tip()? verb->get_tip() : verb->get_name());
2719     }
2721     return;
2722 };
2724 }  /* namespace Inkscape */
2726 /*
2727   Local Variables:
2728   mode:c++
2729   c-file-style:"stroustrup"
2730   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
2731   indent-tabs-mode:nil
2732   fill-column:99
2733   End:
2734 */
2735 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :