Lines Matching defs:verb

6  * This file implements routines necessary to deal with verbs.  A verb
355 * Create a verb without a code.
385 * Destroy a verb.
584 * @param vector The function vector for the verb.
610 * This function will get the action for a given view for this verb. It
611 * will create the verb if it can't be found in the ActionTable. Also,
668 g_printerr("WARNING: ignoring verb %s - GUI required for this verb.\n", action->id);
693 * Accessor to get the tooltip for verb as localised string.
807 Verb *verb = NULL;
811 verb = verb_found->second;
814 return verb;
821 * verb by it's id. Should be much faster than previous
828 Verb *verb = NULL;
832 verb = verb_found->second;
835 if (verb == NULL
845 return verb;
849 * Decode the verb code and take appropriate action.
853 // Convert verb impls to use this where possible, to reduce static cling
934 * Decode the verb code and take appropriate action.
1102 * Decode the verb code and take appropriate action.
1249 * Decode the verb code and take appropriate action.
1255 size_t verb = reinterpret_cast<std::size_t>(data);
1261 switch (verb) {
1320 switch (verb) {
1338 switch (verb) {
1356 DocumentUndo::done(dt->getDocument(), verb, description);
1461 if ( verb == SP_VERB_LAYER_TOGGLE_HIDE ){
1475 * Decode the verb code and take appropriate action.
1572 * Decode the verb code and take appropriate action.
1609 * Decode the verb code and take appropriate action.
1614 sp_verb_t verb;
1620 verb = (sp_verb_t)GPOINTER_TO_INT((gpointer)data);
1629 sp_action_set_active(tool_action, vidx == (int)verb);
1634 switch (verb) {
1810 ActionAlign::do_verb_action(dt, verb);
1820 * Decode the verb code and take appropriate action.
1834 * Decode the verb code and take appropriate action.
2009 * Decode the verb code and take appropriate action.
2129 * Decode the verb code and take appropriate action.
2165 * Decode the verb code and take appropriate action.
2254 * Decode the verb code and take appropriate action.
2318 * Decode the verb code and take appropriate action.
2384 * Decode the verb code and take appropriate action.
3068 // Go through the dynamic verb table
3070 Verb * verb = iter->second;
3071 if (verb->get_code() == SP_VERB_INVALID ||
3072 verb->get_code() == SP_VERB_NONE ||
3073 verb->get_code() == SP_VERB_LAST) {
3077 verbs.push_back(verb);
3085 // Go through the dynamic verb table
3087 Verb * verb = iter->second;
3088 if (verb->get_code() == SP_VERB_INVALID ||
3089 verb->get_code() == SP_VERB_NONE ||
3090 verb->get_code() == SP_VERB_LAST) {
3094 printf("%s: %s\n", verb->get_id(), verb->get_tip()? verb->get_tip() : verb->get_name());