Code

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