Mercurial > vim
annotate src/proto/gui_haiku.pro @ 25143:54a547489e49 v8.2.3108
patch 8.2.3108: test for remote_foreground() fails
Commit: https://github.com/vim/vim/commit/d6fa7bd5b900dd363d3a824e0ebe3619a1634df6
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jul 5 14:10:04 2021 +0200
patch 8.2.3108: test for remote_foreground() fails
Problem: Test for remote_foreground() fails. (Elimar Riesebieter)
Solution: Check that $DISPLAY is set. (Christian Brabandt)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 05 Jul 2021 14:15:05 +0200 |
parents | fcccc29bd386 |
children |
rev | line source |
---|---|
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); | |
20134
352701a626ed
patch 8.2.0622: Haiku: GUI does not compile
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
9 int gui_mch_is_blink_off(void); |
19526 | 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); | |
21355
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20134
diff
changeset
|
36 int gui_mch_get_scrollbar_xpadding(void); |
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20134
diff
changeset
|
37 int gui_mch_get_scrollbar_ypadding(void); |
19526 | 38 void gui_mch_create_scrollbar(scrollbar_T *sb, int orient); |
39 void gui_mch_destroy_scrollbar(scrollbar_T *sb); | |
40 | |
41 void gui_mch_set_blinking(long waittime, long on, long off); | |
42 void gui_mch_stop_blink(int may_call_gui_update_cursor); | |
43 void gui_mch_start_blink(void); | |
44 | |
45 int gui_mch_adjust_charheight(void); | |
46 void gui_mch_draw_string(int row, int col, char_u *s, int len, int flags); | |
47 int gui_mch_haskey(char_u *name); | |
48 void gui_mch_beep(void); | |
49 void gui_mch_flash(int msec); | |
50 void gui_mch_invert_rectangle(int r, int c, int nr, int nc); | |
51 void gui_mch_iconify(void); | |
52 void gui_mch_set_foreground(void); | |
53 void gui_mch_settitle(char_u *title, char_u *icon); | |
54 void gui_mch_draw_hollow_cursor(guicolor_T color); | |
55 void gui_mch_draw_part_cursor(int w, int h, guicolor_T color); | |
56 void gui_mch_update(void); | |
57 int gui_mch_wait_for_chars(int wtime); | |
58 void gui_mch_clear_block(int row1, int col1, int row2, int col2); | |
59 void gui_mch_clear_all(void); | |
60 void gui_mch_delete_lines(int row, int num_lines); | |
61 void gui_mch_insert_lines(int row, int num_lines); | |
62 | |
63 void gui_mch_getmouse(int *x, int *y); | |
64 void gui_mch_setmouse(int x, int y); | |
65 void gui_mch_mousehide(int hide); | |
66 | |
67 void gui_mch_enable_menu(int flag); | |
68 void gui_mch_set_menu_pos(int x, int y, int w, int h); | |
69 void gui_mch_add_menu(vimmenu_T *menu, int idx); | |
70 void gui_mch_add_menu_item(vimmenu_T *menu, int idx); | |
71 void gui_mch_destroy_menu(vimmenu_T *menu); | |
72 void gui_mch_menu_grey(vimmenu_T *menu, int grey); | |
73 void gui_mch_menu_hidden(vimmenu_T *menu, int hidden); | |
74 void gui_mch_draw_menubar(void); | |
75 void gui_mch_show_popupmenu(vimmenu_T *menu); | |
76 void gui_mch_toggle_tearoffs(int enable); | |
77 | |
78 void clip_mch_request_selection(Clipboard_T *cbd); | |
79 void clip_mch_set_selection(Clipboard_T *cbd); | |
80 void clip_mch_lose_selection(Clipboard_T *cbd); | |
81 int clip_mch_own_selection(Clipboard_T *cbd); | |
82 | |
83 char_u *gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter); | |
84 int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield, int ex_cmd); | |
85 | |
86 void im_set_position(int row, int col); | |
87 void im_set_active(int activate); | |
88 int im_get_status(void); | |
89 | |
90 void gui_mch_show_toolbar(int showit); | |
91 void gui_mch_set_toolbar_pos(int x, int y, int w, int h); | |
92 | |
93 void gui_mch_show_tabline(int showit); | |
94 void gui_mch_set_tabline_pos(int x, int y, int w, int h); | |
95 int gui_mch_showing_tabline(void); | |
96 void gui_mch_update_tabline(void); | |
97 void gui_mch_set_curtab(int nr); |