Searched defs:shortcut (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/helper/
H A Dwindow.cpp21 unsigned shortcut = 0; local
23 shortcut = Inkscape::UI::Tools::get_group0_keyval (event) |
30 return sp_shortcut_invoke (shortcut, SP_ACTIVE_DESKTOP);
/inkscape/src/widgets/
H A Dbutton.cpp270 unsigned int shortcut = sp_shortcut_get_primary(action->verb); local
271 if (shortcut != GDK_KEY_VoidSymbol) {
272 // there's both action and shortcut
274 gchar *key = sp_shortcut_get_label(shortcut);
281 // action has no shortcut
H A Dtoolbox.cpp843 unsigned int shortcut = sp_shortcut_get_primary(verb); local
844 if (shortcut != GDK_KEY_VoidSymbol) {
845 gchar *key = sp_shortcut_get_label(shortcut);
/inkscape/src/
H A Dshortcuts.cpp2 * Keyboard shortcut processing.
62 unsigned int sp_shortcut_get_key(unsigned int const shortcut);
63 GdkModifierType sp_shortcut_get_modifiers(unsigned int const shortcut);
68 sp_shortcut_invoke(unsigned int shortcut, Inkscape::UI::View::View *view) argument
70 Inkscape::Verb *verb = sp_shortcut_get_verb(shortcut);
119 unsigned int shortcut = 0; local
126 shortcut = accel_key |
134 return shortcut;
137 Glib::ustring sp_shortcut_to_label(unsigned int const shortcut) { argument
141 if (shortcut
429 sp_shortcut_delete_from_file(char const * , unsigned int const shortcut) argument
497 sp_shortcut_add_to_file(char const *action, unsigned int const shortcut) argument
637 sp_shortcut_unset(unsigned int const shortcut) argument
673 sp_shortcut_add_accelerator(GtkWidget *item, unsigned int const shortcut) argument
692 sp_shortcut_get_key(unsigned int const shortcut) argument
698 sp_shortcut_get_modifiers(unsigned int const shortcut) argument
718 sp_shortcut_set(unsigned int const shortcut, Inkscape::Verb *const verb, bool const is_primary, bool const is_user_set) argument
742 sp_shortcut_get_verb(unsigned int shortcut) argument
774 sp_shortcut_get_label(unsigned int shortcut) argument
[all...]
H A Dverbs.cpp699 unsigned int shortcut = sp_shortcut_get_primary(this); local
700 if ( (shortcut != _shortcut) || !_full_tip) {
705 _shortcut = shortcut;
706 gchar* shortcutString = sp_shortcut_get_label(shortcut);
/inkscape/src/ui/dialog/
H A Ddialog.cpp272 unsigned int shortcut; local
273 shortcut = Inkscape::UI::Tools::get_group0_keyval(event) |
280 return sp_shortcut_invoke(shortcut, SP_ACTIVE_DESKTOP);
H A Dxml-tree.cpp342 unsigned int shortcut = Inkscape::UI::Tools::get_group0_keyval (event) | local
352 if (shortcut == (SP_SHORTCUT_CONTROL_MASK | GDK_KEY_Return)) {
H A Dinkscape-preferences.cpp1580 //_kb_tree.get_column(1)->add_attribute(_kb_shortcut_renderer.property_text(), _kb_columns.shortcut);
1623 UI::Widget::Button *kb_reset = Gtk::manage(new UI::Widget::Button(_("Reset"), _("Remove all your customized keyboard shortcuts, and revert to the shortcuts in the shortcut file listed above")));
1645 (*iter_group)[_kb_columns.shortcut] = "";
1690 // Remove current shortcut from file
1703 Glib::ustring current_shortcut = (*iter)[_kb_columns.shortcut];
1714 // Delete current shortcut if it existed
1716 // Delete any references to the new shortcut
1718 // Add the new shortcut
1735 Glib::ustring shortcut = (*iter)[_kb_columns.shortcut]; local
1764 Glib::ustring shortcut = (*iter)[onKBGetCols().shortcut]; local
[all...]
H A Dinkscape-preferences.h460 * Keyboard shortcut members
467 add(shortcut);
477 Gtk::TreeModelColumn<Glib::ustring> shortcut; member in class:Inkscape::UI::Dialog::InkscapePreferences::ModelColumns
526 * Functions for the Keyboard shortcut editor panel
/inkscape/src/ui/tools/
H A Dpen-tool.cpp1065 unsigned int shortcut = Inkscape::UI::Tools::get_group0_keyval (&event->key) | local
1072 Inkscape::Verb* verb = sp_shortcut_get_verb(shortcut);
H A Dtool-base.cpp590 // in the editing window). So we resteal them back and run our regular shortcut
592 unsigned int shortcut; local
596 shortcut = get_group0_keyval(&event->key);
599 shortcut |= SP_SHORTCUT_SHIFT_MASK;
603 shortcut |= SP_SHORTCUT_CONTROL_MASK;
607 shortcut |= SP_SHORTCUT_ALT_MASK;
610 ret = sp_shortcut_invoke(shortcut, desktop);
/inkscape/src/ui/
H A Dinterface.cpp431 unsigned int shortcut; local
445 shortcut = sp_shortcut_get_primary(verb);
446 if (shortcut!=GDK_KEY_VoidSymbol) {
447 gchar* key = sp_shortcut_get_label(shortcut);
689 unsigned int shortcut = (verb) ? sp_shortcut_get_primary(verb) : 0; local
699 sp_shortcut_add_accelerator(item, shortcut);

Completed in 68 milliseconds