blob: 51ee93ad70ddb523d5d1e361173816b20663f802 [file] [log] [blame]
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001/* gui_haiku.cc - hand crafted */
2
3void gui_mch_prepare(int *argc, char **argv);
4int gui_mch_init(void);
5int gui_mch_open(void);
6void gui_mch_exit(int vim_exitcode);
7int gui_mch_init_check(void);
8void gui_mch_flush(void);
Bram Moolenaarbeae4082020-04-23 15:41:49 +02009int gui_mch_is_blink_off(void);
Bram Moolenaarb3f74062020-02-26 16:16:53 +010010void gui_mch_new_colors(void);
11void gui_mch_set_bg_color(guicolor_T color);
12void gui_mch_set_fg_color(guicolor_T color);
13void gui_mch_set_sp_color(guicolor_T color);
14guicolor_T gui_mch_get_rgb(guicolor_T pixel);
15guicolor_T gui_mch_get_rgb_color(int r, int g, int b);
16guicolor_T gui_mch_get_color(char_u *name);
17
18GuiFont gui_mch_get_font(char_u *name, int giveErrorIfMissing);
19void gui_mch_set_font(GuiFont font);
20int gui_mch_init_font(char_u *font_name, int fontset);
21void gui_mch_free_font(GuiFont font);
22char_u *gui_mch_get_fontname(GuiFont font, char_u *name);
23
24void gui_mch_set_winpos(int x, int y);
25int gui_mch_get_winpos(int *x, int *y);
26void gui_mch_set_shellsize(int w, int h, int m_w, int m_h, int b_w, int b_h, int d);
27void gui_mch_get_screen_dimensions(int* screen_w, int* screen_h);
28void gui_mch_set_text_area_pos(int x, int y, int w, int h);
29
30void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
31
32//void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb,int val, int size, int max));
33void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, int val, int size, int max);
34
35void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h);
Bram Moolenaar203ec772020-07-17 20:43:43 +020036int gui_mch_get_scrollbar_xpadding(void);
37int gui_mch_get_scrollbar_ypadding(void);
Bram Moolenaarb3f74062020-02-26 16:16:53 +010038void gui_mch_create_scrollbar(scrollbar_T *sb, int orient);
39void gui_mch_destroy_scrollbar(scrollbar_T *sb);
40
41void gui_mch_set_blinking(long waittime, long on, long off);
42void gui_mch_stop_blink(int may_call_gui_update_cursor);
43void gui_mch_start_blink(void);
44
45int gui_mch_adjust_charheight(void);
46void gui_mch_draw_string(int row, int col, char_u *s, int len, int flags);
47int gui_mch_haskey(char_u *name);
48void gui_mch_beep(void);
49void gui_mch_flash(int msec);
50void gui_mch_invert_rectangle(int r, int c, int nr, int nc);
51void gui_mch_iconify(void);
52void gui_mch_set_foreground(void);
53void gui_mch_settitle(char_u *title, char_u *icon);
54void gui_mch_draw_hollow_cursor(guicolor_T color);
55void gui_mch_draw_part_cursor(int w, int h, guicolor_T color);
56void gui_mch_update(void);
57int gui_mch_wait_for_chars(int wtime);
58void gui_mch_clear_block(int row1, int col1, int row2, int col2);
59void gui_mch_clear_all(void);
60void gui_mch_delete_lines(int row, int num_lines);
61void gui_mch_insert_lines(int row, int num_lines);
62
63void gui_mch_getmouse(int *x, int *y);
64void gui_mch_setmouse(int x, int y);
65void gui_mch_mousehide(int hide);
66
67void gui_mch_enable_menu(int flag);
68void gui_mch_set_menu_pos(int x, int y, int w, int h);
69void gui_mch_add_menu(vimmenu_T *menu, int idx);
70void gui_mch_add_menu_item(vimmenu_T *menu, int idx);
71void gui_mch_destroy_menu(vimmenu_T *menu);
72void gui_mch_menu_grey(vimmenu_T *menu, int grey);
73void gui_mch_menu_hidden(vimmenu_T *menu, int hidden);
74void gui_mch_draw_menubar(void);
75void gui_mch_show_popupmenu(vimmenu_T *menu);
76void gui_mch_toggle_tearoffs(int enable);
77
78void clip_mch_request_selection(Clipboard_T *cbd);
79void clip_mch_set_selection(Clipboard_T *cbd);
80void clip_mch_lose_selection(Clipboard_T *cbd);
81int clip_mch_own_selection(Clipboard_T *cbd);
82
83char_u *gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter);
84int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield, int ex_cmd);
85
86void im_set_position(int row, int col);
87void im_set_active(int activate);
88int im_get_status(void);
89
90void gui_mch_show_toolbar(int showit);
91void gui_mch_set_toolbar_pos(int x, int y, int w, int h);
92
93void gui_mch_show_tabline(int showit);
94void gui_mch_set_tabline_pos(int x, int y, int w, int h);
95int gui_mch_showing_tabline(void);
96void gui_mch_update_tabline(void);
97void gui_mch_set_curtab(int nr);