Home
last modified time | relevance | path

Searched refs:toolbar (Results 1 – 25 of 97) sorted by relevance

1234

/vim-8.2.3635/runtime/doc/
H A Dusr_42.txt303 The toolbar appears only when the "T" flag is included in the 'guioptions'
305 The toolbar uses icons rather than text to represent the command. For
307 on the toolbar.
309 |builtin-tools|. Most of them are used in the default toolbar. You can
311 You can add another bitmap for a toolbar item. Or define a new toolbar
312 item with a bitmap. For example, define a new toolbar item with: >
324 You can define tooltips for the items in the toolbar. A tooltip is a short
325 text that explains what a toolbar item will do. For example "Open file". It
333 Pay attention to the case used. "Toolbar" and "toolbar" are different
338 The 'toolbar' option can be used to display text instead of a bitmap, or both
H A Dos_qnx.txt59 Toolbar |gui-toolbar|
60 |'toolbar'|
130 - Options for setting the fonts used in the menu and toolbar.
H A Dusr_09.txt10 toolbar, scrollbars and other items. This chapter is about these extra things
42 | aaa bbb ccc ddd eee fff ggg hhh iii jjj | <- toolbar
80 Toggle Toolbar make the toolbar appear/disappear
97 toolbar disappear. If you never want a toolbar, use this command in your
H A Dos_haiku.txt28 12. GUI Toolbar Images |haiku-toolbar-images|
201 12. GUI Toolbar Images *haiku-toolbar-images*
203 Alternative set of toolbar images should be the PNG image of any height you
H A Dgui.txt743 *gui-toolbar*
744 The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11),
746 default toolbar is setup in menu.vim.
748 can thus have menu & toolbar together, or either on its own, or neither.
752 *toolbar-icon*
753 The toolbar is defined as a special menu called ToolBar, which only has one
773 toolbar button image. Note that the exact filename is OS-specific: For
832 *window-toolbar* *WinBar*
834 thus reduces the space for the text by one line. The items in the toolbar
840 If the items do not fit then the last ones cannot be used. The toolbar does
[all …]
H A Ddebugger.txt78 can also be used to display menu and toolbar tips. The footer area is at the
109 toolbar. The 'ballooneval' option does not need to be set for this. But the
H A Dgui_x11.txt419 By default, the toolbar and the tabline of the GTK+ 3 GUI are somewhat larger
429 toolbar button {
455 toolbar button {
543 - Uses the GNOME dock, so that the toolbar and menubar can be moved to
544 different locations other than the top (e.g., the toolbar can be placed on
546 toolbar is only saved in the GNOME 2 version.
547 - That means the menubar and toolbar handles are back! Yeah! And the
H A Devim.man16 the GUI, to enable the use of menus and toolbar.
/vim-8.2.3635/src/VisVim/
H A DREADME_VisVim.txt83 Click the first item of the toolbar to get to the options dialog.
102 accessible using the toolbar or by assigning hotkeys to them (see below).
103 The following functions are visible on the toolbar (from left to right):
132 You can customize the Vim toolbar itself or add the Vim buttons to other
186 3. I can't get VisVim to work. Either the Vim toolbar does not appear at all
248 - The VisVim toolbar button now shows the new Vim icon instead of the old one.
256 - Extended the VisVim toolbar to have multiple buttons instead of one.
257 - Moved the enable/disable commands from the settings dialog to the toolbar.
H A DVsReadMe.txt12 to keystrokes or toolbar buttons by the user or programmatically
37 program uses. It includes the sample toolbar bitmap that is stored
/vim-8.2.3635/src/
H A Dgui_gtk.c725 GtkToolbar *toolbar; in gui_mch_add_menu_item() local
727 toolbar = GTK_TOOLBAR(gui.toolbar); in gui_mch_add_menu_item()
739 gtk_toolbar_insert(toolbar, item, idx); in gui_mch_add_menu_item()
741 gtk_toolbar_insert_space(toolbar, idx); in gui_mch_add_menu_item()
763 gtk_toolbar_get_icon_size(toolbar)); in gui_mch_add_menu_item()
770 gtk_toolbar_insert(toolbar, item, idx); in gui_mch_add_menu_item()
776 toolbar, in gui_mch_add_menu_item()
938 gtk_tooltips_set_tip(GTK_TOOLBAR(gui.toolbar)->tooltips, in gui_mch_menu_set_tip()
973 item = gtk_toolbar_get_nth_item(GTK_TOOLBAR(gui.toolbar), in gui_mch_destroy_menu()
976 gtk_container_remove(GTK_CONTAINER(gui.toolbar), in gui_mch_destroy_menu()
[all …]
H A Dgui_haiku.cc4566 if (toolbar != NULL) { in gui_mch_add_menu_item()
4567 toolbar->AddButton(idx, menu); in gui_mch_add_menu_item()
4605 if (toolbar != NULL) { in gui_mch_destroy_menu()
4606 toolbar->RemoveButton(menu); in gui_mch_destroy_menu()
4654 if (toolbar != NULL) { in gui_mch_menu_grey()
4655 toolbar->GrayButton(menu, grey); in gui_mch_menu_grey()
4973 VimToolbar *toolbar = gui.vimForm->ToolBar(); in gui_mch_show_toolbar() local
4974 gui.toolbar_height = (toolbar && showit) ? toolbar->ToolbarHeight() : 0.; in gui_mch_show_toolbar()
4981 if (toolbar != NULL) { in gui_mch_set_toolbar_pos()
4983 toolbar->MoveTo(x, y); in gui_mch_set_toolbar_pos()
[all …]
H A Dgui_gtk_x11.c3019 set_toolbar_style(GtkToolbar *toolbar) in set_toolbar_style() argument
3036 gtk_toolbar_set_style(toolbar, style); in set_toolbar_style()
3056 gtk_toolbar_unset_icon_size(toolbar); in set_toolbar_style()
3057 size = gtk_toolbar_get_icon_size(toolbar); in set_toolbar_style()
3061 gtk_container_foreach(GTK_CONTAINER(toolbar), in set_toolbar_style()
3065 gtk_toolbar_set_icon_size(toolbar, size); in set_toolbar_style()
3620 gui.toolbar = gtk_toolbar_new(); in gui_mch_init()
3645 gtk_widget_show(gui.toolbar); in gui_mch_init()
4569 if (gui.toolbar == NULL) in gui_mch_show_toolbar()
4577 widget = gui.toolbar; in gui_mch_show_toolbar()
[all …]
H A Dgui_motif.c1513 vimmenu_T *toolbar; in gui_mch_new_tooltip_colors() local
1518 toolbar = gui_find_menu((char_u *)"ToolBar"); in gui_mch_new_tooltip_colors()
1519 if (toolbar != NULL) in gui_mch_new_tooltip_colors()
1520 submenu_change(toolbar, TRUE); in gui_mch_new_tooltip_colors()
2954 vimmenu_T *toolbar; in gui_mch_show_toolbar() local
2957 FOR_ALL_MENUS(toolbar) in gui_mch_show_toolbar()
2958 if (menu_is_toolbar(toolbar->dname)) in gui_mch_show_toolbar()
2965 if (toolbar) in gui_mch_show_toolbar()
2967 for (cur = toolbar->children; cur; cur = cur->next) in gui_mch_show_toolbar()
H A Dgui_athena.c1280 vimmenu_T *toolbar; in gui_mch_show_toolbar() local
1283 FOR_ALL_MENUS(toolbar) in gui_mch_show_toolbar()
1284 if (menu_is_toolbar(toolbar->dname)) in gui_mch_show_toolbar()
1291 if (toolbar) in gui_mch_show_toolbar()
1293 for (cur = toolbar->children; cur; cur = cur->next) in gui_mch_show_toolbar()
/vim-8.2.3635/runtime/lang/
H A Dmenu_af_af.latin1.vim112 " The GUI toolbar
113 if has("toolbar")
H A Dmenu_uk_ua.cp1251.vim199 " The GUI toolbar
200 if has("toolbar")
H A Dmenu_uk_ua.koi8-u.vim199 " The GUI toolbar
200 if has("toolbar")
H A Dmenu_ko_kr.utf-8.vim219 " The GUI toolbar
220 if has("toolbar")
H A Dmenu_sr_rs.iso_8859-5.vim226 " The GUI toolbar
227 if has("toolbar")
H A Dmenu_ru_ru.vim278 " The GUI toolbar
280 if has("toolbar")
H A Dmenu_ko_kr.euckr.vim219 " The GUI toolbar
220 if has("toolbar")
H A Dmenu_ru_ru.koi8-r.vim267 " The GUI toolbar
269 if has("toolbar")
H A Dmenu_sr_rs.utf-8.vim226 " The GUI toolbar
227 if has("toolbar")
/vim-8.2.3635/runtime/syntax/
H A Dgtkrc.vim66 …lor-palette gtk-entry-select-on-focus gtk-can-change-accels gtk-toolbar-style gtk-toolbar-icon-size

1234