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