Lines Matching defs:Verb

125 class FileVerb : public Verb {
131 /** Use the Verb initializer with the same parameters. */
137 Verb(code, id, name, tip, image, _("File"))
144 class EditVerb : public Verb {
150 /** Use the Verb initializer with the same parameters. */
156 Verb(code, id, name, tip, image, _("Edit"))
163 class SelectionVerb : public Verb {
169 /** Use the Verb initializer with the same parameters. */
175 Verb(code, id, name, tip, image, _("Selection"))
182 class LayerVerb : public Verb {
188 /** Use the Verb initializer with the same parameters. */
194 Verb(code, id, name, tip, image, _("Layer"))
201 class ObjectVerb : public Verb {
207 /** Use the Verb initializer with the same parameters. */
213 Verb(code, id, name, tip, image, _("Object"))
220 class TagVerb : public Verb {
226 /** Use the Verb initializer with the same parameters. */
232 Verb(code, id, name, tip, image, _("Tag"))
239 class ContextVerb : public Verb {
245 /** Use the Verb initializer with the same parameters. */
251 Verb(code, id, name, tip, image, _("Context"))
258 class ZoomVerb : public Verb {
264 /** Use the Verb initializer with the same parameters. */
270 Verb(code, id, name, tip, image, _("View"))
278 class DialogVerb : public Verb {
284 /** Use the Verb initializer with the same parameters. */
290 Verb(code, id, name, tip, image, _("Dialog"))
297 class HelpVerb : public Verb {
303 /** Use the Verb initializer with the same parameters. */
309 Verb(code, id, name, tip, image, _("Help"))
316 class TutorialVerb : public Verb {
322 /** Use the Verb initializer with the same parameters. */
328 Verb(code, id, name, tip, image, _("Help"))
335 class TextVerb : public Verb {
341 /** Use the Verb initializer with the same parameters. */
347 Verb(code, id, name, tip, image, _("Text"))
349 }; //TextVerb : public Verb
351 Verb::VerbTable Verb::_verbs;
352 Verb::VerbIDTable Verb::_verb_ids;
364 Verb::Verb(gchar const *id, gchar const *name, gchar const *tip, gchar const *image, gchar const *group) :
390 Verb::~Verb(void)
409 SPAction *Verb::make_action(Inkscape::ActionContext const & /*context*/)
587 SPAction *Verb::make_action_helper(Inkscape::ActionContext const & context, void (*perform_fun)(SPAction *, void *), void *in_pntr)
627 SPAction *Verb::get_action(Inkscape::ActionContext const & context)
663 bool Verb::ensure_desktop_valid(SPAction *action)
672 void Verb::sensitive(SPDocument *in_doc, bool in_sensitive)
695 gchar const *Verb::get_tip(void)
722 Verb::name(SPDocument *in_doc, Glib::ustring in_name)
745 void Verb::delete_view(Inkscape::UI::View::View *view)
777 void Verb::delete_all_view(Inkscape::UI::View::View *view)
787 Inkscape::Verb *verbpntr = thisverb->second;
788 // std::cout << "Delete In Verb: " << verbpntr->_name << std::endl;
797 * A function to turn a \c code into a Verb for dynamically created Verbs.
803 * @return The found Verb of NULL if none is found.
805 Verb *Verb::get_search(unsigned int code)
807 Verb *verb = NULL;
818 * Find a Verb using it's ID.
826 Verb *Verb::getbyid(gchar const *id)
828 Verb *verb = NULL;
2222 class EffectLastVerb : public Verb {
2228 /** Use the Verb initializer with the same parameters. */
2234 Verb(code, id, name, tip, image, _("Extensions"))
2285 class FitCanvasVerb : public Verb {
2291 /** Use the Verb initializer with the same parameters. */
2297 Verb(code, id, name, tip, image, _("View"))
2351 class LockAndHideVerb : public Verb {
2357 /** Use the Verb initializer with the same parameters. */
2363 Verb(code, id, name, tip, image, _("Layer"))
2420 Verb *Verb::_base_verbs[] = {
2422 new Verb(SP_VERB_INVALID, NULL, NULL, NULL, NULL, NULL),
2423 new Verb(SP_VERB_NONE, "None", NC_("Verb", "None"), N_("Does nothing"), NULL, NULL),
3061 new Verb(SP_VERB_LAST, " '\"invalid id", NULL, NULL, NULL, NULL)
3064 std::vector<Inkscape::Verb *>
3065 Verb::getList (void) {
3067 std::vector<Verb *> verbs;
3070 Verb * verb = iter->second;
3084 Verb::list (void) {
3087 Verb * verb = iter->second;