Home
last modified time | relevance | path

Searched refs:scrollbar_T (Results 1 – 19 of 19) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dgui_athena.pro22 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max);
23 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
26 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
27 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
28 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
29 void gui_mch_set_scrollbar_colors(scrollbar_T *sb);
H A Dgui_motif.pro24 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max);
25 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
28 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
29 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
30 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
31 void gui_mch_set_scrollbar_colors(scrollbar_T *sb);
H A Dgui_haiku.pro30 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
32 //void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb,int val, int size, int max));
33 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max);
35 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
38 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
39 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
H A Dgui_gtk.pro10 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max);
11 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
14 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
15 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
H A Dgui_photon.pro19 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max);
20 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
23 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
24 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
25 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
H A Dgui_w32.pro14 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
15 void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
18 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
49 void gui_mch_destroy_scrollbar(scrollbar_T *sb);
69 void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max);
H A Dgui.pro43 void gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp);
44 scrollbar_T *gui_find_scrollbar(long ident);
45 void gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging);
H A Dgui_gtk_x11.pro72 void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
/vim-8.2.3635/src/
H A Dgui_athena.c92 scrollbar_T *sb, *sb_info; in gui_athena_scroll_cb_jump()
128 scrollbar_T *sb, *sb_info; in gui_athena_scroll_cb_scroll()
1837 scrollbar_T *sb, in gui_mch_set_scrollbar_thumb()
1873 scrollbar_T *sb, in gui_mch_set_scrollbar_pos()
1909 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) in gui_mch_enable_scrollbar()
1922 scrollbar_T *sb, in gui_mch_create_scrollbar()
1958 gui_mch_destroy_scrollbar(scrollbar_T *sb) in gui_mch_destroy_scrollbar()
1965 gui_mch_set_scrollbar_colors(scrollbar_T *sb) in gui_mch_set_scrollbar_colors()
H A Dgui.h196 } scrollbar_T; typedef
285 scrollbar_T bottom_sbar; // Bottom scrollbar
H A Dgui_photon.c410 scrollbar_T *sb; in gui_ph_handle_scrollbar()
415 sb = (scrollbar_T *) data; in gui_ph_handle_scrollbar()
1747 gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max) in gui_mch_set_scrollbar_thumb()
1759 gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h) in gui_mch_set_scrollbar_pos()
1783 gui_mch_create_scrollbar(scrollbar_T *sb, int orient) in gui_mch_create_scrollbar()
1830 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) in gui_mch_enable_scrollbar()
1839 gui_mch_destroy_scrollbar(scrollbar_T *sb) in gui_mch_destroy_scrollbar()
H A Dgui_haiku.cc291 VimScrollBar(scrollbar_T *gsb, orientation posture);
297 scrollbar_T *getGsb() in getGsb()
303 scrollbar_T *gsb;
1932 VimScrollBar::VimScrollBar(scrollbar_T *g, orientation posture): in VimScrollBar()
3586 scrollbar_T *sb, in gui_mch_enable_scrollbar()
3610 scrollbar_T *sb, in gui_mch_set_scrollbar_thumb()
3651 scrollbar_T *sb, in gui_mch_set_scrollbar_pos()
3686 scrollbar_T *sb, in gui_mch_create_scrollbar()
3704 scrollbar_T *sb) in gui_mch_destroy_scrollbar()
H A Dgui_gtk.c1008 gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max) in gui_mch_set_scrollbar_thumb()
1041 gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h) in gui_mch_set_scrollbar_pos()
1084 scrollbar_T *sb; in adjustment_value_changed()
1145 gui_mch_create_scrollbar(scrollbar_T *sb, int orient) in gui_mch_create_scrollbar()
1178 gui_mch_destroy_scrollbar(scrollbar_T *sb) in gui_mch_destroy_scrollbar()
H A Dgui_motif.c113 scrollbar_T *sb; in scroll_cb()
1701 scrollbar_T *sb, in gui_mch_set_scrollbar_thumb()
1717 scrollbar_T *sb, in gui_mch_set_scrollbar_pos()
1766 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) in gui_mch_enable_scrollbar()
1822 scrollbar_T *sb, in gui_mch_create_scrollbar()
1878 gui_mch_destroy_scrollbar(scrollbar_T *sb) in gui_mch_destroy_scrollbar()
1885 gui_mch_set_scrollbar_colors(scrollbar_T *sb) in gui_mch_set_scrollbar_colors()
H A Dgui_w32.c1386 scrollbar_T *sb, in gui_mch_enable_scrollbar()
1398 scrollbar_T *sb, in gui_mch_set_scrollbar_pos()
1438 scrollbar_T *sb, in gui_mch_create_scrollbar()
1453 static scrollbar_T *
2907 gui_mch_destroy_scrollbar(scrollbar_T *sb) in gui_mch_destroy_scrollbar()
3769 scrollbar_T *sb, *sb_info; in _OnScroll()
3849 scrollbar_T *sba = sb->wp->w_scrollbars; in _OnScroll()
5581 scrollbar_T *sb, in gui_mch_set_scrollbar_thumb()
H A Dgui.c3923 gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp) in gui_create_scrollbar()
3946 scrollbar_T *
3979 gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging) in gui_drag_scrollbar()
4198 scrollbar_T *sb; in gui_update_scrollbars()
H A Dtesting.c1256 scrollbar_T *sb = NULL; in f_test_scrollbar()
H A Dstructs.h3759 scrollbar_T w_scrollbars[2]; // vert. Scrollbars for this window
H A Dgui_gtk_x11.c6747 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) in gui_mch_enable_scrollbar()