| /vim-8.2.3635/src/ |
| H A D | gui_gtk.c | 1571 char **buttons = NULL; in split_button_translation() local 1589 buttons = split_button_string(str, &n_buttons); in split_button_translation() 1596 if (buttons == NULL || n_buttons != n_expected) in split_button_translation() 1598 vim_free(buttons); in split_button_translation() 1600 buttons = NULL; in split_button_translation() 1605 if (buttons == NULL) in split_button_translation() 1609 return buttons; in split_button_translation() 1638 char **buttons; in dialog_add_buttons() local 1685 label = buttons[idx - 1]; in dialog_add_buttons() 1728 vim_free(buttons); in dialog_add_buttons() [all …]
|
| H A D | gui_motif.c | 2519 Widget *buttons; in gui_mch_dialog() local 2563 if (buttons == NULL) in gui_mch_dialog() 2617 XtVaSetValues(buttons[butcount], in gui_mch_dialog() 2618 XmNtopWidget, buttons[butcount - 1], in gui_mch_dialog() 2624 XtVaSetValues(buttons[butcount], in gui_mch_dialog() 2635 XmNrightWidget, buttons[butcount], in gui_mch_dialog() 2643 XtVaSetValues(buttons[butcount], in gui_mch_dialog() 2654 XtVaSetValues(buttons[0], in gui_mch_dialog() 2665 XmNrightWidget, buttons[0], in gui_mch_dialog() 2672 XtVaSetValues(buttons[0], in gui_mch_dialog() [all …]
|
| H A D | gui_haiku.cc | 1489 int32 buttons = 0; in MouseDown() local 1490 m->FindInt32("buttons", &buttons); in MouseDown() 1494 if (buttons & B_PRIMARY_MOUSE_BUTTON) in MouseDown() 1496 else if (buttons & B_SECONDARY_MOUSE_BUTTON) in MouseDown() 1498 else if (buttons & B_TERTIARY_MOUSE_BUTTON) in MouseDown() 2094 BString strButtons(buttons); in VimDialog() 2970 int32 buttons = 0; in MouseDown() local 2971 m->FindInt32("buttons", &buttons); in MouseDown() 4698 uint32 buttons = 0; in gui_mch_show_popupmenu() local 4699 gui.vimTextArea->GetMouse(&point, &buttons); in gui_mch_show_popupmenu() [all …]
|
| H A D | gui_photon.c | 665 if (pointer->buttons & Ph_BUTTON_SELECT) in gui_ph_handle_mouse() 668 if (pointer->buttons & Ph_BUTTON_MENU) in gui_ph_handle_mouse() 676 if (pointer->buttons & Ph_BUTTON_ADJUST) in gui_ph_handle_mouse() 1504 char_u *buttons, in gui_mch_dialog() argument 1522 if (buttons == NULL || *buttons == NUL) in gui_mch_dialog() 1529 for (str = buttons; *str; str++) in gui_mch_dialog() 1543 STRCPY(buttons_copy, buttons); in gui_mch_dialog() 1611 di.buttons = (const char **) button_array; in gui_mch_dialog()
|
| H A D | message.c | 34 static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton); 3741 char_u *buttons, in do_dialog() argument 3765 c = gui_mch_dialog(type, title, message, buttons, dfltbutton, in do_dialog() 3794 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton); in do_dialog() 3907 char_u *buttons, in msg_show_console_dialog() argument 3931 r = buttons; in msg_show_console_dialog() 4011 + STRLEN(buttons) in msg_show_console_dialog() 4042 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL; in msg_show_console_dialog()
|
| H A D | os_unix.c | 7253 buttons_mask = gpm_event.buttons & ~old_buttons; in mch_gpm_process() 7254 old_buttons = gpm_event.buttons; in mch_gpm_process() 7276 old_buttons &= ~gpm_event.buttons; in mch_gpm_process() 7354 int buttons; in SIGDEFARG() local 7371 buttons = mouse.u.data.buttons; in SIGDEFARG() 7375 if (oldbuttons == buttons && buttons != 0) in SIGDEFARG() 7381 switch (buttons) in SIGDEFARG() 7398 oldbuttons = buttons; in SIGDEFARG()
|
| H A D | gui_athena.c | 2088 char_u *buttons, in gui_mch_dialog() argument 2173 buts = vim_strsave(buttons); in gui_mch_dialog()
|
| H A D | evalfunc.c | 2953 char_u *buttons = NULL; in f_confirm() local 2975 buttons = tv_get_string_buf_chk(&argvars[1], buf); in f_confirm() 2976 if (buttons == NULL) in f_confirm() 3001 if (buttons == NULL || *buttons == NUL) in f_confirm() 3002 buttons = (char_u *)_("&Ok"); in f_confirm() 3005 rettv->vval.v_number = do_dialog(type, NULL, message, buttons, in f_confirm()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | os_haiku.txt | 182 Vim calls the various mouse buttons LeftMouse, MiddleMouse and RightMouse. If 190 If your mouse has fewer than 3 buttons you can provide your own mapping from 191 mouse clicks with modifier(s) to other mouse buttons. See the file 204 like. Image width is calculated to contain at least 32 buttons in one-row 207 More info about the buttons assignment are at |builtin-tools|.
|
| H A D | term.txt | 833 shift key with the mouse buttons to let the xterm do the selection. 865 A short overview of what the mouse buttons do, when 'mousemodel' is "extend": 1013 The X1 and X2 buttons refer to the extra buttons found on some mice. The 1014 'Microsoft Explorer' mouse has these buttons available to the right thumb. 1029 Map the X1 and X2 buttons to go forwards and backwards in the jump list, see 1032 *mouse-swap-buttons* 1033 To swap the meaning of the left and right mouse buttons: >
|
| /vim-8.2.3635/runtime/pack/dist/opt/swapmouse/plugin/ |
| H A D | swapmouse.vim | 1 " These macros swap the left and right mouse buttons (for left handed)
|
| /vim-8.2.3635/src/proto/ |
| H A D | gui_gtk.pro | 18 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *…
|
| H A D | gui_athena.pro | 32 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_…
|
| H A D | message.pro | 75 int do_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *te…
|
| H A D | gui_photon.pro | 11 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int default_button, c…
|
| H A D | gui_haiku.pro | 84 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_…
|
| H A D | gui_w32.pro | 88 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_…
|
| /vim-8.2.3635/runtime/macros/ |
| H A D | README.txt | 33 packadd! swapmouse " swap left and right mouse buttons
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_winbar.vim | 30 " Create a WinBar with three buttons.
|
| /vim-8.2.3635/src/VisVim/ |
| H A D | VsReadMe.txt | 12 to keystrokes or toolbar buttons by the user or programmatically
|
| H A D | README_VisVim.txt | 132 You can customize the Vim toolbar itself or add the Vim buttons to other 256 - Extended the VisVim toolbar to have multiple buttons instead of one.
|
| /vim-8.2.3635/nsis/lang/ |
| H A D | tradchinese.nsi | 272 "&Behavior of right and left buttons"
|
| H A D | english.nsi | 274 "&Behavior of right and left buttons"
|
| H A D | dutch.nsi | 275 "&Behavior of right and left buttons"
|
| /vim-8.2.3635/src/libvterm/include/ |
| H A D | vterm.h | 406 int buttons; member
|