Mercurial > vim
annotate src/gui.c @ 29210:947c8434894a v8.2.5124
patch 8.2.5124: when syntax timeout test fails it does not show the time
Commit: https://github.com/vim/vim/commit/620aa8eb5b1468d086253f8aa787a33a86033100
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 18 16:05:32 2022 +0100
patch 8.2.5124: when syntax timeout test fails it does not show the time
Problem: When syntax timeout test fails it does not show the time.
Solution: Use assert_inrange().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 18 Jun 2022 17:15:02 +0200 |
parents | 87ad2de4fe41 |
children | a74398c432a4 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9939
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * GUI/Motif support by Robert Webb | |
5 * | |
6 * Do ":help uganda" in Vim to read copying and usage conditions. | |
7 * Do ":help credits" in Vim to see a list of people who contributed. | |
8 * See README.txt for an overview of the Vim source code. | |
9 */ | |
10 | |
11 #include "vim.h" | |
12 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
13 // Structure containing all the GUI information |
7 | 14 gui_T gui; |
15 | |
27404
de98b9219c15
patch 8.2.4230: MS-Windows: set_guifontwide() is included but won't work
Bram Moolenaar <Bram@vim.org>
parents:
27160
diff
changeset
|
16 #if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) |
de98b9219c15
patch 8.2.4230: MS-Windows: set_guifontwide() is included but won't work
Bram Moolenaar <Bram@vim.org>
parents:
27160
diff
changeset
|
17 # define USE_SET_GUIFONTWIDE |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
18 static void set_guifontwide(char_u *font_name); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
19 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
20 static void gui_check_pos(void); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
21 static void gui_reset_scroll_region(void); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
22 static void gui_outstr(char_u *, int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
23 static int gui_screenchar(int off, int flags, guicolor_T fg, guicolor_T bg, int back); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
24 static int gui_outstr_nowrap(char_u *s, int len, int flags, guicolor_T fg, guicolor_T bg, int back); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
25 static void gui_delete_lines(int row, int count); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
26 static void gui_insert_lines(int row, int count); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
27 static int gui_xy2colrow(int x, int y, int *colp); |
685 | 28 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
29 static int gui_has_tabline(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
30 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
31 static void gui_do_scrollbar(win_T *wp, int which, int enable); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
32 static void gui_update_horiz_scrollbar(int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
33 static void gui_set_fg_color(char_u *name); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
34 static void gui_set_bg_color(char_u *name); |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
35 static win_T *xy2win(int x, int y, mouse_find_T popup); |
7 | 36 |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
37 #ifdef GUI_MAY_FORK |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
38 static void gui_do_fork(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
39 |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
40 static int gui_read_child_pipe(int fd); |
3087 | 41 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
42 // Return values for gui_read_child_pipe |
3087 | 43 enum { |
44 GUI_CHILD_IO_ERROR, | |
45 GUI_CHILD_OK, | |
46 GUI_CHILD_FAILED | |
47 }; | |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
48 #endif |
3087 | 49 |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
50 static void gui_attempt_start(void); |
3087 | 51 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
52 static int can_update_cursor = TRUE; // can display the cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
53 static int disable_flush = 0; // If > 0, gui_mch_flush() is disabled. |
7 | 54 |
55 /* | |
56 * gui_start -- Called when user wants to start the GUI. | |
57 * | |
58 * Careful: This function can be called recursively when there is a ":gui" | |
59 * command in the .gvimrc file. Only the first call should fork, not the | |
60 * recursive call. | |
61 */ | |
62 void | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
63 gui_start(char_u *arg UNUSED) |
7 | 64 { |
65 char_u *old_term; | |
66 static int recursive = 0; | |
16602
47a8b29f289c
patch 8.1.1304: MS-Windows: compiler warning for unused value
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
67 #if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
68 char *msg = NULL; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
69 #endif |
7 | 70 |
71 old_term = vim_strsave(T_NAME); | |
72 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
73 settmode(TMODE_COOK); // stop RAW mode |
7 | 74 if (full_screen) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
75 cursor_on(); // needed for ":gui" in .vimrc |
7 | 76 full_screen = FALSE; |
77 | |
3087 | 78 ++recursive; |
2923 | 79 |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
80 #ifdef GUI_MAY_FORK |
3087 | 81 /* |
82 * Quit the current process and continue in the child. | |
83 * Makes "gvim file" disconnect from the shell it was started in. | |
84 * Don't do this when Vim was started with "-f" or the 'f' flag is present | |
85 * in 'guioptions'. | |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
86 * Don't do this when there is a running job, we can only get the status |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
87 * of a child from the parent. |
3087 | 88 */ |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
89 if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1 |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
90 # ifdef FEAT_JOB_CHANNEL |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
91 && !job_any_running() |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
92 # endif |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
93 ) |
3087 | 94 { |
95 gui_do_fork(); | |
96 } | |
97 else | |
98 #endif | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
99 #ifdef GUI_MAY_SPAWN |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
100 if (gui.dospawn |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
101 # ifdef EXPERIMENTAL_GUI_CMD |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
102 && gui.dofork |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
103 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
104 && !vim_strchr(p_go, GO_FORG) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
105 && !anyBufIsChanged() |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
106 # ifdef FEAT_JOB_CHANNEL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
107 && !job_any_running() |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
108 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
109 ) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
110 { |
16602
47a8b29f289c
patch 8.1.1304: MS-Windows: compiler warning for unused value
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
111 # ifdef EXPERIMENTAL_GUI_CMD |
47a8b29f289c
patch 8.1.1304: MS-Windows: compiler warning for unused value
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
112 msg = |
47a8b29f289c
patch 8.1.1304: MS-Windows: compiler warning for unused value
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
113 # endif |
47a8b29f289c
patch 8.1.1304: MS-Windows: compiler warning for unused value
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
114 gui_mch_do_spawn(arg); |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
115 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
116 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
117 #endif |
3087 | 118 { |
3541 | 119 #ifdef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
120 // If there is 'f' in 'guioptions' and specify -g argument, |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
121 // gui_mch_init_check() was not called yet. |
3539 | 122 if (gui_mch_init_check() != OK) |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
123 getout_preserve_modified(1); |
3541 | 124 #endif |
3087 | 125 gui_attempt_start(); |
126 } | |
7 | 127 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
128 if (!gui.in_use) // failed to start GUI |
7 | 129 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
130 // Back to old term settings |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
131 // |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
132 // FIXME: If we got here because a child process failed and flagged to |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26321
diff
changeset
|
133 // the parent to resume, and X11 is enabled, this will |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
134 // hit an X11 I/O error and do a longjmp(), leaving recursive |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
135 // permanently set to 1. This is probably not as big a problem as it |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
136 // sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
137 // return "OK" unconditionally, so it would be very difficult to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
138 // actually hit this case. |
3087 | 139 termcapinit(old_term); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
140 settmode(TMODE_RAW); // restart RAW mode |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
141 set_title_defaults(); // set 'title' and 'icon' again |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
142 #if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
143 if (msg) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
144 emsg(msg); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
145 #endif |
7 | 146 } |
147 | |
148 vim_free(old_term); | |
149 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
150 // If the GUI started successfully, trigger the GUIEnter event, otherwise |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
151 // the GUIFailed event. |
3087 | 152 gui_mch_update(); |
153 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED, | |
154 NULL, NULL, FALSE, curbuf); | |
155 --recursive; | |
156 } | |
157 | |
158 /* | |
159 * Set_termname() will call gui_init() to start the GUI. | |
160 * Set the "starting" flag, to indicate that the GUI will start. | |
161 * | |
162 * We don't want to open the GUI shell until after we've read .gvimrc, | |
163 * otherwise we don't know what font we will use, and hence we don't know | |
164 * what size the shell should be. So if there are errors in the .gvimrc | |
165 * file, they will have to go to the terminal: Set full_screen to FALSE. | |
166 * full_screen will be set to TRUE again by a successful termcapinit(). | |
167 */ | |
168 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
169 gui_attempt_start(void) |
3087 | 170 { |
171 static int recursive = 0; | |
172 | |
173 ++recursive; | |
174 gui.starting = TRUE; | |
175 | |
176 #ifdef FEAT_GUI_GTK | |
177 gui.event_time = GDK_CURRENT_TIME; | |
178 #endif | |
179 | |
180 termcapinit((char_u *)"builtin_gui"); | |
181 gui.starting = recursive - 1; | |
182 | |
574 | 183 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
7 | 184 if (gui.in_use) |
2609 | 185 { |
186 # ifdef FEAT_EVAL | |
187 Window x11_window; | |
188 Display *x11_display; | |
189 | |
190 if (gui_get_x11_windis(&x11_window, &x11_display) == OK) | |
191 set_vim_var_nr(VV_WINDOWID, (long)x11_window); | |
192 # endif | |
193 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
194 // Display error messages in a dialog now. |
7 | 195 display_errors(); |
2609 | 196 } |
7 | 197 #endif |
3087 | 198 --recursive; |
199 } | |
200 | |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13386
diff
changeset
|
201 #ifdef GUI_MAY_FORK |
3087 | 202 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
203 // for waitpid() |
3087 | 204 # if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT) |
205 # include <sys/wait.h> | |
206 # endif | |
207 | |
208 /* | |
209 * Create a new process, by forking. In the child, start the GUI, and in | |
210 * the parent, exit. | |
211 * | |
212 * If something goes wrong, this will return with gui.in_use still set | |
213 * to FALSE, in which case the caller should continue execution without | |
214 * the GUI. | |
215 * | |
216 * If the child fails to start the GUI, then the child will exit and the | |
217 * parent will return. If the child succeeds, then the parent will exit | |
218 * and the child will return. | |
219 */ | |
220 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
221 gui_do_fork(void) |
3087 | 222 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
223 int pipefd[2]; // pipe between parent and child |
3087 | 224 int pipe_error; |
225 int status; | |
226 int exit_status; | |
227 pid_t pid = -1; | |
228 | |
29187
87ad2de4fe41
patch 8.2.5113: timer becomes invalid after fork/exec, :gui gives errors
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
229 #if defined(FEAT_RELTIME) && defined(HAVE_TIMER_CREATE) |
87ad2de4fe41
patch 8.2.5113: timer becomes invalid after fork/exec, :gui gives errors
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
230 // a timer is not carried forward |
87ad2de4fe41
patch 8.2.5113: timer becomes invalid after fork/exec, :gui gives errors
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
231 delete_timer(); |
87ad2de4fe41
patch 8.2.5113: timer becomes invalid after fork/exec, :gui gives errors
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
232 #endif |
87ad2de4fe41
patch 8.2.5113: timer becomes invalid after fork/exec, :gui gives errors
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
233 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
234 // Setup a pipe between the child and the parent, so that the parent |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
235 // knows when the child has done the setsid() call and is allowed to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
236 // exit. |
3087 | 237 pipe_error = (pipe(pipefd) < 0); |
238 pid = fork(); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
239 if (pid < 0) // Fork error |
7 | 240 { |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
241 emsg(_(e_failed_to_create_new_process_for_GUI)); |
3087 | 242 return; |
243 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
244 else if (pid > 0) // Parent |
3087 | 245 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
246 // Give the child some time to do the setsid(), otherwise the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
247 // exit() may kill the child too (when starting gvim from inside a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
248 // gvim). |
3087 | 249 if (!pipe_error) |
7 | 250 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
251 // The read returns when the child closes the pipe (or when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
252 // the child dies for some reason). |
3087 | 253 close(pipefd[1]); |
254 status = gui_read_child_pipe(pipefd[0]); | |
255 if (status == GUI_CHILD_FAILED) | |
7 | 256 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
257 // The child failed to start the GUI, so the caller must |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
258 // continue. There may be more error information written |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
259 // to stderr by the child. |
3087 | 260 # ifdef __NeXT__ |
261 wait4(pid, &exit_status, 0, (struct rusage *)0); | |
262 # else | |
263 waitpid(pid, &exit_status, 0); | |
264 # endif | |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
265 emsg(_(e_the_child_process_failed_to_start_GUI)); |
3087 | 266 return; |
7 | 267 } |
3087 | 268 else if (status == GUI_CHILD_IO_ERROR) |
269 { | |
270 pipe_error = TRUE; | |
271 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
272 // else GUI_CHILD_OK: parent exit |
7 | 273 } |
274 | |
3087 | 275 if (pipe_error) |
18642
bbea1f108187
patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents:
18520
diff
changeset
|
276 ui_delay(301L, TRUE); |
3087 | 277 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
278 // When swapping screens we may need to go to the next line, e.g., |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
279 // after a hit-enter prompt and using ":gui". |
3087 | 280 if (newline_on_exit) |
281 mch_errmsg("\r\n"); | |
282 | |
283 /* | |
284 * The parent must skip the normal exit() processing, the child | |
285 * will do it. For example, GTK messes up signals when exiting. | |
286 */ | |
287 _exit(0); | |
288 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
289 // Child |
3087 | 290 |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
291 # ifdef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
292 // Call gtk_init_check() here after fork(). See gui_init_check(). |
3518 | 293 if (gui_mch_init_check() != OK) |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
294 getout_preserve_modified(1); |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
295 # endif |
3518 | 296 |
7 | 297 # if defined(HAVE_SETSID) || defined(HAVE_SETPGID) |
3087 | 298 /* |
299 * Change our process group. On some systems/shells a CTRL-C in the | |
300 * shell where Vim was started would otherwise kill gvim! | |
301 */ | |
7 | 302 # if defined(HAVE_SETSID) |
3087 | 303 (void)setsid(); |
7 | 304 # else |
3087 | 305 (void)setpgid(0, 0); |
7 | 306 # endif |
307 # endif | |
3087 | 308 if (!pipe_error) |
309 close(pipefd[0]); | |
7 | 310 |
311 # if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
312 // Tell the session manager our new PID |
3087 | 313 gui_mch_forked(); |
7 | 314 # endif |
3087 | 315 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
316 // Try to start the GUI |
3087 | 317 gui_attempt_start(); |
318 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
319 // Notify the parent |
3147 | 320 if (!pipe_error) |
3087 | 321 { |
3147 | 322 if (gui.in_use) |
323 write_eintr(pipefd[1], "ok", 3); | |
324 else | |
325 write_eintr(pipefd[1], "fail", 5); | |
326 close(pipefd[1]); | |
3087 | 327 } |
328 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
329 // If we failed to start the GUI, exit now. |
3087 | 330 if (!gui.in_use) |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
331 getout_preserve_modified(1); |
7 | 332 } |
333 | |
334 /* | |
3087 | 335 * Read from a pipe assumed to be connected to the child process (this |
336 * function is called from the parent). | |
337 * Return GUI_CHILD_OK if the child successfully started the GUI, | |
338 * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was | |
339 * some other error. | |
340 * | |
341 * The file descriptor will be closed before the function returns. | |
342 */ | |
343 static int | |
344 gui_read_child_pipe(int fd) | |
345 { | |
3147 | 346 long bytes_read; |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
347 # define READ_BUFFER_SIZE 10 |
3147 | 348 char buffer[READ_BUFFER_SIZE]; |
349 | |
350 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1); | |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
351 # undef READ_BUFFER_SIZE |
3147 | 352 close(fd); |
353 if (bytes_read < 0) | |
3087 | 354 return GUI_CHILD_IO_ERROR; |
3147 | 355 buffer[bytes_read] = NUL; |
3087 | 356 if (strcmp(buffer, "ok") == 0) |
357 return GUI_CHILD_OK; | |
358 return GUI_CHILD_FAILED; | |
359 } | |
360 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
361 #endif // GUI_MAY_FORK |
3087 | 362 |
363 /* | |
7 | 364 * Call this when vim starts up, whether or not the GUI is started |
365 */ | |
366 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
367 gui_prepare(int *argc, char **argv) |
7 | 368 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
369 gui.in_use = FALSE; // No GUI yet (maybe later) |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
370 gui.starting = FALSE; // No GUI yet (maybe later) |
7 | 371 gui_mch_prepare(argc, argv); |
372 } | |
373 | |
374 /* | |
375 * Try initializing the GUI and check if it can be started. | |
376 * Used from main() to check early if "vim -g" can start the GUI. | |
377 * Used from gui_init() to prepare for starting the GUI. | |
378 * Returns FAIL or OK. | |
379 */ | |
380 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
381 gui_init_check(void) |
7 | 382 { |
383 static int result = MAYBE; | |
384 | |
385 if (result != MAYBE) | |
386 { | |
387 if (result == FAIL) | |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26771
diff
changeset
|
388 emsg(_(e_cannot_start_the_GUI)); |
7 | 389 return result; |
390 } | |
391 | |
392 gui.shell_created = FALSE; | |
393 gui.dying = FALSE; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
394 gui.in_focus = TRUE; // so the guicursor setting works |
7 | 395 gui.dragged_sb = SBAR_NONE; |
396 gui.dragged_wp = NULL; | |
397 gui.pointer_hidden = FALSE; | |
398 gui.col = 0; | |
399 gui.row = 0; | |
400 gui.num_cols = Columns; | |
401 gui.num_rows = Rows; | |
402 | |
403 gui.cursor_is_valid = FALSE; | |
404 gui.scroll_region_top = 0; | |
405 gui.scroll_region_bot = Rows - 1; | |
406 gui.scroll_region_left = 0; | |
407 gui.scroll_region_right = Columns - 1; | |
408 gui.highlight_mask = HL_NORMAL; | |
409 gui.char_width = 1; | |
410 gui.char_height = 1; | |
411 gui.char_ascent = 0; | |
412 gui.border_width = 0; | |
413 | |
414 gui.norm_font = NOFONT; | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
415 #ifndef FEAT_GUI_GTK |
7 | 416 gui.bold_font = NOFONT; |
417 gui.ital_font = NOFONT; | |
418 gui.boldital_font = NOFONT; | |
419 # ifdef FEAT_XFONTSET | |
420 gui.fontset = NOFONTSET; | |
421 # endif | |
422 #endif | |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
423 gui.wide_font = NOFONT; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
424 #ifndef FEAT_GUI_GTK |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
425 gui.wide_bold_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
426 gui.wide_ital_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
427 gui.wide_boldital_font = NOFONT; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
428 #endif |
7 | 429 |
430 #ifdef FEAT_MENU | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
431 # ifndef FEAT_GUI_GTK |
7 | 432 # ifdef FONTSET_ALWAYS |
433 gui.menu_fontset = NOFONTSET; | |
434 # else | |
435 gui.menu_font = NOFONT; | |
436 # endif | |
437 # endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
438 gui.menu_is_active = TRUE; // default: include menu |
7 | 439 # ifndef FEAT_GUI_GTK |
440 gui.menu_height = MENU_DEFAULT_HEIGHT; | |
441 gui.menu_width = 0; | |
442 # endif | |
443 #endif | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
444 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU)) |
7 | 445 gui.toolbar_height = 0; |
446 #endif | |
447 #if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF) | |
448 gui.footer_height = 0; | |
449 #endif | |
450 #ifdef FEAT_BEVAL_TIP | |
451 gui.tooltip_fontset = NOFONTSET; | |
452 #endif | |
453 | |
454 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH; | |
455 gui.prev_wrap = -1; | |
456 | |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
457 #ifdef FEAT_GUI_GTK |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
458 CLEAR_FIELD(gui.ligatures_map); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
459 #endif |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
460 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
461 #if defined(ALWAYS_USE_GUI) || defined(VIMDLL) |
7 | 462 result = OK; |
463 #else | |
3518 | 464 # ifdef FEAT_GUI_GTK |
465 /* | |
466 * Note: Don't call gtk_init_check() before fork, it will be called after | |
467 * the fork. When calling it before fork, it make vim hang for a while. | |
468 * See gui_do_fork(). | |
469 * Use a simpler check if the GUI window can probably be opened. | |
470 */ | |
9836
bc591685594a
commit https://github.com/vim/vim/commit/717e196060d946fe20bb0f0307f417dc4d0e9b17
Christian Brabandt <cb@256bit.org>
parents:
9651
diff
changeset
|
471 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check(); |
3518 | 472 # else |
7 | 473 result = gui_mch_init_check(); |
3518 | 474 # endif |
7 | 475 #endif |
476 return result; | |
477 } | |
478 | |
479 /* | |
480 * This is the call which starts the GUI. | |
481 */ | |
482 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
483 gui_init(void) |
7 | 484 { |
485 win_T *wp; | |
486 static int recursive = 0; | |
487 | |
488 /* | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
489 * It's possible to use ":gui" in a .gvimrc file. The first half of this |
7 | 490 * function will then be executed at the first call, the rest by the |
491 * recursive call. This allow the shell to be opened halfway reading a | |
492 * gvimrc file. | |
493 */ | |
494 if (!recursive) | |
495 { | |
496 ++recursive; | |
497 | |
498 clip_init(TRUE); | |
499 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
500 // If can't initialize, don't try doing the rest |
7 | 501 if (gui_init_check() == FAIL) |
502 { | |
503 --recursive; | |
504 clip_init(FALSE); | |
505 return; | |
506 } | |
507 | |
508 /* | |
147 | 509 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It |
510 * breaks the Paste toolbar button. | |
511 */ | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
512 set_option_value_give_err((char_u *)"paste", 0L, NULL, 0); |
147 | 513 |
19997
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
514 // Set t_Co to the number of colors: RGB. |
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
515 set_color_count(256 * 256 * 256); |
3d1de9093c01
patch 8.2.0554: the GUI doesn't set t_Co
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
516 |
147 | 517 /* |
7 | 518 * Set up system-wide default menus. |
519 */ | |
520 #if defined(SYS_MENU_FILE) && defined(FEAT_MENU) | |
521 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL) | |
522 { | |
523 sys_menu = TRUE; | |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
524 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL); |
7 | 525 sys_menu = FALSE; |
526 } | |
527 #endif | |
528 | |
529 /* | |
530 * Switch on the mouse by default, unless the user changed it already. | |
531 * This can then be changed in the .gvimrc. | |
532 */ | |
533 if (!option_was_set((char_u *)"mouse")) | |
534 set_string_option_direct((char_u *)"mouse", -1, | |
694 | 535 (char_u *)"a", OPT_FREE, SID_NONE); |
7 | 536 |
537 /* | |
538 * If -U option given, use only the initializations from that file and | |
539 * nothing else. Skip all initializations for "-U NONE" or "-u NORC". | |
540 */ | |
541 if (use_gvimrc != NULL) | |
542 { | |
543 if (STRCMP(use_gvimrc, "NONE") != 0 | |
544 && STRCMP(use_gvimrc, "NORC") != 0 | |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
545 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK) |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
546 semsg(_(e_cannot_read_from_str), use_gvimrc); |
7 | 547 } |
548 else | |
549 { | |
550 /* | |
551 * Get system wide defaults for gvim, only when file name defined. | |
552 */ | |
553 #ifdef SYS_GVIMRC_FILE | |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
554 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL); |
7 | 555 #endif |
556 | |
557 /* | |
558 * Try to read GUI initialization commands from the following | |
559 * places: | |
560 * - environment variable GVIMINIT | |
561 * - the user gvimrc file (~/.gvimrc) | |
562 * - the second user gvimrc file ($VIM/.gvimrc for Dos) | |
563 * - the third user gvimrc file ($VIM/.gvimrc for Amiga) | |
564 * The first that exists is used, the rest is ignored. | |
565 */ | |
566 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL | |
819 | 567 && do_source((char_u *)USR_GVIMRC_FILE, TRUE, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
568 DOSO_GVIMRC, NULL) == FAIL |
7 | 569 #ifdef USR_GVIMRC_FILE2 |
819 | 570 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
571 DOSO_GVIMRC, NULL) == FAIL |
7 | 572 #endif |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
573 #ifdef USR_GVIMRC_FILE3 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
574 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
575 DOSO_GVIMRC, NULL) == FAIL |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
576 #endif |
7 | 577 ) |
578 { | |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
579 #ifdef USR_GVIMRC_FILE4 |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
580 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE, |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
581 DOSO_GVIMRC, NULL); |
7 | 582 #endif |
583 } | |
584 | |
585 /* | |
586 * Read initialization commands from ".gvimrc" in current | |
587 * directory. This is only done if the 'exrc' option is set. | |
588 * Because of security reasons we disallow shell and write | |
589 * commands now, except for unix if the file is owned by the user | |
590 * or 'secure' option has been reset in environment of global | |
591 * ".gvimrc". | |
592 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE, | |
593 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE. | |
594 */ | |
595 if (p_exrc) | |
596 { | |
597 #ifdef UNIX | |
598 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9385
diff
changeset
|
599 stat_T s; |
7 | 600 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
601 // if ".gvimrc" file is not owned by user, set 'secure' |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
602 // mode |
7 | 603 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid()) |
604 secure = p_secure; | |
605 } | |
606 #else | |
607 secure = p_secure; | |
608 #endif | |
609 | |
610 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE, | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16602
diff
changeset
|
611 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME |
7 | 612 #ifdef SYS_GVIMRC_FILE |
613 && fullpathcmp((char_u *)SYS_GVIMRC_FILE, | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16602
diff
changeset
|
614 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME |
7 | 615 #endif |
616 #ifdef USR_GVIMRC_FILE2 | |
617 && fullpathcmp((char_u *)USR_GVIMRC_FILE2, | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16602
diff
changeset
|
618 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME |
7 | 619 #endif |
620 #ifdef USR_GVIMRC_FILE3 | |
621 && fullpathcmp((char_u *)USR_GVIMRC_FILE3, | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16602
diff
changeset
|
622 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME |
7 | 623 #endif |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
624 #ifdef USR_GVIMRC_FILE4 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
625 && fullpathcmp((char_u *)USR_GVIMRC_FILE4, |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16602
diff
changeset
|
626 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
627 #endif |
7 | 628 ) |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18989
diff
changeset
|
629 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL); |
7 | 630 |
631 if (secure == 2) | |
632 need_wait_return = TRUE; | |
633 secure = 0; | |
634 } | |
635 } | |
636 | |
637 if (need_wait_return || msg_didany) | |
638 wait_return(TRUE); | |
639 | |
640 --recursive; | |
641 } | |
642 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
643 // If recursive call opened the shell, return here from the first call |
7 | 644 if (gui.in_use) |
645 return; | |
646 | |
647 /* | |
648 * Create the GUI shell. | |
649 */ | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
650 gui.in_use = TRUE; // Must be set after menus have been set up |
7 | 651 if (gui_mch_init() == FAIL) |
652 goto error; | |
653 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
654 // Avoid a delay for an error message that was printed in the terminal |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
655 // where Vim was started. |
7 | 656 emsg_on_display = FALSE; |
657 msg_scrolled = 0; | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
658 clear_sb_text(TRUE); |
7 | 659 need_wait_return = FALSE; |
660 msg_didany = FALSE; | |
661 | |
662 /* | |
663 * Check validity of any generic resources that may have been loaded. | |
664 */ | |
665 if (gui.border_width < 0) | |
666 gui.border_width = 0; | |
667 | |
668 /* | |
669 * Set up the fonts. First use a font specified with "-fn" or "-font". | |
670 */ | |
671 if (font_argument != NULL) | |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
672 set_option_value_give_err((char_u *)"gfn", |
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
673 0L, (char_u *)font_argument, 0); |
7 | 674 if ( |
675 #ifdef FEAT_XFONTSET | |
676 (*p_guifontset == NUL | |
677 || gui_init_font(p_guifontset, TRUE) == FAIL) && | |
678 #endif | |
679 gui_init_font(*p_guifont == NUL ? hl_get_font_name() | |
680 : p_guifont, FALSE) == FAIL) | |
681 { | |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
682 emsg(_(e_cannot_start_gui_no_valid_font_found)); |
7 | 683 goto error2; |
684 } | |
685 if (gui_get_wide_font() == FAIL) | |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
686 emsg(_(e_guifontwide_invalid)); |
7 | 687 |
688 gui.num_cols = Columns; | |
689 gui.num_rows = Rows; | |
690 gui_reset_scroll_region(); | |
691 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
692 // Create initial scrollbars |
7 | 693 FOR_ALL_WINDOWS(wp) |
694 { | |
695 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp); | |
696 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp); | |
697 } | |
698 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL); | |
699 | |
700 #ifdef FEAT_MENU | |
701 gui_create_initial_menus(root_menu); | |
702 #endif | |
703 #ifdef FEAT_SIGN_ICONS | |
704 sign_gui_started(); | |
705 #endif | |
706 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
707 // Configure the desired menu and scrollbars |
7 | 708 gui_init_which_components(NULL); |
709 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
710 // All components of the GUI have been created now |
7 | 711 gui.shell_created = TRUE; |
712 | |
16184
acbb1a815e7c
patch 8.1.1097: Motif build fails
Bram Moolenaar <Bram@vim.org>
parents:
16174
diff
changeset
|
713 #ifdef FEAT_GUI_MSWIN |
15233
5e7515dbf871
patch 8.1.0626: MS-Windows: no resize to fit parent when using --windowid
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
714 // Set the shell size, adjusted for the screen size. For GTK this only |
5e7515dbf871
patch 8.1.0626: MS-Windows: no resize to fit parent when using --windowid
Bram Moolenaar <Bram@vim.org>
parents:
15134
diff
changeset
|
715 // works after the shell has been opened, thus it is further down. |
16174
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
716 // If the window is already maximized (e.g. when --windowid is passed in), |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
717 // we want to use the system-provided dimensions by passing FALSE to |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
718 // mustset. Otherwise, we want to initialize with the default rows/columns. |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
719 if (gui_mch_maximized()) |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
720 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
721 else |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
722 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH); |
16184
acbb1a815e7c
patch 8.1.1097: Motif build fails
Bram Moolenaar <Bram@vim.org>
parents:
16174
diff
changeset
|
723 #else |
acbb1a815e7c
patch 8.1.1097: Motif build fails
Bram Moolenaar <Bram@vim.org>
parents:
16174
diff
changeset
|
724 # ifndef FEAT_GUI_GTK |
acbb1a815e7c
patch 8.1.1097: Motif build fails
Bram Moolenaar <Bram@vim.org>
parents:
16174
diff
changeset
|
725 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); |
acbb1a815e7c
patch 8.1.1097: Motif build fails
Bram Moolenaar <Bram@vim.org>
parents:
16174
diff
changeset
|
726 # endif |
7 | 727 #endif |
728 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
729 // Need to set the size of the menubar after all the menus have been |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
730 // created. |
7 | 731 gui_mch_compute_menu_height((Widget)0); |
732 #endif | |
733 | |
734 /* | |
735 * Actually open the GUI shell. | |
736 */ | |
737 if (gui_mch_open() != FAIL) | |
738 { | |
739 maketitle(); | |
740 resettitle(); | |
26336
a2e6da79274d
patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents:
26321
diff
changeset
|
741 |
7 | 742 init_gui_options(); |
743 #ifdef FEAT_ARABIC | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
744 // Our GUI can't do bidi. |
7 | 745 p_tbidi = FALSE; |
746 #endif | |
574 | 747 #if defined(FEAT_GUI_GTK) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
748 // Give GTK+ a chance to put all widget's into place. |
7 | 749 gui_mch_update(); |
827 | 750 |
751 # ifdef FEAT_MENU | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
752 // If there is no 'm' in 'guioptions' we need to remove the menu now. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
753 // It was still there to make F10 work. |
827 | 754 if (vim_strchr(p_go, GO_MENUS) == NULL) |
755 { | |
756 --gui.starting; | |
757 gui_mch_enable_menu(FALSE); | |
758 ++gui.starting; | |
759 gui_mch_update(); | |
760 } | |
761 # endif | |
762 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
763 // Now make sure the shell fits on the screen. |
16174
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
764 if (gui_mch_maximized()) |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
765 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
766 else |
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
767 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH); |
7 | 768 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
769 // When 'lines' was set while starting up the topframe may have to be |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
770 // resized. |
261 | 771 win_new_shellsize(); |
187 | 772 |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
773 #ifdef FEAT_BEVAL_GUI |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
774 // Always create the Balloon Evaluation area, but disable it when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
775 // 'ballooneval' is off. |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12839
diff
changeset
|
776 if (balloonEval != NULL) |
14208
4cb334816bb1
patch 8.1.0121: crash when using ballooneval related to 'vartabstop'
Christian Brabandt <cb@256bit.org>
parents:
13927
diff
changeset
|
777 { |
4cb334816bb1
patch 8.1.0121: crash when using ballooneval related to 'vartabstop'
Christian Brabandt <cb@256bit.org>
parents:
13927
diff
changeset
|
778 # ifdef FEAT_VARTABS |
4cb334816bb1
patch 8.1.0121: crash when using ballooneval related to 'vartabstop'
Christian Brabandt <cb@256bit.org>
parents:
13927
diff
changeset
|
779 vim_free(balloonEval->vts); |
4cb334816bb1
patch 8.1.0121: crash when using ballooneval related to 'vartabstop'
Christian Brabandt <cb@256bit.org>
parents:
13927
diff
changeset
|
780 # endif |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12839
diff
changeset
|
781 vim_free(balloonEval); |
14208
4cb334816bb1
patch 8.1.0121: crash when using ballooneval related to 'vartabstop'
Christian Brabandt <cb@256bit.org>
parents:
13927
diff
changeset
|
782 } |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12839
diff
changeset
|
783 balloonEvalForTerm = FALSE; |
187 | 784 # ifdef FEAT_GUI_GTK |
785 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL, | |
786 &general_beval_cb, NULL); | |
787 # else | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
788 # if defined(FEAT_GUI_MOTIF) |
187 | 789 { |
790 extern Widget textArea; | |
791 balloonEval = gui_mch_create_beval_area(textArea, NULL, | |
216 | 792 &general_beval_cb, NULL); |
187 | 793 } |
794 # else | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
795 # ifdef FEAT_GUI_MSWIN |
187 | 796 balloonEval = gui_mch_create_beval_area(NULL, NULL, |
797 &general_beval_cb, NULL); | |
798 # endif | |
799 # endif | |
800 # endif | |
801 if (!p_beval) | |
802 gui_mch_disable_beval_area(balloonEval); | |
803 #endif | |
20633
244ef6caf671
patch 8.2.0870: MS-Windows: Control keys don't work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20595
diff
changeset
|
804 |
244ef6caf671
patch 8.2.0870: MS-Windows: Control keys don't work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20595
diff
changeset
|
805 #ifndef FEAT_GUI_MSWIN |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20559
diff
changeset
|
806 // In the GUI modifiers are prepended to keys. |
20633
244ef6caf671
patch 8.2.0870: MS-Windows: Control keys don't work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20595
diff
changeset
|
807 // Don't do this for MS-Windows yet, it sends CTRL-K without the |
244ef6caf671
patch 8.2.0870: MS-Windows: Control keys don't work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20595
diff
changeset
|
808 // modifier. |
20595
3609e842f822
patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20559
diff
changeset
|
809 seenModifyOtherKeys = TRUE; |
20633
244ef6caf671
patch 8.2.0870: MS-Windows: Control keys don't work in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
20595
diff
changeset
|
810 #endif |
187 | 811 |
7 | 812 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
813 if (!im_xim_isvalid_imactivate()) | |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
814 emsg(_(e_value_of_imactivatekey_is_invalid)); |
7 | 815 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
816 // When 'cmdheight' was set during startup it may not have taken |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
817 // effect yet. |
37 | 818 if (p_ch != 1L) |
824 | 819 command_height(); |
7 | 820 |
821 return; | |
822 } | |
823 | |
824 error2: | |
825 #ifdef FEAT_GUI_X11 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
826 // undo gui_mch_init() |
7 | 827 gui_mch_uninit(); |
828 #endif | |
829 | |
830 error: | |
831 gui.in_use = FALSE; | |
832 clip_init(FALSE); | |
833 } | |
834 | |
835 | |
836 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
837 gui_exit(int rc) |
7 | 838 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
839 // don't free the fonts, it leads to a BUS error |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
840 // richard@whitequeen.com Jul 99 |
7 | 841 free_highlight_fonts(); |
842 gui.in_use = FALSE; | |
843 gui_mch_exit(rc); | |
844 } | |
845 | |
574 | 846 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \ |
21745
35921b7fc07a
patch 8.2.1422: the Mac GUI implementation is outdated
Bram Moolenaar <Bram@vim.org>
parents:
21572
diff
changeset
|
847 || defined(FEAT_GUI_PHOTON) || defined(PROTO) |
1002 | 848 # define NEED_GUI_UPDATE_SCREEN 1 |
7 | 849 /* |
850 * Called when the GUI shell is closed by the user. If there are no changed | |
851 * files Vim exits, otherwise there will be a dialog to ask the user what to | |
852 * do. | |
853 * When this function returns, Vim should NOT exit! | |
854 */ | |
855 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
856 gui_shell_closed(void) |
7 | 857 { |
24719
4ae10e6c3a9c
patch 8.2.2898: QuitPre and ExitPre not triggered when GUI window is closed
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
858 cmdmod_T save_cmdmod = cmdmod; |
4ae10e6c3a9c
patch 8.2.2898: QuitPre and ExitPre not triggered when GUI window is closed
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
859 |
4ae10e6c3a9c
patch 8.2.2898: QuitPre and ExitPre not triggered when GUI window is closed
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
860 if (before_quit_autocmds(curwin, TRUE, FALSE)) |
4ae10e6c3a9c
patch 8.2.2898: QuitPre and ExitPre not triggered when GUI window is closed
Bram Moolenaar <Bram@vim.org>
parents:
24428
diff
changeset
|
861 return; |
7 | 862 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
863 // Only exit when there are no changed files |
7 | 864 exiting = TRUE; |
865 # ifdef FEAT_BROWSE | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
866 cmdmod.cmod_flags |= CMOD_BROWSE; |
7 | 867 # endif |
868 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
869 cmdmod.cmod_flags |= CMOD_CONFIRM; |
7 | 870 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
871 // If there are changed buffers, present the user with a dialog if |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
872 // possible, otherwise give an error message. |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
873 if (!check_changed_any(FALSE, FALSE)) |
7 | 874 getout(0); |
875 | |
876 exiting = FALSE; | |
877 cmdmod = save_cmdmod; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
878 gui_update_screen(); // redraw, window may show changed buffer |
7 | 879 } |
880 #endif | |
881 | |
882 /* | |
4352 | 883 * Set the font. "font_list" is a comma separated list of font names. The |
7 | 884 * first font name that works is used. If none is found, use the default |
885 * font. | |
886 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset. | |
887 * Return OK when able to set the font. When it failed FAIL is returned and | |
888 * the fonts are unchanged. | |
889 */ | |
890 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
891 gui_init_font(char_u *font_list, int fontset UNUSED) |
7 | 892 { |
893 #define FONTLEN 320 | |
894 char_u font_name[FONTLEN]; | |
895 int font_list_empty = FALSE; | |
896 int ret = FAIL; | |
897 | |
898 if (!gui.in_use) | |
899 return FAIL; | |
900 | |
901 font_name[0] = NUL; | |
902 if (*font_list == NUL) | |
903 font_list_empty = TRUE; | |
904 else | |
905 { | |
906 #ifdef FEAT_XFONTSET | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
907 // When using a fontset, the whole list of fonts is one name. |
7 | 908 if (fontset) |
909 ret = gui_mch_init_font(font_list, TRUE); | |
910 else | |
911 #endif | |
912 while (*font_list != NUL) | |
913 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
914 // Isolate one comma separated font name. |
7 | 915 (void)copy_option_part(&font_list, font_name, FONTLEN, ","); |
916 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
917 // Careful!!! The Win32 version of gui_mch_init_font(), when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
918 // called with "*" will change p_guifont to the selected font |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
919 // name, which frees the old value. This makes font_list |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
920 // invalid. Thus when OK is returned here, font_list must no |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
921 // longer be used! |
7 | 922 if (gui_mch_init_font(font_name, FALSE) == OK) |
923 { | |
27404
de98b9219c15
patch 8.2.4230: MS-Windows: set_guifontwide() is included but won't work
Bram Moolenaar <Bram@vim.org>
parents:
27160
diff
changeset
|
924 #ifdef USE_SET_GUIFONTWIDE |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
925 // If it's a Unicode font, try setting 'guifontwide' to a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
926 // similar double-width font. |
7 | 927 if ((p_guifontwide == NULL || *p_guifontwide == NUL) |
928 && strstr((char *)font_name, "10646") != NULL) | |
929 set_guifontwide(font_name); | |
930 #endif | |
931 ret = OK; | |
932 break; | |
933 } | |
934 } | |
935 } | |
936 | |
937 if (ret != OK | |
938 && STRCMP(font_list, "*") != 0 | |
939 && (font_list_empty || gui.norm_font == NOFONT)) | |
940 { | |
941 /* | |
942 * Couldn't load any font in 'font_list', keep the current font if | |
943 * there is one. If 'font_list' is empty, or if there is no current | |
944 * font, tell gui_mch_init_font() to try to find a font we can load. | |
945 */ | |
946 ret = gui_mch_init_font(NULL, FALSE); | |
947 } | |
948 | |
949 if (ret == OK) | |
950 { | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
951 #ifndef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
952 // Set normal font as current font |
7 | 953 # ifdef FEAT_XFONTSET |
954 if (gui.fontset != NOFONTSET) | |
955 gui_mch_set_fontset(gui.fontset); | |
956 else | |
957 # endif | |
958 gui_mch_set_font(gui.norm_font); | |
959 #endif | |
16174
0f3c50a68637
patch 8.1.1092: setting 'guifont' when maximized resizes the Vim window
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
960 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); |
7 | 961 } |
962 | |
963 return ret; | |
964 } | |
965 | |
27404
de98b9219c15
patch 8.2.4230: MS-Windows: set_guifontwide() is included but won't work
Bram Moolenaar <Bram@vim.org>
parents:
27160
diff
changeset
|
966 #ifdef USE_SET_GUIFONTWIDE |
7 | 967 /* |
968 * Try setting 'guifontwide' to a font twice as wide as "name". | |
969 */ | |
970 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
971 set_guifontwide(char_u *name) |
7 | 972 { |
973 int i = 0; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
974 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*' |
7 | 975 char_u *wp = NULL; |
976 char_u *p; | |
977 GuiFont font; | |
978 | |
979 wp = wide_name; | |
980 for (p = name; *p != NUL; ++p) | |
981 { | |
982 *wp++ = *p; | |
983 if (*p == '-') | |
984 { | |
985 ++i; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
986 if (i == 6) // font type: change "--" to "-*-" |
7 | 987 { |
988 if (p[1] == '-') | |
989 *wp++ = '*'; | |
990 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
991 else if (i == 12) // found the width |
7 | 992 { |
993 ++p; | |
994 i = getdigits(&p); | |
995 if (i != 0) | |
996 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
997 // Double the width specification. |
7 | 998 sprintf((char *)wp, "%d%s", i * 2, p); |
999 font = gui_mch_get_font(wide_name, FALSE); | |
1000 if (font != NOFONT) | |
1001 { | |
37 | 1002 gui_mch_free_font(gui.wide_font); |
7 | 1003 gui.wide_font = font; |
1004 set_string_option_direct((char_u *)"gfw", -1, | |
694 | 1005 wide_name, OPT_FREE, 0); |
7 | 1006 } |
1007 } | |
1008 break; | |
1009 } | |
1010 } | |
1011 } | |
1012 } | |
27404
de98b9219c15
patch 8.2.4230: MS-Windows: set_guifontwide() is included but won't work
Bram Moolenaar <Bram@vim.org>
parents:
27160
diff
changeset
|
1013 #endif |
7 | 1014 |
1015 /* | |
1016 * Get the font for 'guifontwide'. | |
1017 * Return FAIL for an invalid font name. | |
1018 */ | |
1019 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1020 gui_get_wide_font(void) |
7 | 1021 { |
1022 GuiFont font = NOFONT; | |
1023 char_u font_name[FONTLEN]; | |
1024 char_u *p; | |
1025 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1026 if (!gui.in_use) // Can't allocate font yet, assume it's OK. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1027 return OK; // Will give an error message later. |
7 | 1028 |
1029 if (p_guifontwide != NULL && *p_guifontwide != NUL) | |
1030 { | |
1031 for (p = p_guifontwide; *p != NUL; ) | |
1032 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1033 // Isolate one comma separated font name. |
7 | 1034 (void)copy_option_part(&p, font_name, FONTLEN, ","); |
1035 font = gui_mch_get_font(font_name, FALSE); | |
1036 if (font != NOFONT) | |
1037 break; | |
1038 } | |
1039 if (font == NOFONT) | |
1040 return FAIL; | |
1041 } | |
1042 | |
1043 gui_mch_free_font(gui.wide_font); | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1044 #ifdef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1045 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. |
7 | 1046 if (font != NOFONT && gui.norm_font != NOFONT |
1047 && pango_font_description_equal(font, gui.norm_font)) | |
1048 { | |
1049 gui.wide_font = NOFONT; | |
1050 gui_mch_free_font(font); | |
1051 } | |
1052 else | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1053 #endif |
7 | 1054 gui.wide_font = font; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1055 #ifdef FEAT_GUI_MSWIN |
4055 | 1056 gui_mch_wide_font_changed(); |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1057 #else |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
1058 /* |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
1059 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
1060 * support those fonts for 'guifontwide'. |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
1061 */ |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1062 #endif |
7 | 1063 return OK; |
1064 } | |
1065 | |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1066 #if defined(FEAT_GUI_GTK) || defined(PROTO) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1067 /* |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1068 * Set list of ascii characters that combined can create ligature. |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1069 * Store them in char map for quick access from gui_gtk2_draw_string. |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1070 */ |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1071 void |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1072 gui_set_ligatures(void) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1073 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1074 char_u *p; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1075 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1076 if (*p_guiligatures != NUL) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1077 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1078 // check for invalid characters |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1079 for (p = p_guiligatures; *p != NUL; ++p) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1080 if (*p < 32 || *p > 127) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1081 { |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1082 emsg(_(e_ascii_code_not_in_range)); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1083 return; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1084 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1085 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1086 // store valid setting into ligatures_map |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1087 CLEAR_FIELD(gui.ligatures_map); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1088 for (p = p_guiligatures; *p != NUL; ++p) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1089 gui.ligatures_map[*p] = 1; |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1090 } |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1091 else |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1092 CLEAR_FIELD(gui.ligatures_map); |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1093 } |
26232
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1094 |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1095 /* |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1096 * Adjust the columns to undraw for when the cursor is on ligatures. |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1097 */ |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1098 static void |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1099 gui_adjust_undraw_cursor_for_ligatures(int *startcol, int *endcol) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1100 { |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1101 int off; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1102 |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1103 if (ScreenLines == NULL || *p_guiligatures == NUL) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1104 return; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1105 |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1106 // expand before the cursor for all the chars in gui.ligatures_map |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1107 off = LineOffset[gui.cursor_row] + *startcol; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1108 if (gui.ligatures_map[ScreenLines[off]]) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1109 while (*startcol > 0 && gui.ligatures_map[ScreenLines[--off]]) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1110 (*startcol)--; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1111 |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1112 // expand after the cursor for all the chars in gui.ligatures_map |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1113 off = LineOffset[gui.cursor_row] + *endcol; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1114 if (gui.ligatures_map[ScreenLines[off]]) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1115 while (*endcol < ((int)screen_Columns - 1) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1116 && gui.ligatures_map[ScreenLines[++off]]) |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1117 (*endcol)++; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
1118 } |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1119 #endif |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25306
diff
changeset
|
1120 |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
1121 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1122 gui_set_cursor(int row, int col) |
7 | 1123 { |
1124 gui.row = row; | |
1125 gui.col = col; | |
1126 } | |
1127 | |
1128 /* | |
1129 * gui_check_pos - check if the cursor is on the screen. | |
1130 */ | |
1131 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1132 gui_check_pos(void) |
7 | 1133 { |
1134 if (gui.row >= screen_Rows) | |
1135 gui.row = screen_Rows - 1; | |
1136 if (gui.col >= screen_Columns) | |
1137 gui.col = screen_Columns - 1; | |
1138 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns) | |
1139 gui.cursor_is_valid = FALSE; | |
1140 } | |
1141 | |
1142 /* | |
1143 * Redraw the cursor if necessary or when forced. | |
1144 * Careful: The contents of ScreenLines[] must match what is on the screen, | |
1145 * otherwise this goes wrong. May need to call out_flush() first. | |
1146 */ | |
1147 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1148 gui_update_cursor( |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1149 int force, // when TRUE, update even when not moved |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1150 int clear_selection) // clear selection under cursor |
7 | 1151 { |
1152 int cur_width = 0; | |
1153 int cur_height = 0; | |
1154 int old_hl_mask; | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1155 cursorentry_T *shape; |
7 | 1156 int id; |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1157 #ifdef FEAT_TERMINAL |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1158 guicolor_T shape_fg = INVALCOLOR; |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1159 guicolor_T shape_bg = INVALCOLOR; |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1160 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1161 guicolor_T cfg, cbg, cc; // cursor fore-/background color |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1162 int cattr; // cursor attributes |
7 | 1163 int attr; |
1164 attrentry_T *aep = NULL; | |
1165 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1166 // Don't update the cursor when halfway busy scrolling or the screen size |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1167 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. |
1695 | 1168 if (!can_update_cursor || screen_Columns != gui.num_cols |
1169 || screen_Rows != gui.num_rows) | |
7 | 1170 return; |
1171 | |
1172 gui_check_pos(); | |
1173 if (!gui.cursor_is_valid || force | |
1174 || gui.row != gui.cursor_row || gui.col != gui.cursor_col) | |
1175 { | |
1176 gui_undraw_cursor(); | |
24428
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
23003
diff
changeset
|
1177 |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
23003
diff
changeset
|
1178 // If a cursor-less sleep is ongoing, leave the cursor invisible |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
23003
diff
changeset
|
1179 if (cursor_is_sleeping()) |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
23003
diff
changeset
|
1180 return; |
9299d21d1d5d
patch 8.2.2754: :sleep! does not always hide the cursor
Bram Moolenaar <Bram@vim.org>
parents:
23003
diff
changeset
|
1181 |
7 | 1182 if (gui.row < 0) |
1183 return; | |
13386
bf3de2fd98fa
patch 8.0.1567: cannot build Win32 GUI without IME
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
1184 #ifdef HAVE_INPUT_METHOD |
7 | 1185 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col) |
1186 im_set_position(gui.row, gui.col); | |
1187 #endif | |
1188 gui.cursor_row = gui.row; | |
1189 gui.cursor_col = gui.col; | |
1190 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1191 // Only write to the screen after ScreenLines[] has been initialized |
7 | 1192 if (!screen_cleared || ScreenLines == NULL) |
1193 return; | |
1194 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1195 // Clear the selection if we are about to write over it |
7 | 1196 if (clear_selection) |
1197 clip_may_clear_selection(gui.row, gui.row); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1198 // Check that the cursor is inside the shell (resizing may have made |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1199 // it invalid) |
7 | 1200 if (gui.row >= screen_Rows || gui.col >= screen_Columns) |
1201 return; | |
1202 | |
1203 gui.cursor_is_valid = TRUE; | |
1204 | |
1205 /* | |
1206 * How the cursor is drawn depends on the current mode. | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1207 * When in a terminal window use the shape/color specified there. |
7 | 1208 */ |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1209 #ifdef FEAT_TERMINAL |
12457
dfb8254aa735
patch 8.0.1108: cannot specify mappings for the terminal window
Christian Brabandt <cb@256bit.org>
parents:
12317
diff
changeset
|
1210 if (terminal_is_active()) |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1211 shape = term_get_cursor_shape(&shape_fg, &shape_bg); |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1212 else |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1213 #endif |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1214 shape = &shape_table[get_shape_idx(FALSE)]; |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
1215 if (State & MODE_LANGMAP) |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1216 id = shape->id_lm; |
7 | 1217 else |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1218 id = shape->id; |
7 | 1219 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1220 // get the colors and attributes for the cursor. Default is inverted |
7 | 1221 cfg = INVALCOLOR; |
1222 cbg = INVALCOLOR; | |
1223 cattr = HL_INVERSE; | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1224 gui_mch_set_blinking(shape->blinkwait, |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1225 shape->blinkon, |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1226 shape->blinkoff); |
12839
9ac41c3148ce
patch 8.0.1296: checking the same condition twice
Christian Brabandt <cb@256bit.org>
parents:
12835
diff
changeset
|
1227 if (shape->blinkwait == 0 || shape->blinkon == 0 |
9ac41c3148ce
patch 8.0.1296: checking the same condition twice
Christian Brabandt <cb@256bit.org>
parents:
12835
diff
changeset
|
1228 || shape->blinkoff == 0) |
13152
f4c3a7f410f4
patch 8.0.1450: GUI: endless loop when stopping cursor blinking
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
1229 gui_mch_stop_blink(FALSE); |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1230 #ifdef FEAT_TERMINAL |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1231 if (shape_bg != INVALCOLOR) |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1232 { |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1233 cattr = 0; |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1234 cfg = shape_fg; |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1235 cbg = shape_bg; |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1236 } |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1237 else |
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1238 #endif |
7 | 1239 if (id > 0) |
1240 { | |
1241 cattr = syn_id2colors(id, &cfg, &cbg); | |
18671
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
1242 #if defined(HAVE_INPUT_METHOD) |
7 | 1243 { |
1244 static int iid; | |
1245 guicolor_T fg, bg; | |
1246 | |
1668 | 1247 if ( |
18671
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
1248 # if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) |
1668 | 1249 preedit_get_status() |
1250 # else | |
1251 im_get_status() | |
1252 # endif | |
1253 ) | |
7 | 1254 { |
1255 iid = syn_name2id((char_u *)"CursorIM"); | |
1256 if (iid > 0) | |
1257 { | |
1258 syn_id2colors(iid, &fg, &bg); | |
1259 if (bg != INVALCOLOR) | |
1260 cbg = bg; | |
1261 if (fg != INVALCOLOR) | |
1262 cfg = fg; | |
1263 } | |
1264 } | |
1265 } | |
1266 #endif | |
1267 } | |
1268 | |
1269 /* | |
1270 * Get the attributes for the character under the cursor. | |
1271 * When no cursor color was given, use the character color. | |
1272 */ | |
1273 attr = ScreenAttrs[LineOffset[gui.row] + gui.col]; | |
1274 if (attr > HL_ALL) | |
1275 aep = syn_gui_attr2entry(attr); | |
1276 if (aep != NULL) | |
1277 { | |
1278 attr = aep->ae_attr; | |
1279 if (cfg == INVALCOLOR) | |
1280 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color | |
1281 : aep->ae_u.gui.fg_color); | |
1282 if (cbg == INVALCOLOR) | |
1283 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color | |
1284 : aep->ae_u.gui.bg_color); | |
1285 } | |
1286 if (cfg == INVALCOLOR) | |
1287 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel; | |
1288 if (cbg == INVALCOLOR) | |
1289 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel; | |
1290 | |
1291 #ifdef FEAT_XIM | |
1292 if (aep != NULL) | |
1293 { | |
1294 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color | |
1295 : aep->ae_u.gui.bg_color); | |
1296 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color | |
1297 : aep->ae_u.gui.fg_color); | |
1298 if (xim_bg_color == INVALCOLOR) | |
1299 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel | |
1300 : gui.back_pixel; | |
1301 if (xim_fg_color == INVALCOLOR) | |
1302 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel | |
1303 : gui.norm_pixel; | |
1304 } | |
1305 else | |
1306 { | |
1307 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel | |
1308 : gui.back_pixel; | |
1309 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel | |
1310 : gui.norm_pixel; | |
1311 } | |
1312 #endif | |
1313 | |
1314 attr &= ~HL_INVERSE; | |
1315 if (cattr & HL_INVERSE) | |
1316 { | |
1317 cc = cbg; | |
1318 cbg = cfg; | |
1319 cfg = cc; | |
1320 } | |
1321 cattr &= ~HL_INVERSE; | |
1322 | |
1323 /* | |
1324 * When we don't have window focus, draw a hollow cursor. | |
1325 */ | |
1326 if (!gui.in_focus) | |
1327 { | |
1328 gui_mch_draw_hollow_cursor(cbg); | |
1329 return; | |
1330 } | |
1331 | |
1332 old_hl_mask = gui.highlight_mask; | |
18671
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
1333 if (shape->shape == SHAPE_BLOCK) |
7 | 1334 { |
1335 /* | |
1336 * Draw the text character with the cursor colors. Use the | |
1337 * character attributes plus the cursor attributes. | |
1338 */ | |
1339 gui.highlight_mask = (cattr | attr); | |
18671
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
1340 (void)gui_screenchar(LineOffset[gui.row] + gui.col, |
7 | 1341 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0); |
1342 } | |
1343 else | |
1344 { | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1345 #if defined(FEAT_RIGHTLEFT) |
7 | 1346 int col_off = FALSE; |
1347 #endif | |
1348 /* | |
1349 * First draw the partial cursor, then overwrite with the text | |
1350 * character, using a transparent background. | |
1351 */ | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1352 if (shape->shape == SHAPE_VER) |
7 | 1353 { |
1354 cur_height = gui.char_height; | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1355 cur_width = (gui.char_width * shape->percentage + 99) / 100; |
7 | 1356 } |
1357 else | |
1358 { | |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1359 cur_height = (gui.char_height * shape->percentage + 99) / 100; |
7 | 1360 cur_width = gui.char_width; |
1361 } | |
1378 | 1362 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col, |
1363 LineOffset[gui.row] + screen_Columns) > 1) | |
7 | 1364 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1365 // Double wide character. |
12082
504df4aa84c6
patch 8.0.0921: terminal window cursor shape not supported in the GUI
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1366 if (shape->shape != SHAPE_VER) |
7 | 1367 cur_width += gui.char_width; |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1368 #ifdef FEAT_RIGHTLEFT |
7 | 1369 if (CURSOR_BAR_RIGHT) |
1370 { | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1371 // gui.col points to the left half of the character but |
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1372 // the vertical line needs to be on the right half. |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1373 // A double-wide horizontal line is also drawn from the |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1374 // right half in gui_mch_draw_part_cursor(). |
7 | 1375 col_off = TRUE; |
1376 ++gui.col; | |
1377 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1378 #endif |
7 | 1379 } |
1380 gui_mch_draw_part_cursor(cur_width, cur_height, cbg); | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1381 #if defined(FEAT_RIGHTLEFT) |
7 | 1382 if (col_off) |
1383 --gui.col; | |
1384 #endif | |
1385 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1386 #ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows |
7 | 1387 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col]; |
1388 (void)gui_screenchar(LineOffset[gui.row] + gui.col, | |
1389 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR, | |
1390 (guicolor_T)0, (guicolor_T)0, 0); | |
1391 #endif | |
1392 } | |
1393 gui.highlight_mask = old_hl_mask; | |
1394 } | |
1395 } | |
1396 | |
1397 #if defined(FEAT_MENU) || defined(PROTO) | |
1398 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1399 gui_position_menu(void) |
7 | 1400 { |
574 | 1401 # if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) |
7 | 1402 if (gui.menu_is_active && gui.in_use) |
1403 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height); | |
1404 # endif | |
1405 } | |
1406 #endif | |
1407 | |
1408 /* | |
1409 * Position the various GUI components (text area, menu). The vertical | |
1410 * scrollbars are NOT handled here. See gui_update_scrollbars(). | |
1411 */ | |
1412 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1413 gui_position_components(int total_width UNUSED) |
7 | 1414 { |
1415 int text_area_x; | |
1416 int text_area_y; | |
1417 int text_area_width; | |
1418 int text_area_height; | |
1419 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1420 // avoid that moving components around generates events |
7 | 1421 ++hold_gui_events; |
1422 | |
1423 text_area_x = 0; | |
1424 if (gui.which_scrollbars[SBAR_LEFT]) | |
1425 text_area_x += gui.scrollbar_width; | |
1426 | |
1427 text_area_y = 0; | |
1428 #if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON)) | |
1429 gui.menu_width = total_width; | |
1430 if (gui.menu_is_active) | |
1431 text_area_y += gui.menu_height; | |
1432 #endif | |
1433 | |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1434 #if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \ |
21745
35921b7fc07a
patch 8.2.1422: the Mac GUI implementation is outdated
Bram Moolenaar <Bram@vim.org>
parents:
21572
diff
changeset
|
1435 || defined(FEAT_GUI_MOTIF)) |
810 | 1436 if (gui_has_tabline()) |
843 | 1437 text_area_y += gui.tabline_height; |
810 | 1438 #endif |
1439 | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1440 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) \ |
27160
4482dd5f8869
patch 8.2.4109: MS-Windows: high dpi support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
1441 || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN)) |
7 | 1442 if (vim_strchr(p_go, GO_TOOLBAR) != NULL) |
1443 { | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1444 # if defined(FEAT_GUI_HAIKU) |
7 | 1445 gui_mch_set_toolbar_pos(0, text_area_y, |
1446 gui.menu_width, gui.toolbar_height); | |
1447 # endif | |
1448 text_area_y += gui.toolbar_height; | |
1449 } | |
1450 #endif | |
1451 | |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1452 #if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU) |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1453 gui_mch_set_tabline_pos(0, text_area_y, |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1454 gui.menu_width, gui.tabline_height); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1455 if (gui_has_tabline()) |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1456 text_area_y += gui.tabline_height; |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1457 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1458 |
7 | 1459 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2; |
1460 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2; | |
1461 | |
1462 gui_mch_set_text_area_pos(text_area_x, | |
1463 text_area_y, | |
1464 text_area_width, | |
1465 text_area_height | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1466 #if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK) |
7 | 1467 + xim_get_status_area_height() |
1468 #endif | |
1469 ); | |
1470 #ifdef FEAT_MENU | |
1471 gui_position_menu(); | |
1472 #endif | |
1473 if (gui.which_scrollbars[SBAR_BOTTOM]) | |
1474 gui_mch_set_scrollbar_pos(&gui.bottom_sbar, | |
1475 text_area_x, | |
21355
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20633
diff
changeset
|
1476 text_area_y + text_area_height |
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20633
diff
changeset
|
1477 + gui_mch_get_scrollbar_ypadding(), |
7 | 1478 text_area_width, |
1479 gui.scrollbar_height); | |
1480 gui.left_sbar_x = 0; | |
21355
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20633
diff
changeset
|
1481 gui.right_sbar_x = text_area_x + text_area_width |
fcccc29bd386
patch 8.2.1228: scrollbars not flush against the window edges when maximised
Bram Moolenaar <Bram@vim.org>
parents:
20633
diff
changeset
|
1482 + gui_mch_get_scrollbar_xpadding(); |
7 | 1483 |
1484 --hold_gui_events; | |
1485 } | |
1486 | |
444 | 1487 /* |
1488 * Get the width of the widgets and decorations to the side of the text area. | |
1489 */ | |
7 | 1490 int |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1491 gui_get_base_width(void) |
7 | 1492 { |
1493 int base_width; | |
1494 | |
1495 base_width = 2 * gui.border_offset; | |
1496 if (gui.which_scrollbars[SBAR_LEFT]) | |
1497 base_width += gui.scrollbar_width; | |
1498 if (gui.which_scrollbars[SBAR_RIGHT]) | |
1499 base_width += gui.scrollbar_width; | |
1500 return base_width; | |
1501 } | |
1502 | |
444 | 1503 /* |
1504 * Get the height of the widgets and decorations above and below the text area. | |
1505 */ | |
7 | 1506 int |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1507 gui_get_base_height(void) |
7 | 1508 { |
1509 int base_height; | |
1510 | |
1511 base_height = 2 * gui.border_offset; | |
1512 if (gui.which_scrollbars[SBAR_BOTTOM]) | |
1513 base_height += gui.scrollbar_height; | |
1514 #ifdef FEAT_GUI_GTK | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1515 // We can't take the sizes properly into account until anything is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1516 // realized. Therefore we recalculate all the values here just before |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1517 // setting the size. (--mdcki) |
7 | 1518 #else |
1519 # ifdef FEAT_MENU | |
1520 if (gui.menu_is_active) | |
1521 base_height += gui.menu_height; | |
1522 # endif | |
1523 # ifdef FEAT_TOOLBAR | |
1524 if (vim_strchr(p_go, GO_TOOLBAR) != NULL) | |
1525 base_height += gui.toolbar_height; | |
1526 # endif | |
819 | 1527 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \ |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1528 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU)) |
810 | 1529 if (gui_has_tabline()) |
843 | 1530 base_height += gui.tabline_height; |
810 | 1531 # endif |
7 | 1532 # ifdef FEAT_FOOTER |
1533 if (vim_strchr(p_go, GO_FOOTER) != NULL) | |
1534 base_height += gui.footer_height; | |
1535 # endif | |
1536 # if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) | |
1537 base_height += gui_mch_text_area_extra_height(); | |
1538 # endif | |
1539 #endif | |
1540 return base_height; | |
1541 } | |
1542 | |
1543 /* | |
1544 * Should be called after the GUI shell has been resized. Its arguments are | |
1545 * the new width and height of the shell in pixels. | |
1546 */ | |
1547 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1548 gui_resize_shell(int pixel_width, int pixel_height) |
7 | 1549 { |
1550 static int busy = FALSE; | |
1551 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1552 if (!gui.shell_created) // ignore when still initializing |
7 | 1553 return; |
1554 | |
1555 /* | |
1556 * Can't resize the screen while it is being redrawn. Remember the new | |
1557 * size and handle it later. | |
1558 */ | |
1559 if (updating_screen || busy) | |
1560 { | |
1561 new_pixel_width = pixel_width; | |
1562 new_pixel_height = pixel_height; | |
1563 return; | |
1564 } | |
1565 | |
1566 again: | |
10819
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1567 new_pixel_width = 0; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1568 new_pixel_height = 0; |
7 | 1569 busy = TRUE; |
1570 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1571 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1572 vim_lock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1573 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1574 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1575 // Flush pending output before redrawing |
7 | 1576 out_flush(); |
1577 | |
1578 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width; | |
1529 | 1579 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height; |
7 | 1580 |
1581 gui_position_components(pixel_width); | |
1582 gui_reset_scroll_region(); | |
10819
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1583 |
7 | 1584 /* |
1585 * At the "more" and ":confirm" prompt there is no redraw, put the cursor | |
1586 * at the last line here (why does it have to be one row too low?). | |
1587 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
1588 if (State == MODE_ASKMORE || State == MODE_CONFIRM) |
7 | 1589 gui.row = gui.num_rows; |
1590 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1591 // Only comparing Rows and Columns may be sufficient, but let's stay on |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1592 // the safe side. |
7 | 1593 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns |
1594 || gui.num_rows != Rows || gui.num_cols != Columns) | |
1595 shell_resized(); | |
1596 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1597 #ifdef FEAT_GUI_HAIKU |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1598 vim_unlock_screen(); |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1599 #endif |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
1600 |
7 | 1601 gui_update_scrollbars(TRUE); |
1602 gui_update_cursor(FALSE, TRUE); | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1603 #if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK) |
7 | 1604 xim_set_status_area(); |
1605 #endif | |
1606 | |
1607 busy = FALSE; | |
669 | 1608 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1609 // We may have been called again while redrawing the screen. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1610 // Need to do it all again with the latest size then. But only if the size |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1611 // actually changed. |
7 | 1612 if (new_pixel_height) |
1613 { | |
10819
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1614 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height) |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1615 { |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1616 new_pixel_width = 0; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1617 new_pixel_height = 0; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1618 } |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1619 else |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1620 { |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1621 pixel_width = new_pixel_width; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1622 pixel_height = new_pixel_height; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1623 goto again; |
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1624 } |
7 | 1625 } |
1626 } | |
1627 | |
1628 /* | |
1629 * Check if gui_resize_shell() must be called. | |
1630 */ | |
1631 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1632 gui_may_resize_shell(void) |
7 | 1633 { |
1634 if (new_pixel_height) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1635 // careful: gui_resize_shell() may postpone the resize again if we |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1636 // were called indirectly by it |
10819
cd179d7d0b5d
patch 8.0.0299: a window resize is sometimes not taking effect
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1637 gui_resize_shell(new_pixel_width, new_pixel_height); |
7 | 1638 } |
1639 | |
1640 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1641 gui_get_shellsize(void) |
7 | 1642 { |
1643 Rows = gui.num_rows; | |
1644 Columns = gui.num_cols; | |
1645 return OK; | |
1646 } | |
1647 | |
1648 /* | |
1649 * Set the size of the Vim shell according to Rows and Columns. | |
444 | 1650 * If "fit_to_display" is TRUE then the size may be reduced to fit the window |
1651 * on the screen. | |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1652 * When "mustset" is TRUE the size was set by the user. When FALSE a UI |
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1653 * component was added or removed (e.g., a scrollbar). |
7 | 1654 */ |
1655 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1656 gui_set_shellsize( |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1657 int mustset UNUSED, |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1658 int fit_to_display, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1659 int direction) // RESIZE_HOR, RESIZE_VER |
7 | 1660 { |
1661 int base_width; | |
1662 int base_height; | |
1663 int width; | |
1664 int height; | |
1665 int min_width; | |
1666 int min_height; | |
1667 int screen_w; | |
1668 int screen_h; | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1669 #ifdef FEAT_GUI_GTK |
1967 | 1670 int un_maximize = mustset; |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
1671 int did_adjust = 0; |
1967 | 1672 #endif |
2065
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
1967
diff
changeset
|
1673 int x = -1, y = -1; |
7 | 1674 |
1675 if (!gui.shell_created) | |
1676 return; | |
1677 | |
3014 | 1678 #if defined(MSWIN) || defined(FEAT_GUI_GTK) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1679 // If not setting to a user specified size and maximized, calculate the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1680 // number of characters that fit in the maximized window. |
12802
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1681 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL |
29a728529f92
patch 8.0.1278: GUI window always resizes when adding scrollbar
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1682 || gui_mch_maximized())) |
7 | 1683 { |
1684 gui_mch_newfont(); | |
1685 return; | |
1686 } | |
1687 #endif | |
1688 | |
1689 base_width = gui_get_base_width(); | |
1690 base_height = gui_get_base_height(); | |
2065
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
1967
diff
changeset
|
1691 if (fit_to_display) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1692 // Remember the original window position. |
7009 | 1693 (void)gui_mch_get_winpos(&x, &y); |
2065
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
1967
diff
changeset
|
1694 |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1695 width = Columns * gui.char_width + base_width; |
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1696 height = Rows * gui.char_height + base_height; |
7 | 1697 |
1698 if (fit_to_display) | |
1699 { | |
1700 gui_mch_get_screen_dimensions(&screen_w, &screen_h); | |
811 | 1701 if ((direction & RESIZE_HOR) && width > screen_w) |
7 | 1702 { |
1703 Columns = (screen_w - base_width) / gui.char_width; | |
1704 if (Columns < MIN_COLUMNS) | |
1705 Columns = MIN_COLUMNS; | |
1706 width = Columns * gui.char_width + base_width; | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1707 #ifdef FEAT_GUI_GTK |
1967 | 1708 ++did_adjust; |
1709 #endif | |
7 | 1710 } |
811 | 1711 if ((direction & RESIZE_VERT) && height > screen_h) |
7 | 1712 { |
1713 Rows = (screen_h - base_height) / gui.char_height; | |
1714 check_shellsize(); | |
1715 height = Rows * gui.char_height + base_height; | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1716 #ifdef FEAT_GUI_GTK |
1967 | 1717 ++did_adjust; |
1718 #endif | |
7 | 1719 } |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1720 #ifdef FEAT_GUI_GTK |
1967 | 1721 if (did_adjust == 2 || (width + gui.char_width >= screen_w |
1722 && height + gui.char_height >= screen_h)) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1723 // don't unmaximize if at maximum size |
1967 | 1724 un_maximize = FALSE; |
1725 #endif | |
7 | 1726 } |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5045
diff
changeset
|
1727 limit_screen_size(); |
7 | 1728 gui.num_cols = Columns; |
1729 gui.num_rows = Rows; | |
1730 | |
1731 min_width = base_width + MIN_COLUMNS * gui.char_width; | |
1732 min_height = base_height + MIN_LINES * gui.char_height; | |
685 | 1733 min_height += tabline_height() * gui.char_height; |
1967 | 1734 |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
1735 #ifdef FEAT_GUI_GTK |
1967 | 1736 if (un_maximize) |
1737 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1738 // If the window size is smaller than the screen unmaximize the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1739 // window, otherwise resizing won't work. |
1967 | 1740 gui_mch_get_screen_dimensions(&screen_w, &screen_h); |
1741 if ((width + gui.char_width < screen_w | |
1742 || height + gui.char_height * 2 < screen_h) | |
1743 && gui_mch_maximized()) | |
1744 gui_mch_unmaximize(); | |
1745 } | |
1746 #endif | |
7 | 1747 |
1748 gui_mch_set_shellsize(width, height, min_width, min_height, | |
811 | 1749 base_width, base_height, direction); |
2065
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
1967
diff
changeset
|
1750 |
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
1967
diff
changeset
|
1751 if (fit_to_display && x >= 0 && y >= 0) |
7 | 1752 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1753 // Some window managers put the Vim window left of/above the screen. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1754 // Only change the position if it wasn't already negative before |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1755 // (happens on MS-Windows with a secondary monitor). |
7 | 1756 gui_mch_update(); |
1757 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0)) | |
1758 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y); | |
1759 } | |
1760 | |
1761 gui_position_components(width); | |
1762 gui_update_scrollbars(TRUE); | |
1763 gui_reset_scroll_region(); | |
1764 } | |
1765 | |
1766 /* | |
1767 * Called when Rows and/or Columns has changed. | |
1768 */ | |
1769 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1770 gui_new_shellsize(void) |
7 | 1771 { |
1772 gui_reset_scroll_region(); | |
1773 } | |
1774 | |
1775 /* | |
1776 * Make scroll region cover whole screen. | |
1777 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
1778 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1779 gui_reset_scroll_region(void) |
7 | 1780 { |
1781 gui.scroll_region_top = 0; | |
1782 gui.scroll_region_bot = gui.num_rows - 1; | |
1783 gui.scroll_region_left = 0; | |
1784 gui.scroll_region_right = gui.num_cols - 1; | |
1785 } | |
1786 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
1787 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1788 gui_start_highlight(int mask) |
7 | 1789 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1790 if (mask > HL_ALL) // highlight code |
7 | 1791 gui.highlight_mask = mask; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1792 else // mask |
7 | 1793 gui.highlight_mask |= mask; |
1794 } | |
1795 | |
1796 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1797 gui_stop_highlight(int mask) |
7 | 1798 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1799 if (mask > HL_ALL) // highlight code |
7 | 1800 gui.highlight_mask = HL_NORMAL; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1801 else // mask |
7 | 1802 gui.highlight_mask &= ~mask; |
1803 } | |
1804 | |
1805 /* | |
1806 * Clear a rectangular region of the screen from text pos (row1, col1) to | |
1807 * (row2, col2) inclusive. | |
1808 */ | |
1809 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1810 gui_clear_block( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1811 int row1, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1812 int col1, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1813 int row2, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1814 int col2) |
7 | 1815 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1816 // Clear the selection if we are about to write over it |
7 | 1817 clip_may_clear_selection(row1, row2); |
1818 | |
1819 gui_mch_clear_block(row1, col1, row2, col2); | |
1820 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1821 // Invalidate cursor if it was in this block |
7 | 1822 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2 |
1823 && gui.cursor_col >= col1 && gui.cursor_col <= col2) | |
1824 gui.cursor_is_valid = FALSE; | |
1825 } | |
1826 | |
1827 /* | |
1828 * Write code to update the cursor later. This avoids the need to flush the | |
1829 * output buffer before calling gui_update_cursor(). | |
1830 */ | |
1831 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1832 gui_update_cursor_later(void) |
7 | 1833 { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27404
diff
changeset
|
1834 OUT_STR("\033|s"); |
7 | 1835 } |
1836 | |
1837 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1838 gui_write( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1839 char_u *s, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1840 int len) |
7 | 1841 { |
1842 char_u *p; | |
1843 int arg1 = 0, arg2 = 0; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1844 int force_cursor = FALSE; // force cursor update |
7 | 1845 int force_scrollbar = FALSE; |
1846 static win_T *old_curwin = NULL; | |
1847 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1848 // #define DEBUG_GUI_WRITE |
7 | 1849 #ifdef DEBUG_GUI_WRITE |
1850 { | |
1851 int i; | |
1852 char_u *str; | |
1853 | |
1854 printf("gui_write(%d):\n ", len); | |
1855 for (i = 0; i < len; i++) | |
1856 if (s[i] == ESC) | |
1857 { | |
1858 if (i != 0) | |
1859 printf("\n "); | |
1860 printf("<ESC>"); | |
1861 } | |
1862 else | |
1863 { | |
1864 str = transchar_byte(s[i]); | |
1865 if (str[0] && str[1]) | |
1866 printf("<%s>", (char *)str); | |
1867 else | |
1868 printf("%s", (char *)str); | |
1869 } | |
1870 printf("\n"); | |
1871 } | |
1872 #endif | |
1873 while (len) | |
1874 { | |
1875 if (s[0] == ESC && s[1] == '|') | |
1876 { | |
1877 p = s + 2; | |
9385
60db35a20823
commit https://github.com/vim/vim/commit/4a6c670b844a3ef9aec865a8216eaf363bab8721
Christian Brabandt <cb@256bit.org>
parents:
9305
diff
changeset
|
1878 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1)))) |
7 | 1879 { |
1880 arg1 = getdigits(&p); | |
1881 if (p > s + len) | |
1882 break; | |
1883 if (*p == ';') | |
1884 { | |
1885 ++p; | |
1886 arg2 = getdigits(&p); | |
1887 if (p > s + len) | |
1888 break; | |
1889 } | |
1890 } | |
1891 switch (*p) | |
1892 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1893 case 'C': // Clear screen |
7 | 1894 clip_scroll_selection(9999); |
1895 gui_mch_clear_all(); | |
1896 gui.cursor_is_valid = FALSE; | |
1897 force_scrollbar = TRUE; | |
1898 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1899 case 'M': // Move cursor |
7 | 1900 gui_set_cursor(arg1, arg2); |
1901 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1902 case 's': // force cursor (shape) update |
7 | 1903 force_cursor = TRUE; |
1904 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1905 case 'R': // Set scroll region |
7 | 1906 if (arg1 < arg2) |
1907 { | |
1908 gui.scroll_region_top = arg1; | |
1909 gui.scroll_region_bot = arg2; | |
1910 } | |
1911 else | |
1912 { | |
1913 gui.scroll_region_top = arg2; | |
1914 gui.scroll_region_bot = arg1; | |
1915 } | |
1916 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1917 case 'V': // Set vertical scroll region |
7 | 1918 if (arg1 < arg2) |
1919 { | |
1920 gui.scroll_region_left = arg1; | |
1921 gui.scroll_region_right = arg2; | |
1922 } | |
1923 else | |
1924 { | |
1925 gui.scroll_region_left = arg2; | |
1926 gui.scroll_region_right = arg1; | |
1927 } | |
1928 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1929 case 'd': // Delete line |
7 | 1930 gui_delete_lines(gui.row, 1); |
1931 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1932 case 'D': // Delete lines |
7 | 1933 gui_delete_lines(gui.row, arg1); |
1934 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1935 case 'i': // Insert line |
7 | 1936 gui_insert_lines(gui.row, 1); |
1937 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1938 case 'I': // Insert lines |
7 | 1939 gui_insert_lines(gui.row, arg1); |
1940 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1941 case '$': // Clear to end-of-line |
7 | 1942 gui_clear_block(gui.row, gui.col, gui.row, |
1943 (int)Columns - 1); | |
1944 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1945 case 'h': // Turn on highlighting |
7 | 1946 gui_start_highlight(arg1); |
1947 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1948 case 'H': // Turn off highlighting |
7 | 1949 gui_stop_highlight(arg1); |
1950 break; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1951 case 'f': // flash the window (visual bell) |
7 | 1952 gui_mch_flash(arg1 == 0 ? 20 : arg1); |
1953 break; | |
1954 default: | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1955 p = s + 1; // Skip the ESC |
7 | 1956 break; |
1957 } | |
1958 len -= (int)(++p - s); | |
1959 s = p; | |
1960 } | |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27404
diff
changeset
|
1961 else if (s[0] < 0x20 // Ctrl character |
7 | 1962 #ifdef FEAT_SIGN_ICONS |
1963 && s[0] != SIGN_BYTE | |
1964 # ifdef FEAT_NETBEANS_INTG | |
1965 && s[0] != MULTISIGN_BYTE | |
1966 # endif | |
1967 #endif | |
1968 ) | |
1969 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1970 if (s[0] == '\n') // NL |
7 | 1971 { |
1972 gui.col = 0; | |
1973 if (gui.row < gui.scroll_region_bot) | |
1974 gui.row++; | |
1975 else | |
1976 gui_delete_lines(gui.scroll_region_top, 1); | |
1977 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1978 else if (s[0] == '\r') // CR |
7 | 1979 { |
1980 gui.col = 0; | |
1981 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1982 else if (s[0] == '\b') // Backspace |
7 | 1983 { |
1984 if (gui.col) | |
1985 --gui.col; | |
1986 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1987 else if (s[0] == Ctrl_L) // cursor-right |
7 | 1988 { |
1989 ++gui.col; | |
1990 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1991 else if (s[0] == Ctrl_G) // Beep |
7 | 1992 { |
1993 gui_mch_beep(); | |
1994 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1995 // Other Ctrl character: shouldn't happen! |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1996 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1997 --len; // Skip this char |
7 | 1998 ++s; |
1999 } | |
2000 else | |
2001 { | |
2002 p = s; | |
2003 while (len > 0 && ( | |
2004 *p >= 0x20 | |
2005 #ifdef FEAT_SIGN_ICONS | |
2006 || *p == SIGN_BYTE | |
2007 # ifdef FEAT_NETBEANS_INTG | |
2008 || *p == MULTISIGN_BYTE | |
2009 # endif | |
2010 #endif | |
2011 )) | |
2012 { | |
2013 len--; | |
2014 p++; | |
2015 } | |
2016 gui_outstr(s, (int)(p - s)); | |
2017 s = p; | |
2018 } | |
2019 } | |
2020 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2021 // Postponed update of the cursor (won't work if "can_update_cursor" isn't |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2022 // set). |
7 | 2023 if (force_cursor) |
2024 gui_update_cursor(TRUE, TRUE); | |
2025 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2026 // When switching to another window the dragging must have stopped. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2027 // Required for GTK, dragged_sb isn't reset. |
7 | 2028 if (old_curwin != curwin) |
2029 gui.dragged_sb = SBAR_NONE; | |
2030 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2031 // Update the scrollbars after clearing the screen or when switched |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2032 // to another window. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2033 // Update the horizontal scrollbar always, it's difficult to check all |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2034 // situations where it might change. |
7 | 2035 if (force_scrollbar || old_curwin != curwin) |
2036 gui_update_scrollbars(force_scrollbar); | |
2037 else | |
2038 gui_update_horiz_scrollbar(FALSE); | |
2039 old_curwin = curwin; | |
2040 | |
2041 /* | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
2042 * We need to make sure this is cleared since GTK doesn't tell us when |
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
2043 * the user is done dragging. |
7 | 2044 */ |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
2045 #if defined(FEAT_GUI_GTK) |
7 | 2046 gui.dragged_sb = SBAR_NONE; |
2047 #endif | |
2048 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2049 gui_may_flush(); // In case vim decides to take a nap |
7 | 2050 } |
2051 | |
2052 /* | |
2053 * When ScreenLines[] is invalid, updating the cursor should not be done, it | |
2054 * produces wrong results. Call gui_dont_update_cursor() before that code and | |
2055 * gui_can_update_cursor() afterwards. | |
2056 */ | |
2057 void | |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
2058 gui_dont_update_cursor(int undraw) |
7 | 2059 { |
2060 if (gui.in_use) | |
2061 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2062 // Undraw the cursor now, we probably can't do it after the change. |
9848
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
2063 if (undraw) |
664276833670
commit https://github.com/vim/vim/commit/107abd2ca53c31fd3bb40d77ff296e98eaae2975
Christian Brabandt <cb@256bit.org>
parents:
9836
diff
changeset
|
2064 gui_undraw_cursor(); |
7 | 2065 can_update_cursor = FALSE; |
2066 } | |
2067 } | |
2068 | |
2069 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2070 gui_can_update_cursor(void) |
7 | 2071 { |
2072 can_update_cursor = TRUE; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2073 // No need to update the cursor right now, there is always more output |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2074 // after scrolling. |
7 | 2075 } |
2076 | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2077 /* |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2078 * Disable issuing gui_mch_flush(). |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2079 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2080 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2081 gui_disable_flush(void) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2082 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2083 ++disable_flush; |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2084 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2085 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2086 /* |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2087 * Enable issuing gui_mch_flush(). |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2088 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2089 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2090 gui_enable_flush(void) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2091 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2092 --disable_flush; |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2093 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2094 |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2095 /* |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2096 * Issue gui_mch_flush() if it is not disabled. |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2097 */ |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2098 void |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2099 gui_may_flush(void) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2100 { |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2101 if (disable_flush == 0) |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2102 gui_mch_flush(); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2103 } |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
2104 |
7 | 2105 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2106 gui_outstr(char_u *s, int len) |
7 | 2107 { |
2108 int this_len; | |
2109 int cells; | |
2110 | |
2111 if (len == 0) | |
2112 return; | |
2113 | |
2114 if (len < 0) | |
2115 len = (int)STRLEN(s); | |
2116 | |
2117 while (len > 0) | |
2118 { | |
2119 if (has_mbyte) | |
2120 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2121 // Find out how many chars fit in the current line. |
7 | 2122 cells = 0; |
2123 for (this_len = 0; this_len < len; ) | |
2124 { | |
2125 cells += (*mb_ptr2cells)(s + this_len); | |
2126 if (gui.col + cells > Columns) | |
2127 break; | |
474 | 2128 this_len += (*mb_ptr2len)(s + this_len); |
7 | 2129 } |
2130 if (this_len > len) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2131 this_len = len; // don't include following composing char |
7 | 2132 } |
2133 else | |
2134 if (gui.col + len > Columns) | |
2135 this_len = Columns - gui.col; | |
2136 else | |
2137 this_len = len; | |
2138 | |
2139 (void)gui_outstr_nowrap(s, this_len, | |
2140 0, (guicolor_T)0, (guicolor_T)0, 0); | |
2141 s += this_len; | |
2142 len -= this_len; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2143 // fill up for a double-width char that doesn't fit. |
7 | 2144 if (len > 0 && gui.col < Columns) |
2145 (void)gui_outstr_nowrap((char_u *)" ", 1, | |
2146 0, (guicolor_T)0, (guicolor_T)0, 0); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2147 // The cursor may wrap to the next line. |
7 | 2148 if (gui.col >= Columns) |
2149 { | |
2150 gui.col = 0; | |
2151 gui.row++; | |
2152 } | |
2153 } | |
2154 } | |
2155 | |
2156 /* | |
2157 * Output one character (may be one or two display cells). | |
2158 * Caller must check for valid "off". | |
2159 * Returns FAIL or OK, just like gui_outstr_nowrap(). | |
2160 */ | |
2161 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2162 gui_screenchar( |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2163 int off, // Offset from start of screen |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2164 int flags, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2165 guicolor_T fg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2166 guicolor_T bg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2167 int back) // backup this many chars when using bold trick |
7 | 2168 { |
2169 char_u buf[MB_MAXBYTES + 1]; | |
2170 | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2171 // Don't draw right half of a double-width UTF-8 char. "cannot happen" |
7 | 2172 if (enc_utf8 && ScreenLines[off] == 0) |
2173 return OK; | |
2174 | |
2175 if (enc_utf8 && ScreenLinesUC[off] != 0) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2176 // Draw UTF-8 multi-byte character. |
7 | 2177 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf), |
2178 flags, fg, bg, back); | |
2179 | |
2180 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) | |
2181 { | |
2182 buf[0] = ScreenLines[off]; | |
2183 buf[1] = ScreenLines2[off]; | |
2184 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back); | |
2185 } | |
2186 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2187 // Draw non-multi-byte character or DBCS character. |
7 | 2188 return gui_outstr_nowrap(ScreenLines + off, |
474 | 2189 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1, |
7 | 2190 flags, fg, bg, back); |
2191 } | |
2192 | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
2193 #ifdef FEAT_GUI_GTK |
7 | 2194 /* |
2195 * Output the string at the given screen position. This is used in place | |
2196 * of gui_screenchar() where possible because Pango needs as much context | |
2197 * as possible to work nicely. It's a lot faster as well. | |
2198 */ | |
2199 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2200 gui_screenstr( |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2201 int off, // Offset from start of screen |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2202 int len, // string length in screen cells |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2203 int flags, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2204 guicolor_T fg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2205 guicolor_T bg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2206 int back) // backup this many chars when using bold trick |
7 | 2207 { |
2208 char_u *buf; | |
2209 int outlen = 0; | |
2210 int i; | |
2211 int retval; | |
2212 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2213 if (len <= 0) // "cannot happen"? |
7 | 2214 return OK; |
2215 | |
2216 if (enc_utf8) | |
2217 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2218 buf = alloc(len * MB_MAXBYTES + 1); |
7 | 2219 if (buf == NULL) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2220 return OK; // not much we could do here... |
7 | 2221 |
2222 for (i = off; i < off + len; ++i) | |
2223 { | |
2224 if (ScreenLines[i] == 0) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2225 continue; // skip second half of double-width char |
7 | 2226 |
2227 if (ScreenLinesUC[i] == 0) | |
2228 buf[outlen++] = ScreenLines[i]; | |
2229 else | |
2230 outlen += utfc_char2bytes(i, buf + outlen); | |
2231 } | |
2232 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2233 buf[outlen] = NUL; // only to aid debugging |
7 | 2234 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back); |
2235 vim_free(buf); | |
2236 | |
2237 return retval; | |
2238 } | |
2239 else if (enc_dbcs == DBCS_JPNU) | |
2240 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2241 buf = alloc(len * 2 + 1); |
7 | 2242 if (buf == NULL) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2243 return OK; // not much we could do here... |
7 | 2244 |
2245 for (i = off; i < off + len; ++i) | |
2246 { | |
2247 buf[outlen++] = ScreenLines[i]; | |
2248 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2249 // handle double-byte single-width char |
7 | 2250 if (ScreenLines[i] == 0x8e) |
2251 buf[outlen++] = ScreenLines2[i]; | |
2252 else if (MB_BYTE2LEN(ScreenLines[i]) == 2) | |
2253 buf[outlen++] = ScreenLines[++i]; | |
2254 } | |
2255 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2256 buf[outlen] = NUL; // only to aid debugging |
7 | 2257 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back); |
2258 vim_free(buf); | |
2259 | |
2260 return retval; | |
2261 } | |
2262 else | |
2263 { | |
2264 return gui_outstr_nowrap(&ScreenLines[off], len, | |
2265 flags, fg, bg, back); | |
2266 } | |
2267 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2268 #endif // FEAT_GUI_GTK |
7 | 2269 |
2270 /* | |
2271 * Output the given string at the current cursor position. If the string is | |
2272 * too long to fit on the line, then it is truncated. | |
2273 * "flags": | |
2274 * GUI_MON_IS_CURSOR should only be used when this function is being called to | |
2275 * actually draw (an inverted) cursor. | |
1199 | 2276 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent |
7 | 2277 * background. |
2278 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over | |
2279 * it. | |
2280 * Returns OK, unless "back" is non-zero and using the bold trick, then return | |
2281 * FAIL (the caller should start drawing "back" chars back). | |
2282 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
2283 static int |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2284 gui_outstr_nowrap( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2285 char_u *s, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2286 int len, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2287 int flags, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2288 guicolor_T fg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2289 guicolor_T bg, // colors for cursor |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2290 int back) // backup this many chars when using bold trick |
7 | 2291 { |
2292 long_u highlight_mask; | |
2293 long_u hl_mask_todo; | |
2294 guicolor_T fg_color; | |
2295 guicolor_T bg_color; | |
203 | 2296 guicolor_T sp_color; |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2297 #if !defined(FEAT_GUI_GTK) |
7 | 2298 GuiFont font = NOFONT; |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2299 GuiFont wide_font = NOFONT; |
7 | 2300 # ifdef FEAT_XFONTSET |
2301 GuiFontset fontset = NOFONTSET; | |
2302 # endif | |
2303 #endif | |
2304 attrentry_T *aep = NULL; | |
2305 int draw_flags; | |
2306 int col = gui.col; | |
2307 #ifdef FEAT_SIGN_ICONS | |
2308 int draw_sign = FALSE; | |
17407
df340014f9e4
patch 8.1.1702: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
17342
diff
changeset
|
2309 int signcol = 0; |
17141
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2310 char_u extra[18]; |
7 | 2311 # ifdef FEAT_NETBEANS_INTG |
2312 int multi_sign = FALSE; | |
2313 # endif | |
2314 #endif | |
2315 | |
2316 if (len < 0) | |
2317 len = (int)STRLEN(s); | |
2318 if (len == 0) | |
2319 return OK; | |
2320 | |
2321 #ifdef FEAT_SIGN_ICONS | |
2322 if (*s == SIGN_BYTE | |
2323 # ifdef FEAT_NETBEANS_INTG | |
2324 || *s == MULTISIGN_BYTE | |
2325 # endif | |
17342
54fcde87a9eb
patch 8.1.1670: sign column not always properly aligned
Bram Moolenaar <Bram@vim.org>
parents:
17306
diff
changeset
|
2326 ) |
7 | 2327 { |
2328 # ifdef FEAT_NETBEANS_INTG | |
2329 if (*s == MULTISIGN_BYTE) | |
2330 multi_sign = TRUE; | |
2331 # endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2332 // draw spaces instead |
17141
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2333 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' && |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2334 (curwin->w_p_nu || curwin->w_p_rnu)) |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2335 { |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2336 sprintf((char *)extra, "%*c ", number_width(curwin), ' '); |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2337 s = extra; |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2338 } |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2339 else |
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2340 s = (char_u *)" "; |
7 | 2341 if (len == 1 && col > 0) |
2342 --col; | |
17141
3c0efdd95f8d
patch 8.1.1570: icon signs not displayed properly in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
2343 len = (int)STRLEN(s); |
17176
210937723567
patch 8.1.1587: redraw problem when sign icons in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17141
diff
changeset
|
2344 if (len > 2) |
17342
54fcde87a9eb
patch 8.1.1670: sign column not always properly aligned
Bram Moolenaar <Bram@vim.org>
parents:
17306
diff
changeset
|
2345 // right align sign icon in the number column |
54fcde87a9eb
patch 8.1.1670: sign column not always properly aligned
Bram Moolenaar <Bram@vim.org>
parents:
17306
diff
changeset
|
2346 signcol = col + len - 3; |
54fcde87a9eb
patch 8.1.1670: sign column not always properly aligned
Bram Moolenaar <Bram@vim.org>
parents:
17306
diff
changeset
|
2347 else |
54fcde87a9eb
patch 8.1.1670: sign column not always properly aligned
Bram Moolenaar <Bram@vim.org>
parents:
17306
diff
changeset
|
2348 signcol = col; |
7 | 2349 draw_sign = TRUE; |
2350 highlight_mask = 0; | |
2351 } | |
2352 else | |
2353 #endif | |
2354 if (gui.highlight_mask > HL_ALL) | |
2355 { | |
2356 aep = syn_gui_attr2entry(gui.highlight_mask); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2357 if (aep == NULL) // highlighting not set |
7 | 2358 highlight_mask = 0; |
2359 else | |
2360 highlight_mask = aep->ae_attr; | |
2361 } | |
2362 else | |
2363 highlight_mask = gui.highlight_mask; | |
2364 hl_mask_todo = highlight_mask; | |
2365 | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2366 #if !defined(FEAT_GUI_GTK) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2367 // Set the font |
7 | 2368 if (aep != NULL && aep->ae_u.gui.font != NOFONT) |
2369 font = aep->ae_u.gui.font; | |
2370 # ifdef FEAT_XFONTSET | |
2371 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET) | |
2372 fontset = aep->ae_u.gui.fontset; | |
2373 # endif | |
2374 else | |
2375 { | |
2376 # ifdef FEAT_XFONTSET | |
2377 if (gui.fontset != NOFONTSET) | |
2378 fontset = gui.fontset; | |
2379 else | |
2380 # endif | |
2381 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT)) | |
2382 { | |
2383 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT) | |
2384 { | |
2385 font = gui.boldital_font; | |
2386 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC); | |
2387 } | |
2388 else if (gui.bold_font != NOFONT) | |
2389 { | |
2390 font = gui.bold_font; | |
2391 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT); | |
2392 } | |
2393 else | |
2394 font = gui.norm_font; | |
2395 } | |
2396 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT) | |
2397 { | |
2398 font = gui.ital_font; | |
2399 hl_mask_todo &= ~HL_ITALIC; | |
2400 } | |
2401 else | |
2402 font = gui.norm_font; | |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2403 |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2404 /* |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2405 * Choose correct wide_font by font. wide_font should be set with font |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2406 * at same time in above block. But it will make many "ifdef" nasty |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2407 * blocks. So we do it here. |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2408 */ |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2409 if (font == gui.boldital_font && gui.wide_boldital_font) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2410 wide_font = gui.wide_boldital_font; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2411 else if (font == gui.bold_font && gui.wide_bold_font) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2412 wide_font = gui.wide_bold_font; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2413 else if (font == gui.ital_font && gui.wide_ital_font) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2414 wide_font = gui.wide_ital_font; |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2415 else if (font == gui.norm_font && gui.wide_font) |
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2416 wide_font = gui.wide_font; |
7 | 2417 } |
2418 # ifdef FEAT_XFONTSET | |
2419 if (fontset != NOFONTSET) | |
2420 gui_mch_set_fontset(fontset); | |
2421 else | |
2422 # endif | |
2423 gui_mch_set_font(font); | |
2424 #endif | |
2425 | |
2426 draw_flags = 0; | |
2427 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2428 // Set the color |
7 | 2429 bg_color = gui.back_pixel; |
2430 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus) | |
2431 { | |
2432 draw_flags |= DRAW_CURSOR; | |
2433 fg_color = fg; | |
2434 bg_color = bg; | |
203 | 2435 sp_color = fg; |
7 | 2436 } |
2437 else if (aep != NULL) | |
2438 { | |
2439 fg_color = aep->ae_u.gui.fg_color; | |
2440 if (fg_color == INVALCOLOR) | |
2441 fg_color = gui.norm_pixel; | |
2442 bg_color = aep->ae_u.gui.bg_color; | |
2443 if (bg_color == INVALCOLOR) | |
2444 bg_color = gui.back_pixel; | |
203 | 2445 sp_color = aep->ae_u.gui.sp_color; |
2446 if (sp_color == INVALCOLOR) | |
2447 sp_color = fg_color; | |
7 | 2448 } |
2449 else | |
203 | 2450 { |
7 | 2451 fg_color = gui.norm_pixel; |
203 | 2452 sp_color = fg_color; |
2453 } | |
7 | 2454 |
2455 if (highlight_mask & (HL_INVERSE | HL_STANDOUT)) | |
2456 { | |
2457 gui_mch_set_fg_color(bg_color); | |
2458 gui_mch_set_bg_color(fg_color); | |
2459 } | |
2460 else | |
2461 { | |
2462 gui_mch_set_fg_color(fg_color); | |
2463 gui_mch_set_bg_color(bg_color); | |
2464 } | |
203 | 2465 gui_mch_set_sp_color(sp_color); |
7 | 2466 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2467 // Clear the selection if we are about to write over it |
7 | 2468 if (!(flags & GUI_MON_NOCLEAR)) |
2469 clip_may_clear_selection(gui.row, gui.row); | |
2470 | |
2471 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2472 // If there's no bold font, then fake it |
7 | 2473 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT)) |
2474 draw_flags |= DRAW_BOLD; | |
2475 | |
2476 /* | |
2477 * When drawing bold or italic characters the spill-over from the left | |
2478 * neighbor may be destroyed. Let the caller backup to start redrawing | |
2479 * just after a blank. | |
2480 */ | |
2481 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC))) | |
2482 return FAIL; | |
2483 | |
2823 | 2484 #if defined(FEAT_GUI_GTK) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2485 // If there's no italic font, then fake it. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2486 // For GTK2, we don't need a different font for italic style. |
7 | 2487 if (hl_mask_todo & HL_ITALIC) |
2488 draw_flags |= DRAW_ITALIC; | |
2489 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2490 // Do we underline the text? |
7 | 2491 if (hl_mask_todo & HL_UNDERLINE) |
2492 draw_flags |= DRAW_UNDERL; | |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
2493 |
7 | 2494 #else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2495 // Do we underline the text? |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2496 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC)) |
7 | 2497 draw_flags |= DRAW_UNDERL; |
2498 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2499 // Do we undercurl the text? |
203 | 2500 if (hl_mask_todo & HL_UNDERCURL) |
2501 draw_flags |= DRAW_UNDERC; | |
7 | 2502 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2503 // Do we strikethrough the text? |
12317
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
2504 if (hl_mask_todo & HL_STRIKETHROUGH) |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
2505 draw_flags |= DRAW_STRIKE; |
2a8890b80923
patch 8.0.1038: strike-through text not supported
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
2506 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2507 // Do we draw transparently? |
7 | 2508 if (flags & GUI_MON_TRS_CURSOR) |
2509 draw_flags |= DRAW_TRANSP; | |
2510 | |
2511 /* | |
2512 * Draw the text. | |
2513 */ | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
2514 #ifdef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2515 // The value returned is the length in display cells |
7 | 2516 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags); |
2517 #else | |
2518 if (enc_utf8) | |
2519 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2520 int start; // index of bytes to be drawn |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2521 int cells; // cellwidth of bytes to be drawn |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2522 int thislen; // length of bytes to be drawn |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2523 int cn; // cellwidth of current char |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2524 int i; // index of current char |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2525 int c; // current char value |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2526 int cl; // byte length of current char |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2527 int comping; // current char is composing |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2528 int scol = col; // screen column |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2529 int curr_wide = FALSE; // use 'guifontwide' |
4053 | 2530 int prev_wide = FALSE; |
2531 int wide_changed; | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
2532 # ifdef MSWIN |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2533 int sep_comp = FALSE; // Don't separate composing chars. |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2534 # else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2535 int sep_comp = TRUE; // Separate composing chars. |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2536 # endif |
7 | 2537 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2538 // Break the string at a composing character, it has to be drawn on |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2539 // top of the previous character. |
7 | 2540 start = 0; |
2541 cells = 0; | |
2542 for (i = 0; i < len; i += cl) | |
2543 { | |
2544 c = utf_ptr2char(s + i); | |
2545 cn = utf_char2cells(c); | |
2546 comping = utf_iscomposing(c); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2547 if (!comping) // count cells from non-composing chars |
7 | 2548 cells += cn; |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2549 if (!comping || sep_comp) |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2550 { |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2551 if (cn > 1 |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2552 # ifdef FEAT_XFONTSET |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2553 && fontset == NOFONTSET |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2554 # endif |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2555 && wide_font != NOFONT) |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2556 curr_wide = TRUE; |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2557 else |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2558 curr_wide = FALSE; |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2559 } |
474 | 2560 cl = utf_ptr2len(s + i); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2561 if (cl == 0) // hit end of string |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2562 len = i + cl; // len must be wrong "cannot happen" |
7 | 2563 |
4053 | 2564 wide_changed = curr_wide != prev_wide; |
2565 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2566 // Print the string so far if it's the last character or there is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2567 // a composing character. |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2568 if (i + cl >= len || (comping && sep_comp && i > start) |
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2569 || wide_changed |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2570 # if defined(FEAT_GUI_X11) |
7 | 2571 || (cn > 1 |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2572 # ifdef FEAT_XFONTSET |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2573 // No fontset: At least draw char after wide char at |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2574 // right position. |
7 | 2575 && fontset == NOFONTSET |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2576 # endif |
7 | 2577 ) |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2578 # endif |
7 | 2579 ) |
2580 { | |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2581 if ((comping && sep_comp) || wide_changed) |
7 | 2582 thislen = i - start; |
2583 else | |
2584 thislen = i - start + cl; | |
2585 if (thislen > 0) | |
2586 { | |
4053 | 2587 if (prev_wide) |
4950
ba7db05e1482
updated for version 7.3.1220
Bram Moolenaar <bram@vim.org>
parents:
4863
diff
changeset
|
2588 gui_mch_set_font(wide_font); |
7 | 2589 gui_mch_draw_string(gui.row, scol, s + start, thislen, |
2590 draw_flags); | |
4053 | 2591 if (prev_wide) |
2592 gui_mch_set_font(font); | |
7 | 2593 start += thislen; |
2594 } | |
2595 scol += cells; | |
2596 cells = 0; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2597 // Adjust to not draw a character which width is changed |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2598 // against with last one. |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2599 if (wide_changed && !(comping && sep_comp)) |
7 | 2600 { |
4053 | 2601 scol -= cn; |
2602 cl = 0; | |
7 | 2603 } |
2604 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2605 # if defined(FEAT_GUI_X11) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2606 // No fontset: draw a space to fill the gap after a wide char |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2607 // |
7 | 2608 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0 |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2609 # ifdef FEAT_XFONTSET |
7 | 2610 && fontset == NOFONTSET |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2611 # endif |
4053 | 2612 && !wide_changed) |
7 | 2613 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ", |
2614 1, draw_flags); | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2615 # endif |
7 | 2616 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2617 // Draw a composing char on top of the previous char. |
12712
25f7d8ee04c7
patch 8.0.1234: MS-Windows: composing chars are not shown properly
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2618 if (comping && sep_comp) |
7 | 2619 { |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2620 # if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2621 // Carbon ATSUI autodraws composing char over previous char |
536 | 2622 gui_mch_draw_string(gui.row, scol, s + i, cl, |
7 | 2623 draw_flags | DRAW_TRANSP); |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2624 # else |
536 | 2625 gui_mch_draw_string(gui.row, scol - cn, s + i, cl, |
187 | 2626 draw_flags | DRAW_TRANSP); |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2627 # endif |
7 | 2628 start = i + cl; |
2629 } | |
4053 | 2630 prev_wide = curr_wide; |
7 | 2631 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2632 // The stuff below assumes "len" is the length in screen columns. |
7 | 2633 len = scol - col; |
2634 } | |
2635 else | |
2636 { | |
2637 gui_mch_draw_string(gui.row, col, s, len, draw_flags); | |
2638 if (enc_dbcs == DBCS_JPNU) | |
2639 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2640 // Get the length in display cells, this can be different from the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2641 // number of bytes for "euc-jp". |
2338
da6ec32d8d8f
Added strwidth() and strchars() functions.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2642 len = mb_string2cells(s, len); |
7 | 2643 } |
2644 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2645 #endif // !FEAT_GUI_GTK |
7 | 2646 |
2647 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR))) | |
2648 gui.col = col + len; | |
2649 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2650 // May need to invert it when it's part of the selection. |
7 | 2651 if (flags & GUI_MON_NOCLEAR) |
2652 clip_may_redraw_selection(gui.row, col, len); | |
2653 | |
2654 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR))) | |
2655 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2656 // Invalidate the old physical cursor position if we wrote over it |
7 | 2657 if (gui.cursor_row == gui.row |
2658 && gui.cursor_col >= col | |
2659 && gui.cursor_col < col + len) | |
2660 gui.cursor_is_valid = FALSE; | |
2661 } | |
2662 | |
2663 #ifdef FEAT_SIGN_ICONS | |
2664 if (draw_sign) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2665 // Draw the sign on top of the spaces. |
17176
210937723567
patch 8.1.1587: redraw problem when sign icons in the number column
Bram Moolenaar <Bram@vim.org>
parents:
17141
diff
changeset
|
2666 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask); |
2592 | 2667 # if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \ |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
2668 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN)) |
7 | 2669 if (multi_sign) |
2670 netbeans_draw_multisign_indicator(gui.row); | |
2671 # endif | |
2672 #endif | |
2673 | |
2674 return OK; | |
2675 } | |
2676 | |
2677 /* | |
26232
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2678 * Undraw the cursor. This actually redraws the character at the cursor |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2679 * position, plus some more characters when needed. |
7 | 2680 */ |
2681 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2682 gui_undraw_cursor(void) |
7 | 2683 { |
2684 if (gui.cursor_is_valid) | |
2685 { | |
26232
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2686 // Always redraw the character just before if there is one, because |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2687 // with some fonts and characters there can be a one pixel overlap. |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2688 int startcol = gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2689 int endcol = gui.cursor_col; |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2690 |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2691 #ifdef FEAT_GUI_GTK |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2692 gui_adjust_undraw_cursor_for_ligatures(&startcol, &endcol); |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2693 #endif |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2694 gui_redraw_block(gui.cursor_row, startcol, |
393ee487cf82
patch 8.2.3647: GTK: when using ligatures the cursor is drawn wrong
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
2695 gui.cursor_row, endcol, GUI_MON_NOCLEAR); |
19824
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19760
diff
changeset
|
2696 |
18671
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2697 // Cursor_is_valid is reset when the cursor is undrawn, also reset it |
df141c730008
patch 8.1.2327: cannot build with Hangul input
Bram Moolenaar <Bram@vim.org>
parents:
18642
diff
changeset
|
2698 // here in case it wasn't needed to undraw it. |
7 | 2699 gui.cursor_is_valid = FALSE; |
2700 } | |
2701 } | |
2702 | |
2703 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2704 gui_redraw( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2705 int x, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2706 int y, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2707 int w, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2708 int h) |
7 | 2709 { |
2710 int row1, col1, row2, col2; | |
2711 | |
2712 row1 = Y_2_ROW(y); | |
2713 col1 = X_2_COL(x); | |
2714 row2 = Y_2_ROW(y + h - 1); | |
2715 col2 = X_2_COL(x + w - 1); | |
2716 | |
19824
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19760
diff
changeset
|
2717 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR); |
7 | 2718 |
2719 /* | |
2720 * We may need to redraw the cursor, but don't take it upon us to change | |
2721 * its location after a scroll. | |
2722 * (maybe be more strict even and test col too?) | |
2723 * These things may be outside the update/clipping region and reality may | |
2724 * not reflect Vims internal ideas if these operations are clipped away. | |
2725 */ | |
2726 if (gui.row == gui.cursor_row) | |
2727 gui_update_cursor(TRUE, TRUE); | |
2728 } | |
2729 | |
2730 /* | |
2731 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and | |
2732 * from col1 to col2 (inclusive). | |
2733 */ | |
19824
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19760
diff
changeset
|
2734 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2735 gui_redraw_block( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2736 int row1, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2737 int col1, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2738 int row2, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2739 int col2, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2740 int flags) // flags for gui_outstr_nowrap() |
7 | 2741 { |
2742 int old_row, old_col; | |
2743 long_u old_hl_mask; | |
2744 int off; | |
203 | 2745 sattr_T first_attr; |
7 | 2746 int idx, len; |
2747 int back, nback; | |
2748 int orig_col1, orig_col2; | |
2749 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2750 // Don't try to update when ScreenLines is not valid |
7 | 2751 if (!screen_cleared || ScreenLines == NULL) |
19824
09a621bdb0bc
patch 8.2.0468: GUI: pixel dust with some fonts and characters
Bram Moolenaar <Bram@vim.org>
parents:
19760
diff
changeset
|
2752 return; |
7 | 2753 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2754 // Don't try to draw outside the shell! |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2755 // Check everything, strange values may be caused by a big border width |
7 | 2756 col1 = check_col(col1); |
2757 col2 = check_col(col2); | |
2758 row1 = check_row(row1); | |
2759 row2 = check_row(row2); | |
2760 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2761 // Remember where our cursor was |
7 | 2762 old_row = gui.row; |
2763 old_col = gui.col; | |
2764 old_hl_mask = gui.highlight_mask; | |
2765 orig_col1 = col1; | |
2766 orig_col2 = col2; | |
2767 | |
2768 for (gui.row = row1; gui.row <= row2; gui.row++) | |
2769 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2770 // When only half of a double-wide character is in the block, include |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2771 // the other half. |
7 | 2772 col1 = orig_col1; |
2773 col2 = orig_col2; | |
2774 off = LineOffset[gui.row]; | |
2775 if (enc_dbcs != 0) | |
2776 { | |
2777 if (col1 > 0) | |
2778 col1 -= dbcs_screen_head_off(ScreenLines + off, | |
2779 ScreenLines + off + col1); | |
2780 col2 += dbcs_screen_tail_off(ScreenLines + off, | |
2781 ScreenLines + off + col2); | |
2782 } | |
2783 else if (enc_utf8) | |
2784 { | |
15113
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2785 if (ScreenLines[off + col1] == 0) |
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2786 { |
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2787 if (col1 > 0) |
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2788 --col1; |
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2789 else |
15115
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2790 { |
15113
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2791 // FIXME: how can the first character ever be zero? |
15115
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2792 // Make this IEMSGN when it no longer breaks Travis CI. |
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2793 vim_snprintf((char *)IObuff, IOSIZE, |
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2794 "INTERNAL ERROR: NUL in ScreenLines in row %ld", |
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2795 (long)gui.row); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2796 msg((char *)IObuff); |
15115
f17110dae9de
patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI
Bram Moolenaar <Bram@vim.org>
parents:
15113
diff
changeset
|
2797 } |
15113
ae25a1172514
patch 8.1.0567: error for NUL byte in ScreenLines goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
15109
diff
changeset
|
2798 } |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2799 #ifdef FEAT_GUI_GTK |
7 | 2800 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0) |
2801 ++col2; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2802 #endif |
7 | 2803 } |
2804 gui.col = col1; | |
2805 off = LineOffset[gui.row] + gui.col; | |
2806 len = col2 - col1 + 1; | |
2807 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2808 // Find how many chars back this highlighting starts, or where a space |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2809 // is. Needed for when the bold trick is used |
7 | 2810 for (back = 0; back < col1; ++back) |
2811 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off] | |
2812 || ScreenLines[off - 1 - back] == ' ') | |
2813 break; | |
2814 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2815 // Break it up in strings of characters with the same attributes. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2816 // Print UTF-8 characters individually. |
7 | 2817 while (len > 0) |
2818 { | |
2819 first_attr = ScreenAttrs[off]; | |
2820 gui.highlight_mask = first_attr; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2821 #if !defined(FEAT_GUI_GTK) |
7 | 2822 if (enc_utf8 && ScreenLinesUC[off] != 0) |
2823 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2824 // output multi-byte character separately |
7 | 2825 nback = gui_screenchar(off, flags, |
2826 (guicolor_T)0, (guicolor_T)0, back); | |
2827 if (gui.col < Columns && ScreenLines[off + 1] == 0) | |
2828 idx = 2; | |
2829 else | |
2830 idx = 1; | |
2831 } | |
2832 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) | |
2833 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2834 // output double-byte, single-width character separately |
7 | 2835 nback = gui_screenchar(off, flags, |
2836 (guicolor_T)0, (guicolor_T)0, back); | |
2837 idx = 1; | |
2838 } | |
2839 else | |
2840 #endif | |
2841 { | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
2842 #ifdef FEAT_GUI_GTK |
7 | 2843 for (idx = 0; idx < len; ++idx) |
2844 { | |
2845 if (enc_utf8 && ScreenLines[off + idx] == 0) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2846 continue; // skip second half of double-width char |
7 | 2847 if (ScreenAttrs[off + idx] != first_attr) |
2848 break; | |
2849 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2850 // gui_screenstr() takes care of multibyte chars |
7 | 2851 nback = gui_screenstr(off, idx, flags, |
2852 (guicolor_T)0, (guicolor_T)0, back); | |
2853 #else | |
2854 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr; | |
2855 idx++) | |
2856 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2857 // Stop at a multi-byte Unicode character. |
7 | 2858 if (enc_utf8 && ScreenLinesUC[off + idx] != 0) |
2859 break; | |
2860 if (enc_dbcs == DBCS_JPNU) | |
2861 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2862 // Stop at a double-byte single-width char. |
7 | 2863 if (ScreenLines[off + idx] == 0x8e) |
2864 break; | |
474 | 2865 if (len > 1 && (*mb_ptr2len)(ScreenLines |
7 | 2866 + off + idx) == 2) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2867 ++idx; // skip second byte of double-byte char |
7 | 2868 } |
2869 } | |
2870 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags, | |
2871 (guicolor_T)0, (guicolor_T)0, back); | |
2872 #endif | |
2873 } | |
2874 if (nback == FAIL) | |
2875 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2876 // Must back up to start drawing where a bold or italic word |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2877 // starts. |
7 | 2878 off -= back; |
2879 len += back; | |
2880 gui.col -= back; | |
2881 } | |
2882 else | |
2883 { | |
2884 off += idx; | |
2885 len -= idx; | |
2886 } | |
2887 back = 0; | |
2888 } | |
2889 } | |
2890 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2891 // Put the cursor back where it was |
7 | 2892 gui.row = old_row; |
2893 gui.col = old_col; | |
835 | 2894 gui.highlight_mask = (int)old_hl_mask; |
7 | 2895 } |
2896 | |
2897 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2898 gui_delete_lines(int row, int count) |
7 | 2899 { |
2900 if (count <= 0) | |
2901 return; | |
2902 | |
2903 if (row + count > gui.scroll_region_bot) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2904 // Scrolled out of region, just blank the lines out |
7 | 2905 gui_clear_block(row, gui.scroll_region_left, |
2906 gui.scroll_region_bot, gui.scroll_region_right); | |
2907 else | |
2908 { | |
2909 gui_mch_delete_lines(row, count); | |
2910 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2911 // If the cursor was in the deleted lines it's now gone. If the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2912 // cursor was in the scrolled lines adjust its position. |
7 | 2913 if (gui.cursor_row >= row |
2914 && gui.cursor_col >= gui.scroll_region_left | |
2915 && gui.cursor_col <= gui.scroll_region_right) | |
2916 { | |
2917 if (gui.cursor_row < row + count) | |
2918 gui.cursor_is_valid = FALSE; | |
2919 else if (gui.cursor_row <= gui.scroll_region_bot) | |
2920 gui.cursor_row -= count; | |
2921 } | |
2922 } | |
2923 } | |
2924 | |
2925 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2926 gui_insert_lines(int row, int count) |
7 | 2927 { |
2928 if (count <= 0) | |
2929 return; | |
2930 | |
2931 if (row + count > gui.scroll_region_bot) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2932 // Scrolled out of region, just blank the lines out |
7 | 2933 gui_clear_block(row, gui.scroll_region_left, |
2934 gui.scroll_region_bot, gui.scroll_region_right); | |
2935 else | |
2936 { | |
2937 gui_mch_insert_lines(row, count); | |
2938 | |
2939 if (gui.cursor_row >= gui.row | |
2940 && gui.cursor_col >= gui.scroll_region_left | |
2941 && gui.cursor_col <= gui.scroll_region_right) | |
2942 { | |
2943 if (gui.cursor_row <= gui.scroll_region_bot - count) | |
2944 gui.cursor_row += count; | |
2945 else if (gui.cursor_row <= gui.scroll_region_bot) | |
2946 gui.cursor_is_valid = FALSE; | |
2947 } | |
2948 } | |
2949 } | |
2950 | |
13080
eee366f56b1a
patch 8.0.1415: warning for unused function without timers feature
Christian Brabandt <cb@256bit.org>
parents:
13064
diff
changeset
|
2951 #ifdef FEAT_TIMERS |
11471
26525db57c4c
patch 8.0.0619: GUI gets stuck if timer uses feedkeys()
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
2952 /* |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2953 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments. |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2954 */ |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2955 static int |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2956 gui_wait_for_chars_3( |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2957 long wtime, |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2958 int *interrupted UNUSED, |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2959 int ignore_input UNUSED) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2960 { |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2961 return gui_mch_wait_for_chars(wtime); |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2962 } |
13080
eee366f56b1a
patch 8.0.1415: warning for unused function without timers feature
Christian Brabandt <cb@256bit.org>
parents:
13064
diff
changeset
|
2963 #endif |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2964 |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
2965 /* |
11471
26525db57c4c
patch 8.0.0619: GUI gets stuck if timer uses feedkeys()
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
2966 * Returns OK if a character was found to be available within the given time, |
26525db57c4c
patch 8.0.0619: GUI gets stuck if timer uses feedkeys()
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
2967 * or FAIL otherwise. |
26525db57c4c
patch 8.0.0619: GUI gets stuck if timer uses feedkeys()
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
2968 */ |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2969 static int |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2970 gui_wait_for_chars_or_timer( |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2971 long wtime, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2972 int *interrupted UNUSED, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2973 int ignore_input UNUSED) |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2974 { |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2975 #ifdef FEAT_TIMERS |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2976 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2977 interrupted, ignore_input); |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2978 #else |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2979 return gui_mch_wait_for_chars(wtime); |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2980 #endif |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2981 } |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
2982 |
7 | 2983 /* |
2984 * The main GUI input routine. Waits for a character from the keyboard. | |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2985 * "wtime" == -1 Wait forever. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2986 * "wtime" == 0 Don't wait. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2987 * "wtime" > 0 Wait wtime milliseconds for a character. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2988 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2989 * Returns the number of characters read or zero when timed out or interrupted. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2990 * "buf" may be NULL, in which case a non-zero number is returned if characters |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2991 * are available. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2992 */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2993 static int |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2994 gui_wait_for_chars_buf( |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2995 char_u *buf, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2996 int maxlen, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2997 long wtime, // don't use "time", MIPS cannot handle it |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2998 int tb_change_cnt) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2999 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3000 int retval; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3001 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3002 #ifdef FEAT_MENU |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3003 // If we're going to wait a bit, update the menus and mouse shape for the |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3004 // current State. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3005 if (wtime != 0) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3006 gui_update_menus(0); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3007 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3008 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3009 gui_mch_update(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3010 if (input_available()) // Got char, return immediately |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3011 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3012 if (buf != NULL && !typebuf_changed(tb_change_cnt)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3013 return read_from_input_buf(buf, (long)maxlen); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3014 return 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3015 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3016 if (wtime == 0) // Don't wait for char |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3017 return FAIL; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3018 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3019 // Before waiting, flush any output to the screen. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3020 gui_mch_flush(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3021 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3022 // Blink while waiting for a character. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3023 gui_mch_start_blink(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3024 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3025 // Common function to loop until "wtime" is met, while handling timers and |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3026 // other callbacks. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3027 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3028 gui_wait_for_chars_or_timer, NULL); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3029 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3030 gui_mch_stop_blink(TRUE); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3031 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3032 return retval; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3033 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3034 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3035 /* |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3036 * Wait for a character from the keyboard without actually reading it. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3037 * Also deals with timers. |
7 | 3038 * wtime == -1 Wait forever. |
3039 * wtime == 0 Don't wait. | |
3040 * wtime > 0 Wait wtime milliseconds for a character. | |
3041 * Returns OK if a character was found to be available within the given time, | |
3042 * or FAIL otherwise. | |
3043 */ | |
3044 int | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3045 gui_wait_for_chars(long wtime, int tb_change_cnt) |
7 | 3046 { |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3047 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt); |
7 | 3048 } |
3049 | |
3050 /* | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3051 * Equivalent of mch_inchar() for the GUI. |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3052 */ |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3053 int |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3054 gui_inchar( |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3055 char_u *buf, |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3056 int maxlen, |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
3057 long wtime, // milliseconds |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3058 int tb_change_cnt) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3059 { |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
3060 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt); |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3061 } |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3062 |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
13052
diff
changeset
|
3063 /* |
1137 | 3064 * Fill p[4] with mouse coordinates encoded for check_termcode(). |
7 | 3065 */ |
3066 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3067 fill_mouse_coord(char_u *p, int col, int row) |
7 | 3068 { |
3069 p[0] = (char_u)(col / 128 + ' ' + 1); | |
3070 p[1] = (char_u)(col % 128 + ' ' + 1); | |
3071 p[2] = (char_u)(row / 128 + ' ' + 1); | |
3072 p[3] = (char_u)(row % 128 + ' ' + 1); | |
3073 } | |
3074 | |
3075 /* | |
3076 * Generic mouse support function. Add a mouse event to the input buffer with | |
3077 * the given properties. | |
3078 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT, | |
3079 * MOUSE_X1, MOUSE_X2 | |
3080 * MOUSE_DRAG, or MOUSE_RELEASE. | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3081 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3082 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel. |
7 | 3083 * x, y --- Coordinates of mouse in pixels. |
3084 * repeated_click --- TRUE if this click comes only a short time after a | |
3085 * previous click. | |
3086 * modifiers --- Bit field which may be any of the following modifiers | |
3087 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT. | |
3088 * This function will ignore drag events where the mouse has not moved to a new | |
3089 * character. | |
3090 */ | |
3091 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3092 gui_send_mouse_event( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3093 int button, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3094 int x, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3095 int y, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3096 int repeated_click, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3097 int_u modifiers) |
7 | 3098 { |
3099 static int prev_row = 0, prev_col = 0; | |
3100 static int prev_button = -1; | |
3101 static int num_clicks = 1; | |
3102 char_u string[10]; | |
3103 enum key_extra button_char; | |
3104 int row, col; | |
3105 #ifdef FEAT_CLIPBOARD | |
3106 int checkfor; | |
3107 int did_clip = FALSE; | |
3108 #endif | |
3109 | |
3110 /* | |
3111 * Scrolling may happen at any time, also while a selection is present. | |
3112 */ | |
3113 switch (button) | |
3114 { | |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24719
diff
changeset
|
3115 case MOUSE_MOVE: |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24719
diff
changeset
|
3116 button_char = KE_MOUSEMOVE_XY; |
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24719
diff
changeset
|
3117 goto button_set; |
7 | 3118 case MOUSE_X1: |
3119 button_char = KE_X1MOUSE; | |
3120 goto button_set; | |
3121 case MOUSE_X2: | |
3122 button_char = KE_X2MOUSE; | |
3123 goto button_set; | |
3124 case MOUSE_4: | |
3125 button_char = KE_MOUSEDOWN; | |
3126 goto button_set; | |
3127 case MOUSE_5: | |
3128 button_char = KE_MOUSEUP; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3129 goto button_set; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3130 case MOUSE_6: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3131 button_char = KE_MOUSELEFT; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3132 goto button_set; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3133 case MOUSE_7: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
3134 button_char = KE_MOUSERIGHT; |
7 | 3135 button_set: |
3136 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3137 // Don't put events in the input queue now. |
7 | 3138 if (hold_gui_events) |
3139 return; | |
3140 | |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3141 row = gui_xy2colrow(x, y, &col); |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3142 // Don't report a mouse move unless moved to a |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3143 // different character position. |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3144 if (button == MOUSE_MOVE) |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3145 { |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3146 if (row == prev_row && col == prev_col) |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3147 return; |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3148 else |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3149 { |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3150 prev_row = row >= 0 ? row : 0; |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3151 prev_col = col; |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3152 } |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3153 } |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
3154 |
7 | 3155 string[3] = CSI; |
3156 string[4] = KS_EXTRA; | |
3157 string[5] = (int)button_char; | |
3158 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3159 // Pass the pointer coordinates of the scroll event so that we |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3160 // know which window to scroll. |
7 | 3161 string[6] = (char_u)(col / 128 + ' ' + 1); |
3162 string[7] = (char_u)(col % 128 + ' ' + 1); | |
3163 string[8] = (char_u)(row / 128 + ' ' + 1); | |
3164 string[9] = (char_u)(row % 128 + ' ' + 1); | |
3165 | |
3166 if (modifiers == 0) | |
3167 add_to_input_buf(string + 3, 7); | |
3168 else | |
3169 { | |
3170 string[0] = CSI; | |
3171 string[1] = KS_MODIFIER; | |
3172 string[2] = 0; | |
3173 if (modifiers & MOUSE_SHIFT) | |
3174 string[2] |= MOD_MASK_SHIFT; | |
3175 if (modifiers & MOUSE_CTRL) | |
3176 string[2] |= MOD_MASK_CTRL; | |
3177 if (modifiers & MOUSE_ALT) | |
3178 string[2] |= MOD_MASK_ALT; | |
3179 add_to_input_buf(string, 10); | |
3180 } | |
3181 return; | |
3182 } | |
3183 } | |
3184 | |
3185 #ifdef FEAT_CLIPBOARD | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3186 // If a clipboard selection is in progress, handle it |
7 | 3187 if (clip_star.state == SELECT_IN_PROGRESS) |
3188 { | |
3189 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click); | |
18922
23f68e3cb66e
patch 8.2.0022: click in popup window doesn't close it in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
3190 |
23f68e3cb66e
patch 8.2.0022: click in popup window doesn't close it in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
3191 // A release event may still need to be sent if the position is equal. |
23f68e3cb66e
patch 8.2.0022: click in popup window doesn't close it in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
3192 row = gui_xy2colrow(x, y, &col); |
23f68e3cb66e
patch 8.2.0022: click in popup window doesn't close it in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
3193 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col) |
23f68e3cb66e
patch 8.2.0022: click in popup window doesn't close it in the GUI
Bram Moolenaar <Bram@vim.org>
parents:
18781
diff
changeset
|
3194 return; |
7 | 3195 } |
3196 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3197 // Determine which mouse settings to look for based on the current mode |
7 | 3198 switch (get_real_state()) |
3199 { | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3200 case MODE_NORMAL_BUSY: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3201 case MODE_OP_PENDING: |
12822
0eb12ef4f8ba
patch 8.0.1288: GUI: cannot drag the statusline of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
3202 # ifdef FEAT_TERMINAL |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3203 case MODE_TERMINAL: |
12822
0eb12ef4f8ba
patch 8.0.1288: GUI: cannot drag the statusline of a terminal window
Christian Brabandt <cb@256bit.org>
parents:
12802
diff
changeset
|
3204 # endif |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3205 case MODE_NORMAL: checkfor = MOUSE_NORMAL; break; |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3206 case MODE_VISUAL: checkfor = MOUSE_VISUAL; break; |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3207 case MODE_SELECT: checkfor = MOUSE_VISUAL; break; |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3208 case MODE_REPLACE: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3209 case MODE_REPLACE | MODE_LANGMAP: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3210 case MODE_VREPLACE: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3211 case MODE_VREPLACE | MODE_LANGMAP: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3212 case MODE_INSERT: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3213 case MODE_INSERT | MODE_LANGMAP: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3214 checkfor = MOUSE_INSERT; break; |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3215 case MODE_ASKMORE: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3216 case MODE_HITRETURN: // At the more- and hit-enter prompt pass the |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3217 // mouse event for a click on or below the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3218 // message line. |
7 | 3219 if (Y_2_ROW(y) >= msg_row) |
3220 checkfor = MOUSE_NORMAL; | |
3221 else | |
3222 checkfor = MOUSE_RETURN; | |
3223 break; | |
3224 | |
3225 /* | |
3226 * On the command line, use the clipboard selection on all lines | |
3227 * but the command line. But not when pasting. | |
3228 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3229 case MODE_CMDLINE: |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3230 case MODE_CMDLINE | MODE_LANGMAP: |
7 | 3231 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE) |
3232 checkfor = MOUSE_NONE; | |
3233 else | |
3234 checkfor = MOUSE_COMMAND; | |
3235 break; | |
3236 | |
3237 default: | |
3238 checkfor = MOUSE_NONE; | |
3239 break; | |
3240 }; | |
3241 | |
3242 /* | |
3243 * Allow clipboard selection of text on the command line in "normal" | |
3244 * modes. Don't do this when dragging the status line, or extending a | |
3245 * Visual selection. | |
3246 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3247 if ((State == MODE_NORMAL || State == MODE_NORMAL_BUSY |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3248 || (State & MODE_INSERT)) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
3249 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow |
7 | 3250 && button != MOUSE_DRAG |
3251 # ifdef FEAT_MOUSESHAPE | |
3252 && !drag_status_line | |
3253 && !drag_sep_line | |
3254 # endif | |
3255 ) | |
3256 checkfor = MOUSE_NONE; | |
3257 | |
3258 /* | |
3259 * Use modeless selection when holding CTRL and SHIFT pressed. | |
3260 */ | |
3261 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT)) | |
3262 checkfor = MOUSE_NONEF; | |
3263 | |
3264 /* | |
3265 * In Ex mode, always use modeless selection. | |
3266 */ | |
3267 if (exmode_active) | |
3268 checkfor = MOUSE_NONE; | |
3269 | |
3270 /* | |
3271 * If the mouse settings say to not use the mouse, use the modeless | |
3272 * selection. But if Visual is active, assume that only the Visual area | |
3273 * will be selected. | |
3274 * Exception: On the command line, both the selection is used and a mouse | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
3275 * key is sent. |
7 | 3276 */ |
3277 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND) | |
3278 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3279 // Don't do modeless selection in Visual mode. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3280 if (checkfor != MOUSE_NONEF && VIsual_active && (State & MODE_NORMAL)) |
7 | 3281 return; |
3282 | |
3283 /* | |
3284 * When 'mousemodel' is "popup", shift-left is translated to right. | |
3285 * But not when also using Ctrl. | |
3286 */ | |
3287 if (mouse_model_popup() && button == MOUSE_LEFT | |
3288 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL)) | |
3289 { | |
3290 button = MOUSE_RIGHT; | |
3291 modifiers &= ~ MOUSE_SHIFT; | |
3292 } | |
3293 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3294 // If the selection is done, allow the right button to extend it. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3295 // If the selection is cleared, allow the right button to start it |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3296 // from the cursor position. |
7 | 3297 if (button == MOUSE_RIGHT) |
3298 { | |
3299 if (clip_star.state == SELECT_CLEARED) | |
3300 { | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
3301 if (State & MODE_CMDLINE) |
7 | 3302 { |
3303 col = msg_col; | |
3304 row = msg_row; | |
3305 } | |
3306 else | |
3307 { | |
3308 col = curwin->w_wcol; | |
3309 row = curwin->w_wrow + W_WINROW(curwin); | |
3310 } | |
3311 clip_start_selection(col, row, FALSE); | |
3312 } | |
3313 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), | |
3314 repeated_click); | |
3315 did_clip = TRUE; | |
3316 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3317 // Allow the left button to start the selection |
2823 | 3318 else if (button == MOUSE_LEFT) |
7 | 3319 { |
3320 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click); | |
3321 did_clip = TRUE; | |
3322 } | |
3323 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3324 // Always allow pasting |
7 | 3325 if (button != MOUSE_MIDDLE) |
3326 { | |
3327 if (!mouse_has(checkfor) || button == MOUSE_RELEASE) | |
3328 return; | |
3329 if (checkfor != MOUSE_COMMAND) | |
3330 button = MOUSE_LEFT; | |
3331 } | |
3332 repeated_click = FALSE; | |
3333 } | |
3334 | |
3335 if (clip_star.state != SELECT_CLEARED && !did_clip) | |
3674 | 3336 clip_clear_selection(&clip_star); |
7 | 3337 #endif |
3338 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3339 // Don't put events in the input queue now. |
7 | 3340 if (hold_gui_events) |
3341 return; | |
3342 | |
3343 row = gui_xy2colrow(x, y, &col); | |
3344 | |
3345 /* | |
3346 * If we are dragging and the mouse hasn't moved far enough to be on a | |
3347 * different character, then don't send an event to vim. | |
3348 */ | |
3349 if (button == MOUSE_DRAG) | |
3350 { | |
3351 if (row == prev_row && col == prev_col) | |
3352 return; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3353 // Dragging above the window, set "row" to -1 to cause a scroll. |
7 | 3354 if (y < 0) |
3355 row = -1; | |
3356 } | |
3357 | |
3358 /* | |
3359 * If topline has changed (window scrolled) since the last click, reset | |
3360 * repeated_click, because we don't want starting Visual mode when | |
3361 * clicking on a different character in the text. | |
3362 */ | |
3363 if (curwin->w_topline != gui_prev_topline | |
3364 #ifdef FEAT_DIFF | |
3365 || curwin->w_topfill != gui_prev_topfill | |
3366 #endif | |
3367 ) | |
3368 repeated_click = FALSE; | |
3369 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3370 string[0] = CSI; // this sequence is recognized by check_termcode() |
7 | 3371 string[1] = KS_MOUSE; |
3372 string[2] = KE_FILLER; | |
3373 if (button != MOUSE_DRAG && button != MOUSE_RELEASE) | |
3374 { | |
3375 if (repeated_click) | |
3376 { | |
3377 /* | |
3378 * Handle multiple clicks. They only count if the mouse is still | |
3379 * pointing at the same character. | |
3380 */ | |
3381 if (button != prev_button || row != prev_row || col != prev_col) | |
3382 num_clicks = 1; | |
3383 else if (++num_clicks > 4) | |
3384 num_clicks = 1; | |
3385 } | |
3386 else | |
3387 num_clicks = 1; | |
3388 prev_button = button; | |
3389 gui_prev_topline = curwin->w_topline; | |
3390 #ifdef FEAT_DIFF | |
3391 gui_prev_topfill = curwin->w_topfill; | |
3392 #endif | |
3393 | |
3394 string[3] = (char_u)(button | 0x20); | |
3395 SET_NUM_MOUSE_CLICKS(string[3], num_clicks); | |
3396 } | |
3397 else | |
3398 string[3] = (char_u)button; | |
3399 | |
3400 string[3] |= modifiers; | |
3401 fill_mouse_coord(string + 4, col, row); | |
3402 add_to_input_buf(string, 8); | |
3403 | |
3404 if (row < 0) | |
3405 prev_row = 0; | |
3406 else | |
3407 prev_row = row; | |
3408 prev_col = col; | |
3409 | |
3410 /* | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
3411 * We need to make sure this is cleared since GTK doesn't tell us when |
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
3412 * the user is done dragging. |
7 | 3413 */ |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
3414 #if defined(FEAT_GUI_GTK) |
7 | 3415 gui.dragged_sb = SBAR_NONE; |
3416 #endif | |
3417 } | |
3418 | |
3419 /* | |
3420 * Convert x and y coordinate to column and row in text window. | |
3421 * Corrects for multi-byte character. | |
3422 * returns column in "*colp" and row as return value; | |
3423 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17407
diff
changeset
|
3424 static int |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3425 gui_xy2colrow(int x, int y, int *colp) |
7 | 3426 { |
3427 int col = check_col(X_2_COL(x)); | |
3428 int row = check_row(Y_2_ROW(y)); | |
3429 | |
3430 *colp = mb_fix_col(col, row); | |
3431 return row; | |
3432 } | |
3433 | |
3434 #if defined(FEAT_MENU) || defined(PROTO) | |
3435 /* | |
3436 * Callback function for when a menu entry has been selected. | |
3437 */ | |
3438 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3439 gui_menu_cb(vimmenu_T *menu) |
7 | 3440 { |
664 | 3441 char_u bytes[sizeof(long_u)]; |
7 | 3442 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3443 // Don't put events in the input queue now. |
7 | 3444 if (hold_gui_events) |
3445 return; | |
3446 | |
3447 bytes[0] = CSI; | |
3448 bytes[1] = KS_MENU; | |
3449 bytes[2] = KE_FILLER; | |
664 | 3450 add_to_input_buf(bytes, 3); |
3451 add_long_to_buf((long_u)menu, bytes); | |
3452 add_to_input_buf_csi(bytes, sizeof(long_u)); | |
7 | 3453 } |
3454 #endif | |
3455 | |
811 | 3456 static int prev_which_scrollbars[3]; |
669 | 3457 |
7 | 3458 /* |
3459 * Set which components are present. | |
685 | 3460 * If "oldval" is not NULL, "oldval" is the previous value, the new value is |
7 | 3461 * in p_go. |
3462 */ | |
3463 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3464 gui_init_which_components(char_u *oldval UNUSED) |
7 | 3465 { |
18078
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3466 #ifdef FEAT_GUI_DARKTHEME |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3467 static int prev_dark_theme = -1; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3468 int using_dark_theme = FALSE; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3469 #endif |
7 | 3470 #ifdef FEAT_MENU |
3471 static int prev_menu_is_active = -1; | |
3472 #endif | |
3473 #ifdef FEAT_TOOLBAR | |
3474 static int prev_toolbar = -1; | |
3475 int using_toolbar = FALSE; | |
3476 #endif | |
685 | 3477 #ifdef FEAT_GUI_TABLINE |
3478 int using_tabline; | |
3479 #endif | |
7 | 3480 #ifdef FEAT_FOOTER |
3481 static int prev_footer = -1; | |
3482 int using_footer = FALSE; | |
3483 #endif | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
3484 #if defined(FEAT_MENU) |
7 | 3485 static int prev_tearoff = -1; |
3486 int using_tearoff = FALSE; | |
3487 #endif | |
3488 | |
3489 char_u *p; | |
3490 int i; | |
3491 #ifdef FEAT_MENU | |
3492 int grey_old, grey_new; | |
3493 char_u *temp; | |
3494 #endif | |
3495 win_T *wp; | |
3496 int need_set_size; | |
3497 int fix_size; | |
3498 | |
3499 #ifdef FEAT_MENU | |
3500 if (oldval != NULL && gui.in_use) | |
3501 { | |
3502 /* | |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19181
diff
changeset
|
3503 * Check if the menus go from grey to non-grey or vice versa. |
7 | 3504 */ |
3505 grey_old = (vim_strchr(oldval, GO_GREY) != NULL); | |
3506 grey_new = (vim_strchr(p_go, GO_GREY) != NULL); | |
3507 if (grey_old != grey_new) | |
3508 { | |
3509 temp = p_go; | |
3510 p_go = oldval; | |
3511 gui_update_menus(MENU_ALL_MODES); | |
3512 p_go = temp; | |
3513 } | |
3514 } | |
3515 gui.menu_is_active = FALSE; | |
3516 #endif | |
3517 | |
3518 for (i = 0; i < 3; i++) | |
3519 gui.which_scrollbars[i] = FALSE; | |
3520 for (p = p_go; *p; p++) | |
3521 switch (*p) | |
3522 { | |
3523 case GO_LEFT: | |
3524 gui.which_scrollbars[SBAR_LEFT] = TRUE; | |
3525 break; | |
3526 case GO_RIGHT: | |
3527 gui.which_scrollbars[SBAR_RIGHT] = TRUE; | |
3528 break; | |
3529 case GO_VLEFT: | |
3530 if (win_hasvertsplit()) | |
3531 gui.which_scrollbars[SBAR_LEFT] = TRUE; | |
3532 break; | |
3533 case GO_VRIGHT: | |
3534 if (win_hasvertsplit()) | |
3535 gui.which_scrollbars[SBAR_RIGHT] = TRUE; | |
3536 break; | |
3537 case GO_BOT: | |
3538 gui.which_scrollbars[SBAR_BOTTOM] = TRUE; | |
3539 break; | |
18078
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3540 #ifdef FEAT_GUI_DARKTHEME |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3541 case GO_DARKTHEME: |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3542 using_dark_theme = TRUE; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3543 break; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3544 #endif |
7 | 3545 #ifdef FEAT_MENU |
3546 case GO_MENUS: | |
3547 gui.menu_is_active = TRUE; | |
3548 break; | |
3549 #endif | |
3550 case GO_GREY: | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3551 // make menu's have grey items, ignored here |
7 | 3552 break; |
3553 #ifdef FEAT_TOOLBAR | |
3554 case GO_TOOLBAR: | |
3555 using_toolbar = TRUE; | |
3556 break; | |
3557 #endif | |
3558 #ifdef FEAT_FOOTER | |
3559 case GO_FOOTER: | |
3560 using_footer = TRUE; | |
3561 break; | |
3562 #endif | |
3563 case GO_TEAROFF: | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
3564 #if defined(FEAT_MENU) |
7 | 3565 using_tearoff = TRUE; |
3566 #endif | |
3567 break; | |
3568 default: | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3569 // Ignore options that are not supported |
7 | 3570 break; |
3571 } | |
685 | 3572 |
7 | 3573 if (gui.in_use) |
3574 { | |
811 | 3575 need_set_size = 0; |
7 | 3576 fix_size = FALSE; |
685 | 3577 |
18078
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3578 #ifdef FEAT_GUI_DARKTHEME |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3579 if (using_dark_theme != prev_dark_theme) |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3580 { |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3581 gui_mch_set_dark_theme(using_dark_theme); |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3582 prev_dark_theme = using_dark_theme; |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3583 } |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3584 #endif |
5ae41d0ea397
patch 8.1.2034: dark them of GTK 3 not supported
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
3585 |
685 | 3586 #ifdef FEAT_GUI_TABLINE |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3587 // Update the GUI tab line, it may appear or disappear. This may |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3588 // cause the non-GUI tab line to disappear or appear. |
685 | 3589 using_tabline = gui_has_tabline(); |
706 | 3590 if (!gui_mch_showing_tabline() != !using_tabline) |
685 | 3591 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3592 // We don't want a resize event change "Rows" here, save and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3593 // restore it. Resizing is handled below. |
797 | 3594 i = Rows; |
685 | 3595 gui_update_tabline(); |
797 | 3596 Rows = i; |
1767 | 3597 need_set_size |= RESIZE_VERT; |
685 | 3598 if (using_tabline) |
3599 fix_size = TRUE; | |
3600 if (!gui_use_tabline()) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3601 redraw_tabline = TRUE; // may draw non-GUI tab line |
685 | 3602 } |
3603 #endif | |
3604 | |
7 | 3605 for (i = 0; i < 3; i++) |
3606 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3607 // The scrollbar needs to be updated when it is shown/unshown and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3608 // when switching tab pages. But the size only changes when it's |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3609 // shown/unshown. Thus we need two places to remember whether a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3610 // scrollbar is there or not. |
811 | 3611 if (gui.which_scrollbars[i] != prev_which_scrollbars[i] |
3612 || gui.which_scrollbars[i] | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
3613 != curtab->tp_prev_which_scrollbars[i]) |
7 | 3614 { |
3615 if (i == SBAR_BOTTOM) | |
3616 gui_mch_enable_scrollbar(&gui.bottom_sbar, | |
3617 gui.which_scrollbars[i]); | |
3618 else | |
3619 { | |
3620 FOR_ALL_WINDOWS(wp) | |
3621 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]); | |
3622 } | |
811 | 3623 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]) |
3624 { | |
3625 if (i == SBAR_BOTTOM) | |
1767 | 3626 need_set_size |= RESIZE_VERT; |
811 | 3627 else |
1767 | 3628 need_set_size |= RESIZE_HOR; |
811 | 3629 if (gui.which_scrollbars[i]) |
3630 fix_size = TRUE; | |
3631 } | |
7 | 3632 } |
811 | 3633 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i]; |
3634 prev_which_scrollbars[i] = gui.which_scrollbars[i]; | |
7 | 3635 } |
3636 | |
3637 #ifdef FEAT_MENU | |
3638 if (gui.menu_is_active != prev_menu_is_active) | |
3639 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3640 // We don't want a resize event change "Rows" here, save and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3641 // restore it. Resizing is handled below. |
7 | 3642 i = Rows; |
3643 gui_mch_enable_menu(gui.menu_is_active); | |
3644 Rows = i; | |
3645 prev_menu_is_active = gui.menu_is_active; | |
1767 | 3646 need_set_size |= RESIZE_VERT; |
7 | 3647 if (gui.menu_is_active) |
3648 fix_size = TRUE; | |
3649 } | |
3650 #endif | |
3651 | |
3652 #ifdef FEAT_TOOLBAR | |
3653 if (using_toolbar != prev_toolbar) | |
3654 { | |
3655 gui_mch_show_toolbar(using_toolbar); | |
3656 prev_toolbar = using_toolbar; | |
1767 | 3657 need_set_size |= RESIZE_VERT; |
7 | 3658 if (using_toolbar) |
3659 fix_size = TRUE; | |
3660 } | |
3661 #endif | |
3662 #ifdef FEAT_FOOTER | |
3663 if (using_footer != prev_footer) | |
3664 { | |
3665 gui_mch_enable_footer(using_footer); | |
3666 prev_footer = using_footer; | |
1767 | 3667 need_set_size |= RESIZE_VERT; |
7 | 3668 if (using_footer) |
3669 fix_size = TRUE; | |
3670 } | |
3671 #endif | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
3672 #if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF)) |
7 | 3673 if (using_tearoff != prev_tearoff) |
3674 { | |
3675 gui_mch_toggle_tearoffs(using_tearoff); | |
3676 prev_tearoff = using_tearoff; | |
3677 } | |
3678 #endif | |
1767 | 3679 if (need_set_size != 0) |
276 | 3680 { |
3681 #ifdef FEAT_GUI_GTK | |
1767 | 3682 long prev_Columns = Columns; |
3683 long prev_Rows = Rows; | |
276 | 3684 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3685 // Adjust the size of the window to make the text area keep the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3686 // same size and to avoid that part of our window is off-screen |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3687 // and a scrollbar can't be used, for example. |
811 | 3688 gui_set_shellsize(FALSE, fix_size, need_set_size); |
276 | 3689 |
3690 #ifdef FEAT_GUI_GTK | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3691 // GTK has the annoying habit of sending us resize events when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3692 // changing the window size ourselves. This mostly happens when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3693 // waiting for a character to arrive, quite unpredictably, and may |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3694 // change Columns and Rows when we don't want it. Wait for a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3695 // character here to avoid this effect. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3696 // If you remove this, please test this command for resizing |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3697 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q". |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3698 // Don't do this while starting up though. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3699 // Don't change Rows when adding menu/toolbar/tabline. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3700 // Don't change Columns when adding vertical toolbar. |
1767 | 3701 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR)) |
287 | 3702 (void)char_avail(); |
1767 | 3703 if ((need_set_size & RESIZE_VERT) == 0) |
3704 Rows = prev_Rows; | |
3705 if ((need_set_size & RESIZE_HOR) == 0) | |
3706 Columns = prev_Columns; | |
276 | 3707 #endif |
3708 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3709 // When the console tabline appears or disappears the window positions |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3710 // change. |
687 | 3711 if (firstwin->w_winrow != tabline_height()) |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3712 shell_new_rows(); // recompute window positions and heights |
7 | 3713 } |
3714 } | |
3715 | |
685 | 3716 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3717 /* | |
3718 * Return TRUE if the GUI is taking care of the tabline. | |
3719 * It may still be hidden if 'showtabline' is zero. | |
3720 */ | |
3721 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3722 gui_use_tabline(void) |
685 | 3723 { |
3724 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL; | |
3725 } | |
3726 | |
3727 /* | |
3728 * Return TRUE if the GUI is showing the tabline. | |
3729 * This uses 'showtabline'. | |
3730 */ | |
3731 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3732 gui_has_tabline(void) |
685 | 3733 { |
3734 if (!gui_use_tabline() | |
3735 || p_stal == 0 | |
3736 || (p_stal == 1 && first_tabpage->tp_next == NULL)) | |
3737 return FALSE; | |
3738 return TRUE; | |
3739 } | |
3740 | |
3741 /* | |
3742 * Update the tabline. | |
3743 * This may display/undisplay the tabline and update the labels. | |
3744 */ | |
3745 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3746 gui_update_tabline(void) |
685 | 3747 { |
3748 int showit = gui_has_tabline(); | |
797 | 3749 int shown = gui_mch_showing_tabline(); |
685 | 3750 |
3751 if (!gui.starting && starting == 0) | |
3752 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3753 // Updating the tabline uses direct GUI commands, flush |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3754 // outstanding instructions first. (esp. clear screen) |
848 | 3755 out_flush(); |
3756 | |
797 | 3757 if (!showit != !shown) |
3758 gui_mch_show_tabline(showit); | |
685 | 3759 if (showit != 0) |
3760 gui_mch_update_tabline(); | |
797 | 3761 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3762 // When the tabs change from hidden to shown or from shown to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3763 // hidden the size of the text area should remain the same. |
797 | 3764 if (!showit != !shown) |
811 | 3765 gui_set_shellsize(FALSE, showit, RESIZE_VERT); |
685 | 3766 } |
3767 } | |
3768 | |
3769 /* | |
839 | 3770 * Get the label or tooltip for tab page "tp" into NameBuff[]. |
685 | 3771 */ |
3772 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3773 get_tabline_label( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3774 tabpage_T *tp, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3775 int tooltip) // TRUE: get tooltip |
685 | 3776 { |
3777 int modified = FALSE; | |
3778 char_u buf[40]; | |
3779 int wincount; | |
3780 win_T *wp; | |
857 | 3781 char_u **opt; |
839 | 3782 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3783 // Use 'guitablabel' or 'guitabtooltip' if it's set. |
857 | 3784 opt = (tooltip ? &p_gtt : &p_gtl); |
3785 if (**opt != NUL) | |
685 | 3786 { |
687 | 3787 int use_sandbox = FALSE; |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18922
diff
changeset
|
3788 int called_emsg_before = called_emsg; |
687 | 3789 char_u res[MAXPATHL]; |
706 | 3790 tabpage_T *save_curtab; |
839 | 3791 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip" |
3792 : "guitablabel"); | |
687 | 3793 |
3794 printer_page_num = tabpage_index(tp); | |
3795 # ifdef FEAT_EVAL | |
3796 set_vim_var_nr(VV_LNUM, printer_page_num); | |
839 | 3797 use_sandbox = was_set_insecurely(opt_name, 0); |
687 | 3798 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3799 // It's almost as going to the tabpage, but without autocommands. |
706 | 3800 curtab->tp_firstwin = firstwin; |
3801 curtab->tp_lastwin = lastwin; | |
3802 curtab->tp_curwin = curwin; | |
3803 save_curtab = curtab; | |
3804 curtab = tp; | |
3805 topframe = curtab->tp_topframe; | |
3806 firstwin = curtab->tp_firstwin; | |
3807 lastwin = curtab->tp_lastwin; | |
3808 curwin = curtab->tp_curwin; | |
3809 curbuf = curwin->w_buffer; | |
3810 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3811 // Can't use NameBuff directly, build_stl_str_hl() uses it. |
857 | 3812 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox, |
706 | 3813 0, (int)Columns, NULL, NULL); |
687 | 3814 STRCPY(NameBuff, res); |
3815 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3816 // Back to the original curtab. |
706 | 3817 curtab = save_curtab; |
3818 topframe = curtab->tp_topframe; | |
3819 firstwin = curtab->tp_firstwin; | |
3820 lastwin = curtab->tp_lastwin; | |
3821 curwin = curtab->tp_curwin; | |
3822 curbuf = curwin->w_buffer; | |
3823 | |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18922
diff
changeset
|
3824 if (called_emsg > called_emsg_before) |
839 | 3825 set_string_option_direct(opt_name, -1, |
694 | 3826 (char_u *)"", OPT_FREE, SID_ERROR); |
687 | 3827 } |
857 | 3828 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3829 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3830 // use a default label. |
857 | 3831 if (**opt == NUL || *NameBuff == NUL) |
687 | 3832 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3833 // Get the buffer name into NameBuff[] and shorten it. |
687 | 3834 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer); |
839 | 3835 if (!tooltip) |
3836 shorten_dir(NameBuff); | |
687 | 3837 |
3838 wp = (tp == curtab) ? firstwin : tp->tp_firstwin; | |
3839 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount) | |
3840 if (bufIsChanged(wp->w_buffer)) | |
3841 modified = TRUE; | |
3842 if (modified || wincount > 1) | |
3843 { | |
3844 if (wincount > 1) | |
3845 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount); | |
3846 else | |
3847 buf[0] = NUL; | |
3848 if (modified) | |
3849 STRCAT(buf, "+"); | |
3850 STRCAT(buf, " "); | |
1620 | 3851 STRMOVE(NameBuff + STRLEN(buf), NameBuff); |
687 | 3852 mch_memmove(NameBuff, buf, STRLEN(buf)); |
3853 } | |
685 | 3854 } |
3855 } | |
3856 | |
691 | 3857 /* |
3858 * Send the event for clicking to select tab page "nr". | |
3859 * Returns TRUE if it was done, FALSE when skipped because we are already at | |
838 | 3860 * that tab page or the cmdline window is open. |
691 | 3861 */ |
3862 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3863 send_tabline_event(int nr) |
691 | 3864 { |
3865 char_u string[3]; | |
3866 | |
3867 if (nr == tabpage_index(curtab)) | |
3868 return FALSE; | |
844 | 3869 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3870 // Don't put events in the input queue now. |
844 | 3871 if (hold_gui_events |
838 | 3872 # ifdef FEAT_CMDWIN |
844 | 3873 || cmdwin_type != 0 |
3874 # endif | |
3875 ) | |
838 | 3876 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3877 // Set it back to the current tab page. |
838 | 3878 gui_mch_set_curtab(tabpage_index(curtab)); |
3879 return FALSE; | |
3880 } | |
844 | 3881 |
691 | 3882 string[0] = CSI; |
3883 string[1] = KS_TABLINE; | |
3884 string[2] = KE_FILLER; | |
3885 add_to_input_buf(string, 3); | |
3886 string[0] = nr; | |
3887 add_to_input_buf_csi(string, 1); | |
3888 return TRUE; | |
3889 } | |
3890 | |
824 | 3891 /* |
3892 * Send a tabline menu event | |
3893 */ | |
3894 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3895 send_tabline_menu_event(int tabidx, int event) |
824 | 3896 { |
3897 char_u string[3]; | |
3898 | |
15134
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15115
diff
changeset
|
3899 // Don't put events in the input queue now. |
844 | 3900 if (hold_gui_events) |
3901 return; | |
3902 | |
15134
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15115
diff
changeset
|
3903 // Cannot close the last tabpage. |
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15115
diff
changeset
|
3904 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL) |
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15115
diff
changeset
|
3905 return; |
f2972ff144ab
patch 8.1.0577: tabpage right-click menu never shows "Close tab"
Bram Moolenaar <Bram@vim.org>
parents:
15115
diff
changeset
|
3906 |
824 | 3907 string[0] = CSI; |
3908 string[1] = KS_TABMENU; | |
3909 string[2] = KE_FILLER; | |
3910 add_to_input_buf(string, 3); | |
3911 string[0] = tabidx; | |
3912 string[1] = (char_u)(long)event; | |
3913 add_to_input_buf_csi(string, 2); | |
3914 } | |
3915 | |
685 | 3916 #endif |
7 | 3917 |
3918 /* | |
3919 * Scrollbar stuff: | |
3920 */ | |
3921 | |
669 | 3922 /* |
3923 * Remove all scrollbars. Used before switching to another tab page. | |
3924 */ | |
3925 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3926 gui_remove_scrollbars(void) |
669 | 3927 { |
3928 int i; | |
3929 win_T *wp; | |
3930 | |
3931 for (i = 0; i < 3; i++) | |
3932 { | |
3933 if (i == SBAR_BOTTOM) | |
3934 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE); | |
3935 else | |
3936 { | |
3937 FOR_ALL_WINDOWS(wp) | |
3938 gui_do_scrollbar(wp, i, FALSE); | |
3939 } | |
788 | 3940 curtab->tp_prev_which_scrollbars[i] = -1; |
669 | 3941 } |
3942 } | |
3943 | |
7 | 3944 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3945 gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp) |
7 | 3946 { |
3947 static int sbar_ident = 0; | |
3948 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3949 sb->ident = sbar_ident++; // No check for too big, but would it happen? |
7 | 3950 sb->wp = wp; |
3951 sb->type = type; | |
3952 sb->value = 0; | |
3953 sb->size = 1; | |
3954 sb->max = 1; | |
3955 sb->top = 0; | |
3956 sb->height = 0; | |
3957 sb->width = 0; | |
3958 sb->status_height = 0; | |
3959 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT); | |
3960 } | |
3961 | |
3962 /* | |
3963 * Find the scrollbar with the given index. | |
3964 */ | |
3965 scrollbar_T * | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3966 gui_find_scrollbar(long ident) |
7 | 3967 { |
3968 win_T *wp; | |
3969 | |
3970 if (gui.bottom_sbar.ident == ident) | |
3971 return &gui.bottom_sbar; | |
3972 FOR_ALL_WINDOWS(wp) | |
3973 { | |
3974 if (wp->w_scrollbars[SBAR_LEFT].ident == ident) | |
3975 return &wp->w_scrollbars[SBAR_LEFT]; | |
3976 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident) | |
3977 return &wp->w_scrollbars[SBAR_RIGHT]; | |
3978 } | |
3979 return NULL; | |
3980 } | |
3981 | |
3982 /* | |
3983 * For most systems: Put a code in the input buffer for a dragged scrollbar. | |
3984 * | |
3985 * For Win32, Macintosh and GTK+ 2: | |
3986 * Scrollbars seem to grab focus and vim doesn't read the input queue until | |
3987 * you stop dragging the scrollbar. We get here each time the scrollbar is | |
3988 * dragged another pixel, but as far as the rest of vim goes, it thinks | |
3989 * we're just hanging in the call to DispatchMessage() in | |
3990 * process_message(). The DispatchMessage() call that hangs was passed a | |
3991 * mouse button click event in the scrollbar window. -- webb. | |
3992 * | |
3993 * Solution: Do the scrolling right here. But only when allowed. | |
3994 * Ignore the scrollbars while executing an external command or when there | |
3995 * are still characters to be processed. | |
3996 */ | |
3997 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
3998 gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging) |
7 | 3999 { |
4000 win_T *wp; | |
4001 int sb_num; | |
4002 #ifdef USE_ON_FLY_SCROLL | |
4003 colnr_T old_leftcol = curwin->w_leftcol; | |
4004 linenr_T old_topline = curwin->w_topline; | |
4005 # ifdef FEAT_DIFF | |
4006 int old_topfill = curwin->w_topfill; | |
4007 # endif | |
4008 #else | |
664 | 4009 char_u bytes[sizeof(long_u)]; |
7 | 4010 int byte_count; |
4011 #endif | |
4012 | |
4013 if (sb == NULL) | |
4014 return; | |
4015 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4016 // Don't put events in the input queue now. |
7 | 4017 if (hold_gui_events) |
4018 return; | |
4019 | |
4020 #ifdef FEAT_CMDWIN | |
4021 if (cmdwin_type != 0 && sb->wp != curwin) | |
4022 return; | |
4023 #endif | |
4024 | |
4025 if (still_dragging) | |
4026 { | |
4027 if (sb->wp == NULL) | |
4028 gui.dragged_sb = SBAR_BOTTOM; | |
4029 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT]) | |
4030 gui.dragged_sb = SBAR_LEFT; | |
4031 else | |
4032 gui.dragged_sb = SBAR_RIGHT; | |
4033 gui.dragged_wp = sb->wp; | |
4034 } | |
4035 else | |
4036 { | |
4037 gui.dragged_sb = SBAR_NONE; | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
4038 #ifdef FEAT_GUI_GTK |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4039 // Keep the "dragged_wp" value until after the scrolling, for when the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4040 // mouse button is released. GTK2 doesn't send the button-up event. |
7 | 4041 gui.dragged_wp = NULL; |
4042 #endif | |
4043 } | |
4044 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4045 // Vertical sbar info is kept in the first sbar (the left one) |
7 | 4046 if (sb->wp != NULL) |
4047 sb = &sb->wp->w_scrollbars[0]; | |
4048 | |
4049 /* | |
4050 * Check validity of value | |
4051 */ | |
4052 if (value < 0) | |
4053 value = 0; | |
4054 #ifdef SCROLL_PAST_END | |
4055 else if (value > sb->max) | |
4056 value = sb->max; | |
4057 #else | |
4058 if (value > sb->max - sb->size + 1) | |
4059 value = sb->max - sb->size + 1; | |
4060 #endif | |
4061 | |
4062 sb->value = value; | |
4063 | |
4064 #ifdef USE_ON_FLY_SCROLL | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4065 // When not allowed to do the scrolling right now, return. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4066 // This also checked input_available(), but that causes the first click in |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4067 // a scrollbar to be ignored when Vim doesn't have focus. |
1476 | 4068 if (dont_scroll) |
7 | 4069 return; |
4070 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4071 // Disallow scrolling the current window when the completion popup menu is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4072 // visible. |
973 | 4073 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible()) |
4074 return; | |
7 | 4075 |
4076 #ifdef FEAT_RIGHTLEFT | |
4077 if (sb->wp == NULL && curwin->w_p_rl) | |
4078 { | |
4079 value = sb->max + 1 - sb->size - value; | |
4080 if (value < 0) | |
4081 value = 0; | |
4082 } | |
4083 #endif | |
4084 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4085 if (sb->wp != NULL) // vertical scrollbar |
7 | 4086 { |
4087 sb_num = 0; | |
4088 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next) | |
4089 sb_num++; | |
4090 if (wp == NULL) | |
4091 return; | |
4092 | |
4093 #ifdef USE_ON_FLY_SCROLL | |
4094 current_scrollbar = sb_num; | |
4095 scrollbar_value = value; | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4096 if (State & MODE_NORMAL) |
7 | 4097 { |
4098 gui_do_scroll(); | |
4099 setcursor(); | |
4100 } | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4101 else if (State & MODE_INSERT) |
7 | 4102 { |
4103 ins_scroll(); | |
4104 setcursor(); | |
4105 } | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4106 else if (State & MODE_CMDLINE) |
7 | 4107 { |
4108 if (msg_scrolled == 0) | |
4109 { | |
4110 gui_do_scroll(); | |
4111 redrawcmdline(); | |
4112 } | |
4113 } | |
4114 # ifdef FEAT_FOLDING | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4115 // Value may have been changed for closed fold. |
7 | 4116 sb->value = sb->wp->w_topline - 1; |
4117 # endif | |
788 | 4118 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4119 // When dragging one scrollbar and there is another one at the other |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4120 // side move the thumb of that one too. |
788 | 4121 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT]) |
4122 gui_mch_set_scrollbar_thumb( | |
4123 &sb->wp->w_scrollbars[ | |
4124 sb == &sb->wp->w_scrollbars[SBAR_RIGHT] | |
4125 ? SBAR_LEFT : SBAR_RIGHT], | |
4126 sb->value, sb->size, sb->max); | |
4127 | |
7 | 4128 #else |
4129 bytes[0] = CSI; | |
4130 bytes[1] = KS_VER_SCROLLBAR; | |
4131 bytes[2] = KE_FILLER; | |
4132 bytes[3] = (char_u)sb_num; | |
4133 byte_count = 4; | |
4134 #endif | |
4135 } | |
4136 else | |
4137 { | |
4138 #ifdef USE_ON_FLY_SCROLL | |
4139 scrollbar_value = value; | |
4140 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4141 if (State & MODE_NORMAL) |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4142 gui_do_horiz_scroll(scrollbar_value, FALSE); |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4143 else if (State & MODE_INSERT) |
7 | 4144 ins_horscroll(); |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4145 else if (State & MODE_CMDLINE) |
7 | 4146 { |
540 | 4147 if (msg_scrolled == 0) |
7 | 4148 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4149 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 4150 redrawcmdline(); |
4151 } | |
4152 } | |
4153 if (old_leftcol != curwin->w_leftcol) | |
4154 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4155 updateWindow(curwin); // update window, status and cmdline |
7 | 4156 setcursor(); |
4157 } | |
4158 #else | |
4159 bytes[0] = CSI; | |
4160 bytes[1] = KS_HOR_SCROLLBAR; | |
4161 bytes[2] = KE_FILLER; | |
4162 byte_count = 3; | |
4163 #endif | |
4164 } | |
4165 | |
4166 #ifdef USE_ON_FLY_SCROLL | |
4167 /* | |
4168 * synchronize other windows, as necessary according to 'scrollbind' | |
4169 */ | |
4170 if (curwin->w_p_scb | |
4171 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol) | |
4172 || (sb->wp == curwin && (curwin->w_topline != old_topline | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4173 # ifdef FEAT_DIFF |
7 | 4174 || curwin->w_topfill != old_topfill |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
4175 # endif |
7 | 4176 )))) |
4177 { | |
4178 do_check_scrollbind(TRUE); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4179 // need to update the window right here |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4180 FOR_ALL_WINDOWS(wp) |
7 | 4181 if (wp->w_redr_type > 0) |
4182 updateWindow(wp); | |
4183 setcursor(); | |
4184 } | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
4185 out_flush_cursor(FALSE, TRUE); |
7 | 4186 #else |
664 | 4187 add_to_input_buf(bytes, byte_count); |
4188 add_long_to_buf((long_u)value, bytes); | |
4189 add_to_input_buf_csi(bytes, sizeof(long_u)); | |
7 | 4190 #endif |
4191 } | |
4192 | |
4193 /* | |
4194 * Scrollbar stuff: | |
4195 */ | |
4196 | |
1906 | 4197 /* |
4198 * Called when something in the window layout has changed. | |
4199 */ | |
4200 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4201 gui_may_update_scrollbars(void) |
1906 | 4202 { |
4203 if (gui.in_use && starting == 0) | |
4204 { | |
4205 out_flush(); | |
4206 gui_init_which_components(NULL); | |
4207 gui_update_scrollbars(TRUE); | |
4208 } | |
4209 need_mouse_correct = TRUE; | |
4210 } | |
4211 | |
7 | 4212 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4213 gui_update_scrollbars( |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4214 int force) // Force all scrollbars to get updated |
7 | 4215 { |
4216 win_T *wp; | |
4217 scrollbar_T *sb; | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4218 long val, size, max; // need 32 bits here |
7 | 4219 int which_sb; |
4220 int h, y; | |
4221 static win_T *prev_curwin = NULL; | |
4222 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4223 // Update the horizontal scrollbar |
7 | 4224 gui_update_horiz_scrollbar(force); |
4225 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
4226 #ifndef MSWIN |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4227 // Return straight away if there is neither a left nor right scrollbar. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4228 // On MS-Windows this is required anyway for scrollwheel messages. |
7 | 4229 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT]) |
4230 return; | |
4231 #endif | |
4232 | |
4233 /* | |
4234 * Don't want to update a scrollbar while we're dragging it. But if we | |
4235 * have both a left and right scrollbar, and we drag one of them, we still | |
4236 * need to update the other one. | |
4237 */ | |
674 | 4238 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT) |
4239 && gui.which_scrollbars[SBAR_LEFT] | |
4240 && gui.which_scrollbars[SBAR_RIGHT]) | |
7 | 4241 { |
4242 /* | |
4243 * If we have two scrollbars and one of them is being dragged, just | |
4244 * copy the scrollbar position from the dragged one to the other one. | |
4245 */ | |
4246 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb; | |
4247 if (gui.dragged_wp != NULL) | |
4248 gui_mch_set_scrollbar_thumb( | |
4249 &gui.dragged_wp->w_scrollbars[which_sb], | |
4250 gui.dragged_wp->w_scrollbars[0].value, | |
4251 gui.dragged_wp->w_scrollbars[0].size, | |
4252 gui.dragged_wp->w_scrollbars[0].max); | |
4253 } | |
4254 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4255 // avoid that moving components around generates events |
7 | 4256 ++hold_gui_events; |
4257 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
19824
diff
changeset
|
4258 FOR_ALL_WINDOWS(wp) |
7 | 4259 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4260 if (wp->w_buffer == NULL) // just in case |
7 | 4261 continue; |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4262 // Skip a scrollbar that is being dragged. |
674 | 4263 if (!force && (gui.dragged_sb == SBAR_LEFT |
4264 || gui.dragged_sb == SBAR_RIGHT) | |
4265 && gui.dragged_wp == wp) | |
4266 continue; | |
4267 | |
7 | 4268 #ifdef SCROLL_PAST_END |
4269 max = wp->w_buffer->b_ml.ml_line_count - 1; | |
4270 #else | |
4271 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2; | |
4272 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4273 if (max < 0) // empty buffer |
7 | 4274 max = 0; |
4275 val = wp->w_topline - 1; | |
4276 size = wp->w_height; | |
4277 #ifdef SCROLL_PAST_END | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4278 if (val > max) // just in case |
7 | 4279 val = max; |
4280 #else | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4281 if (size > max + 1) // just in case |
7 | 4282 size = max + 1; |
4283 if (val > max - size + 1) | |
4284 val = max - size + 1; | |
4285 #endif | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4286 if (val < 0) // minimal value is 0 |
7 | 4287 val = 0; |
4288 | |
4289 /* | |
4290 * Scrollbar at index 0 (the left one) contains all the information. | |
4291 * It would be the same info for left and right so we just store it for | |
4292 * one of them. | |
4293 */ | |
4294 sb = &wp->w_scrollbars[0]; | |
4295 | |
4296 /* | |
4297 * Note: no check for valid w_botline. If it's not valid the | |
4298 * scrollbars will be updated later anyway. | |
4299 */ | |
4300 if (size < 1 || wp->w_botline - 2 > max) | |
4301 { | |
4302 /* | |
4303 * This can happen during changing files. Just don't update the | |
4304 * scrollbar for now. | |
4305 */ | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4306 sb->height = 0; // Force update next time |
7 | 4307 if (gui.which_scrollbars[SBAR_LEFT]) |
4308 gui_do_scrollbar(wp, SBAR_LEFT, FALSE); | |
4309 if (gui.which_scrollbars[SBAR_RIGHT]) | |
4310 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE); | |
4311 continue; | |
4312 } | |
4313 if (force || sb->height != wp->w_height | |
4314 || sb->top != wp->w_winrow | |
4315 || sb->status_height != wp->w_status_height | |
4316 || sb->width != wp->w_width | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
4317 || prev_curwin != curwin) |
7 | 4318 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4319 // Height, width or position of scrollbar has changed. For |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4320 // vertical split: curwin changed. |
7 | 4321 sb->height = wp->w_height; |
4322 sb->top = wp->w_winrow; | |
4323 sb->status_height = wp->w_status_height; | |
4324 sb->width = wp->w_width; | |
4325 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4326 // Calculate height and position in pixels |
7 | 4327 h = (sb->height + sb->status_height) * gui.char_height; |
4328 y = sb->top * gui.char_height + gui.border_offset; | |
4329 #if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON) | |
4330 if (gui.menu_is_active) | |
4331 y += gui.menu_height; | |
4332 #endif | |
4333 | |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
4334 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) \ |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
4335 || defined(FEAT_GUI_HAIKU)) |
7 | 4336 if (vim_strchr(p_go, GO_TOOLBAR) != NULL) |
4337 y += gui.toolbar_height; | |
4338 #endif | |
4339 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
4340 #if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU) |
810 | 4341 if (gui_has_tabline()) |
843 | 4342 y += gui.tabline_height; |
810 | 4343 #endif |
4344 | |
7 | 4345 if (wp->w_winrow == 0) |
4346 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4347 // Height of top scrollbar includes width of top border |
7 | 4348 h += gui.border_offset; |
4349 y -= gui.border_offset; | |
4350 } | |
4351 if (gui.which_scrollbars[SBAR_LEFT]) | |
4352 { | |
4353 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT], | |
4354 gui.left_sbar_x, y, | |
4355 gui.scrollbar_width, h); | |
4356 gui_do_scrollbar(wp, SBAR_LEFT, TRUE); | |
4357 } | |
4358 if (gui.which_scrollbars[SBAR_RIGHT]) | |
4359 { | |
4360 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT], | |
4361 gui.right_sbar_x, y, | |
4362 gui.scrollbar_width, h); | |
4363 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE); | |
4364 } | |
4365 } | |
4366 | |
4367 if (force || sb->value != val || sb->size != size || sb->max != max) | |
4368 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4369 // Thumb of scrollbar has moved |
7 | 4370 sb->value = val; |
4371 sb->size = size; | |
4372 sb->max = max; | |
674 | 4373 if (gui.which_scrollbars[SBAR_LEFT] |
4374 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp)) | |
7 | 4375 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT], |
4376 val, size, max); | |
4377 if (gui.which_scrollbars[SBAR_RIGHT] | |
674 | 4378 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp)) |
7 | 4379 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT], |
4380 val, size, max); | |
4381 } | |
4382 } | |
26315
39f841f187d5
patch 8.2.3688: the window title is not updated when dragging the scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
26234
diff
changeset
|
4383 |
39f841f187d5
patch 8.2.3688: the window title is not updated when dragging the scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
26234
diff
changeset
|
4384 // update the title, it may show the scroll position |
39f841f187d5
patch 8.2.3688: the window title is not updated when dragging the scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
26234
diff
changeset
|
4385 maketitle(); |
39f841f187d5
patch 8.2.3688: the window title is not updated when dragging the scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
26234
diff
changeset
|
4386 |
7 | 4387 prev_curwin = curwin; |
4388 --hold_gui_events; | |
4389 } | |
4390 | |
4391 /* | |
4392 * Enable or disable a scrollbar. | |
4393 * Check for scrollbars for vertically split windows which are not enabled | |
4394 * sometimes. | |
4395 */ | |
4396 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4397 gui_do_scrollbar( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4398 win_T *wp, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4399 int which, // SBAR_LEFT or SBAR_RIGHT |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4400 int enable) // TRUE to enable scrollbar |
7 | 4401 { |
4402 int midcol = curwin->w_wincol + curwin->w_width / 2; | |
4403 int has_midcol = (wp->w_wincol <= midcol | |
4404 && wp->w_wincol + wp->w_width >= midcol); | |
4405 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4406 // Only enable scrollbars that contain the middle column of the current |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4407 // window. |
7 | 4408 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT]) |
4409 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4410 // Scrollbars only on one side. Don't enable scrollbars that don't |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4411 // contain the middle column of the current window. |
7 | 4412 if (!has_midcol) |
4413 enable = FALSE; | |
4414 } | |
4415 else | |
4416 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4417 // Scrollbars on both sides. Don't enable scrollbars that neither |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4418 // contain the middle column of the current window nor are on the far |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4419 // side. |
7 | 4420 if (midcol > Columns / 2) |
4421 { | |
4422 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol) | |
4423 enable = FALSE; | |
4424 } | |
4425 else | |
4426 { | |
4427 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns | |
4428 : !has_midcol) | |
4429 enable = FALSE; | |
4430 } | |
4431 } | |
4432 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable); | |
4433 } | |
4434 | |
4435 /* | |
4436 * Scroll a window according to the values set in the globals current_scrollbar | |
4437 * and scrollbar_value. Return TRUE if the cursor in the current window moved | |
4438 * or FALSE otherwise. | |
4439 */ | |
4440 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4441 gui_do_scroll(void) |
7 | 4442 { |
4443 win_T *wp, *save_wp; | |
4444 int i; | |
4445 long nlines; | |
4446 pos_T old_cursor; | |
4447 linenr_T old_topline; | |
4448 #ifdef FEAT_DIFF | |
4449 int old_topfill; | |
4450 #endif | |
4451 | |
4452 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++) | |
4453 if (wp == NULL) | |
4454 break; | |
4455 if (wp == NULL) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4456 // Couldn't find window |
7 | 4457 return FALSE; |
4458 | |
4459 /* | |
4460 * Compute number of lines to scroll. If zero, nothing to do. | |
4461 */ | |
4462 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline; | |
4463 if (nlines == 0) | |
4464 return FALSE; | |
4465 | |
4466 save_wp = curwin; | |
4467 old_topline = wp->w_topline; | |
4468 #ifdef FEAT_DIFF | |
4469 old_topfill = wp->w_topfill; | |
4470 #endif | |
4471 old_cursor = wp->w_cursor; | |
4472 curwin = wp; | |
4473 curbuf = wp->w_buffer; | |
4474 if (nlines < 0) | |
4475 scrolldown(-nlines, gui.dragged_wp == NULL); | |
4476 else | |
4477 scrollup(nlines, gui.dragged_wp == NULL); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4478 // Reset dragged_wp after using it. "dragged_sb" will have been reset for |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4479 // the mouse-up event already, but we still want it to behave like when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4480 // dragging. But not the next click in an arrow. |
7 | 4481 if (gui.dragged_sb == SBAR_NONE) |
4482 gui.dragged_wp = NULL; | |
4483 | |
4484 if (old_topline != wp->w_topline | |
4485 #ifdef FEAT_DIFF | |
4486 || old_topfill != wp->w_topfill | |
4487 #endif | |
4488 ) | |
4489 { | |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
4490 if (get_scrolloff_value() != 0) |
7 | 4491 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4492 cursor_correct(); // fix window for 'so' |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4493 update_topline(); // avoid up/down jump |
7 | 4494 } |
4495 if (old_cursor.lnum != wp->w_cursor.lnum) | |
4496 coladvance(wp->w_curswant); | |
4497 wp->w_scbind_pos = wp->w_topline; | |
4498 } | |
4499 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4500 // Make sure wp->w_leftcol and wp->w_skipcol are correct. |
519 | 4501 validate_cursor(); |
4502 | |
7 | 4503 curwin = save_wp; |
4504 curbuf = save_wp->w_buffer; | |
4505 | |
4506 /* | |
4507 * Don't call updateWindow() when nothing has changed (it will overwrite | |
4508 * the status line!). | |
4509 */ | |
4510 if (old_topline != wp->w_topline | |
519 | 4511 || wp->w_redr_type != 0 |
7 | 4512 #ifdef FEAT_DIFF |
4513 || old_topfill != wp->w_topfill | |
4514 #endif | |
4515 ) | |
4516 { | |
1434 | 4517 int type = VALID; |
4518 | |
4519 if (pum_visible()) | |
4520 { | |
4521 type = NOT_VALID; | |
4522 wp->w_lines_valid = 0; | |
4523 } | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
4524 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4525 // Don't set must_redraw here, it may cause the popup menu to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4526 // disappear when losing focus after a scrollbar drag. |
1434 | 4527 if (wp->w_redr_type < type) |
4528 wp->w_redr_type = type; | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
4529 mch_disable_flush(); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4530 updateWindow(wp); // update window, status line, and cmdline |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
4531 mch_enable_flush(); |
7 | 4532 } |
4533 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4534 // May need to redraw the popup menu. |
973 | 4535 if (pum_visible()) |
4536 pum_redraw(); | |
4537 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10819
diff
changeset
|
4538 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor)); |
7 | 4539 } |
4540 | |
4541 | |
4542 /* | |
4543 * Horizontal scrollbar stuff: | |
4544 */ | |
4545 | |
4546 /* | |
4547 * Return length of line "lnum" for horizontal scrolling. | |
4548 */ | |
4549 static colnr_T | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4550 scroll_line_len(linenr_T lnum) |
7 | 4551 { |
4552 char_u *p; | |
4553 colnr_T col; | |
4554 int w; | |
4555 | |
4556 p = ml_get(lnum); | |
4557 col = 0; | |
4558 if (*p != NUL) | |
4559 for (;;) | |
4560 { | |
4561 w = chartabsize(p, col); | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4562 MB_PTR_ADV(p); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4563 if (*p == NUL) // don't count the last character |
7 | 4564 break; |
4565 col += w; | |
4566 } | |
4567 return col; | |
4568 } | |
4569 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4570 // Remember which line is currently the longest, so that we don't have to |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4571 // search for it when scrolling horizontally. |
7 | 4572 static linenr_T longest_lnum = 0; |
4573 | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4574 /* |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4575 * Find longest visible line number. If this is not possible (or not desired, |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4576 * by setting 'h' in "guioptions") then the current line number is returned. |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4577 */ |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4578 static linenr_T |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4579 gui_find_longest_lnum(void) |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4580 { |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4581 linenr_T ret = 0; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4582 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4583 // Calculate maximum for horizontal scrollbar. Check for reasonable |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4584 // line numbers, topline and botline can be invalid when displaying is |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4585 // postponed. |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4586 if (vim_strchr(p_go, GO_HORSCROLL) == NULL |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4587 && curwin->w_topline <= curwin->w_cursor.lnum |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4588 && curwin->w_botline > curwin->w_cursor.lnum |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4589 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4590 { |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4591 linenr_T lnum; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4592 colnr_T n; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4593 long max = 0; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4594 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4595 // Use maximum of all visible lines. Remember the lnum of the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4596 // longest line, closest to the cursor line. Used when scrolling |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4597 // below. |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4598 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4599 { |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4600 n = scroll_line_len(lnum); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4601 if (n > (colnr_T)max) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4602 { |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4603 max = n; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4604 ret = lnum; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4605 } |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4606 else if (n == (colnr_T)max |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4607 && abs((int)(lnum - curwin->w_cursor.lnum)) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4608 < abs((int)(ret - curwin->w_cursor.lnum))) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4609 ret = lnum; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4610 } |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4611 } |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4612 else |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4613 // Use cursor line only. |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4614 ret = curwin->w_cursor.lnum; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4615 |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4616 return ret; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4617 } |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4618 |
7 | 4619 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4620 gui_update_horiz_scrollbar(int force) |
7 | 4621 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4622 long value, size, max; // need 32 bit ints here |
7 | 4623 |
4624 if (!gui.which_scrollbars[SBAR_BOTTOM]) | |
4625 return; | |
4626 | |
4627 if (!force && gui.dragged_sb == SBAR_BOTTOM) | |
4628 return; | |
4629 | |
4630 if (!force && curwin->w_p_wrap && gui.prev_wrap) | |
4631 return; | |
4632 | |
4633 /* | |
4634 * It is possible for the cursor to be invalid if we're in the middle of | |
4635 * something (like changing files). If so, don't do anything for now. | |
4636 */ | |
4637 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
4638 { | |
4639 gui.bottom_sbar.value = -1; | |
4640 return; | |
4641 } | |
4642 | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4643 size = curwin->w_width; |
7 | 4644 if (curwin->w_p_wrap) |
4645 { | |
4646 value = 0; | |
4647 #ifdef SCROLL_PAST_END | |
4648 max = 0; | |
4649 #else | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4650 max = curwin->w_width - 1; |
7 | 4651 #endif |
4652 } | |
4653 else | |
4654 { | |
4655 value = curwin->w_leftcol; | |
4656 | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4657 longest_lnum = gui_find_longest_lnum(); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4658 max = scroll_line_len(longest_lnum); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4659 |
7 | 4660 if (virtual_active()) |
4661 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4662 // May move the cursor even further to the right. |
7 | 4663 if (curwin->w_virtcol >= (colnr_T)max) |
4664 max = curwin->w_virtcol; | |
4665 } | |
4666 | |
4667 #ifndef SCROLL_PAST_END | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
4668 max += curwin->w_width - 1; |
7 | 4669 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4670 // The line number isn't scrolled, thus there is less space when |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4671 // 'number' or 'relativenumber' is set (also for 'foldcolumn'). |
7 | 4672 size -= curwin_col_off(); |
4673 #ifndef SCROLL_PAST_END | |
4674 max -= curwin_col_off(); | |
4675 #endif | |
4676 } | |
4677 | |
4678 #ifndef SCROLL_PAST_END | |
4679 if (value > max - size + 1) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4680 value = max - size + 1; // limit the value to allowable range |
7 | 4681 #endif |
4682 | |
4683 #ifdef FEAT_RIGHTLEFT | |
4684 if (curwin->w_p_rl) | |
4685 { | |
4686 value = max + 1 - size - value; | |
4687 if (value < 0) | |
4688 { | |
4689 size += value; | |
4690 value = 0; | |
4691 } | |
4692 } | |
4693 #endif | |
4694 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size | |
4695 && max == gui.bottom_sbar.max) | |
4696 return; | |
4697 | |
4698 gui.bottom_sbar.value = value; | |
4699 gui.bottom_sbar.size = size; | |
4700 gui.bottom_sbar.max = max; | |
4701 gui.prev_wrap = curwin->w_p_wrap; | |
4702 | |
4703 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max); | |
4704 } | |
4705 | |
4706 /* | |
4707 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise. | |
4708 */ | |
4709 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4710 gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum) |
7 | 4711 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4712 // no wrapping, no scrolling |
7 | 4713 if (curwin->w_p_wrap) |
4714 return FALSE; | |
4715 | |
2416
1a9c16dd76d4
Fix compiler warnings on 64 bit systems.
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
4716 if (curwin->w_leftcol == (colnr_T)leftcol) |
7 | 4717 return FALSE; |
4718 | |
2416
1a9c16dd76d4
Fix compiler warnings on 64 bit systems.
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
4719 curwin->w_leftcol = (colnr_T)leftcol; |
7 | 4720 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4721 // When the line of the cursor is too short, move the cursor to the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4722 // longest visible line. |
7 | 4723 if (vim_strchr(p_go, GO_HORSCROLL) == NULL |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4724 && !virtual_active() |
2416
1a9c16dd76d4
Fix compiler warnings on 64 bit systems.
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
4725 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum)) |
7 | 4726 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4727 if (compute_longest_lnum) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4728 { |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4729 curwin->w_cursor.lnum = gui_find_longest_lnum(); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4730 curwin->w_cursor.col = 0; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4731 } |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4732 // Do a sanity check on "longest_lnum", just in case. |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4733 else if (longest_lnum >= curwin->w_topline |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4734 && longest_lnum < curwin->w_botline) |
7 | 4735 { |
4736 curwin->w_cursor.lnum = longest_lnum; | |
4737 curwin->w_cursor.col = 0; | |
4738 } | |
4739 } | |
4740 | |
4741 return leftcol_changed(); | |
4742 } | |
4743 | |
4744 /* | |
4745 * Check that none of the colors are the same as the background color | |
4746 */ | |
4747 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4748 gui_check_colors(void) |
7 | 4749 { |
4750 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR) | |
4751 { | |
4752 gui_set_bg_color((char_u *)"White"); | |
4753 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR) | |
4754 gui_set_fg_color((char_u *)"Black"); | |
4755 } | |
4756 } | |
4757 | |
203 | 4758 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4759 gui_set_fg_color(char_u *name) |
7 | 4760 { |
4761 gui.norm_pixel = gui_get_color(name); | |
4762 hl_set_fg_color_name(vim_strsave(name)); | |
4763 } | |
4764 | |
203 | 4765 static void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4766 gui_set_bg_color(char_u *name) |
7 | 4767 { |
4768 gui.back_pixel = gui_get_color(name); | |
4769 hl_set_bg_color_name(vim_strsave(name)); | |
4770 } | |
4771 | |
4772 /* | |
4773 * Allocate a color by name. | |
4774 * Returns INVALCOLOR and gives an error message when failed. | |
4775 */ | |
4776 guicolor_T | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4777 gui_get_color(char_u *name) |
7 | 4778 { |
4779 guicolor_T t; | |
4780 | |
4781 if (*name == NUL) | |
4782 return INVALCOLOR; | |
4783 t = gui_mch_get_color(name); | |
11 | 4784 |
7 | 4785 if (t == INVALCOLOR |
574 | 4786 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
7 | 4787 && gui.in_use |
4788 #endif | |
4789 ) | |
26057
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
25982
diff
changeset
|
4790 semsg(_(e_cannot_allocate_color_str), name); |
7 | 4791 return t; |
4792 } | |
4793 | |
4794 /* | |
4795 * Return the grey value of a color (range 0-255). | |
4796 */ | |
4797 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4798 gui_get_lightness(guicolor_T pixel) |
7 | 4799 { |
9939
ccb6461b82df
commit https://github.com/vim/vim/commit/1b58cdd160c2e0ada0f638679a2aa27e4665fc48
Christian Brabandt <cb@256bit.org>
parents:
9848
diff
changeset
|
4800 long_u rgb = (long_u)gui_mch_get_rgb(pixel); |
7 | 4801 |
835 | 4802 return (int)( (((rgb >> 16) & 0xff) * 299) |
856 | 4803 + (((rgb >> 8) & 0xff) * 587) |
4804 + ((rgb & 0xff) * 114)) / 1000; | |
7 | 4805 } |
4806 | |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4807 char_u * |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4808 gui_bg_default(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4809 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4810 if (gui_get_lightness(gui.back_pixel) < 127) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4811 return (char_u *)"dark"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4812 return (char_u *)"light"; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4813 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4814 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4815 /* |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4816 * Option initializations that can only be done after opening the GUI window. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4817 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4818 void |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4819 init_gui_options(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4820 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4821 // Set the 'background' option according to the lightness of the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4822 // background color, unless the user has set it already. |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4823 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4824 { |
28457
4dcccb2673fe
patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
28429
diff
changeset
|
4825 set_option_value_give_err((char_u *)"bg", 0L, gui_bg_default(), 0); |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4826 highlight_changed(); |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4827 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4828 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
4829 |
7 | 4830 #if defined(FEAT_GUI_X11) || defined(PROTO) |
4831 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4832 gui_new_scrollbar_colors(void) |
7 | 4833 { |
4834 win_T *wp; | |
4835 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4836 // Nothing to do if GUI hasn't started yet. |
7 | 4837 if (!gui.in_use) |
4838 return; | |
4839 | |
4840 FOR_ALL_WINDOWS(wp) | |
4841 { | |
4842 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT])); | |
4843 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT])); | |
4844 } | |
4845 gui_mch_set_scrollbar_colors(&gui.bottom_sbar); | |
4846 } | |
4847 #endif | |
4848 | |
4849 /* | |
4850 * Call this when focus has changed. | |
4851 */ | |
4852 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4853 gui_focus_change(int in_focus) |
7 | 4854 { |
4855 /* | |
4856 * Skip this code to avoid drawing the cursor when debugging and switching | |
4857 * between the debugger window and gvim. | |
4858 */ | |
4859 #if 1 | |
4860 gui.in_focus = in_focus; | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
4861 out_flush_cursor(TRUE, FALSE); |
7 | 4862 |
4863 # ifdef FEAT_XIM | |
4864 xim_set_focus(in_focus); | |
4865 # endif | |
4866 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4867 // Put events in the input queue only when allowed. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4868 // ui_focus_change() isn't called directly, because it invokes |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4869 // autocommands and that must not happen asynchronously. |
1380 | 4870 if (!hold_gui_events) |
4871 { | |
4872 char_u bytes[3]; | |
4873 | |
4874 bytes[0] = CSI; | |
4875 bytes[1] = KS_EXTRA; | |
4876 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST; | |
4877 add_to_input_buf(bytes, 3); | |
4878 } | |
7 | 4879 #endif |
4880 } | |
4881 | |
4882 /* | |
17306
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4883 * When mouse moved: apply 'mousefocus'. |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4884 * Also updates the mouse pointer shape. |
7 | 4885 */ |
17306
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4886 static void |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4887 gui_mouse_focus(int x, int y) |
7 | 4888 { |
4889 win_T *wp; | |
894 | 4890 char_u st[8]; |
7 | 4891 |
4892 #ifdef FEAT_MOUSESHAPE | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4893 // Get window pointer, and update mouse shape as well. |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4894 wp = xy2win(x, y, IGNORE_POPUP); |
7 | 4895 #endif |
4896 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4897 // Only handle this when 'mousefocus' set and ... |
7 | 4898 if (p_mousef |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4899 && !hold_gui_events // not holding events |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4900 && (State & (MODE_NORMAL | MODE_INSERT))// Normal/Visual/Insert mode |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
4901 && State != MODE_HITRETURN // but not hit-return prompt |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4902 && msg_scrolled == 0 // no scrolled message |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4903 && !need_mouse_correct // not moving the pointer |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4904 && gui.in_focus) // gvim in focus |
7 | 4905 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4906 // Don't move the mouse when it's left or right of the Vim window |
7 | 4907 if (x < 0 || x > Columns * gui.char_width) |
4908 return; | |
4909 #ifndef FEAT_MOUSESHAPE | |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4910 wp = xy2win(x, y, IGNORE_POPUP); |
7 | 4911 #endif |
4912 if (wp == curwin || wp == NULL) | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4913 return; // still in the same old window, or none at all |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4914 |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4915 // Ignore position in the tab pages line. |
859 | 4916 if (Y_2_ROW(y) < tabline_height()) |
4917 return; | |
4918 | |
7 | 4919 /* |
4920 * format a mouse click on status line input | |
4921 * ala gui_send_mouse_event(0, x, y, 0, 0); | |
261 | 4922 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will |
4923 * generate a K_LEFTMOUSE_NM key code. | |
7 | 4924 */ |
4925 if (finish_op) | |
4926 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4927 // abort the current operator first |
7 | 4928 st[0] = ESC; |
4929 add_to_input_buf(st, 1); | |
4930 } | |
4931 st[0] = CSI; | |
4932 st[1] = KS_MOUSE; | |
4933 st[2] = KE_FILLER; | |
4934 st[3] = (char_u)MOUSE_LEFT; | |
4935 fill_mouse_coord(st + 4, | |
261 | 4936 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF, |
7 | 4937 wp->w_height + W_WINROW(wp)); |
4938 | |
4939 add_to_input_buf(st, 8); | |
4940 st[3] = (char_u)MOUSE_RELEASE; | |
4941 add_to_input_buf(st, 8); | |
4942 #ifdef FEAT_GUI_GTK | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4943 // Need to wake up the main loop |
7 | 4944 if (gtk_main_level() > 0) |
4945 gtk_main_quit(); | |
4946 #endif | |
4947 } | |
4948 } | |
4949 | |
4950 /* | |
17306
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4951 * Called when the mouse moved (but not when dragging). |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4952 */ |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4953 void |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4954 gui_mouse_moved(int x, int y) |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4955 { |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4956 // Ignore this while still starting up. |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4957 if (!gui.in_use || gui.starting) |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4958 return; |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4959 |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4960 // apply 'mousefocus' and pointer shape |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4961 gui_mouse_focus(x, y); |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4962 |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4963 if (p_mousemev |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
4964 #ifdef FEAT_PROP_POPUP |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4965 || popup_uses_mouse_move |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4966 #endif |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4967 ) |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4968 // Generate a mouse-moved event. For a <MouseMove> mapping. Or so the |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
28187
diff
changeset
|
4969 // popup can perhaps be closed, just like in the terminal. |
24850
f8906bd5b277
patch 8.2.2963: GUI: mouse move may start Visual mode with a popup visible
Bram Moolenaar <Bram@vim.org>
parents:
24719
diff
changeset
|
4970 gui_send_mouse_event(MOUSE_MOVE, x, y, FALSE, 0); |
17306
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4971 } |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4972 |
16d5e91c5e5b
patch 8.1.1652: GUI: popup window doesn't close on mouse movement
Bram Moolenaar <Bram@vim.org>
parents:
17288
diff
changeset
|
4973 /* |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4974 * Get the window where the mouse pointer is on. |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4975 * Returns NULL if not found. |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4976 */ |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4977 win_T * |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4978 gui_mouse_window(mouse_find_T popup) |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4979 { |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4980 int x, y; |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4981 |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4982 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP))) |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4983 return NULL; |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4984 gui_mch_getmouse(&x, &y); |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4985 |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4986 // Only use the mouse when it's on the Vim window |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4987 if (x >= 0 && x <= Columns * gui.char_width |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4988 && y >= 0 && Y_2_ROW(y) >= tabline_height()) |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4989 return xy2win(x, y, popup); |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4990 return NULL; |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4991 } |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4992 |
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
4993 /* |
7 | 4994 * Called when mouse should be moved to window with focus. |
4995 */ | |
4996 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4997 gui_mouse_correct(void) |
7 | 4998 { |
4999 win_T *wp = NULL; | |
5000 | |
5001 need_mouse_correct = FALSE; | |
87 | 5002 |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
5003 wp = gui_mouse_window(IGNORE_POPUP); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5004 if (wp != curwin && wp != NULL) // If in other than current window |
7 | 5005 { |
87 | 5006 validate_cline_row(); |
5007 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3, | |
5008 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height | |
7 | 5009 + (gui.char_height) / 2); |
5010 } | |
5011 } | |
5012 | |
5013 /* | |
12136
60cf03e59402
patch 8.0.0948: crash if timer closes window while dragging status line
Christian Brabandt <cb@256bit.org>
parents:
12082
diff
changeset
|
5014 * Find window where the mouse pointer "x" / "y" coordinate is in. |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
5015 * As a side effect update the shape of the mouse pointer. |
7 | 5016 */ |
5017 static win_T * | |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
5018 xy2win(int x, int y, mouse_find_T popup) |
7 | 5019 { |
5020 int row; | |
5021 int col; | |
5022 win_T *wp; | |
5023 | |
5024 row = Y_2_ROW(y); | |
5025 col = X_2_COL(x); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5026 if (row < 0 || col < 0) // before first window |
7 | 5027 return NULL; |
18520
6067fbb46625
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
5028 wp = mouse_find_win(&row, &col, popup); |
12136
60cf03e59402
patch 8.0.0948: crash if timer closes window while dragging status line
Christian Brabandt <cb@256bit.org>
parents:
12082
diff
changeset
|
5029 if (wp == NULL) |
60cf03e59402
patch 8.0.0948: crash if timer closes window while dragging status line
Christian Brabandt <cb@256bit.org>
parents:
12082
diff
changeset
|
5030 return NULL; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
5031 #ifdef FEAT_MOUSESHAPE |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
5032 if (State == MODE_HITRETURN || State == MODE_ASKMORE) |
7 | 5033 { |
5034 if (Y_2_ROW(y) >= msg_row) | |
5035 update_mouseshape(SHAPE_IDX_MOREL); | |
5036 else | |
5037 update_mouseshape(SHAPE_IDX_MORE); | |
5038 } | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5039 else if (row > wp->w_height) // below status line |
7 | 5040 update_mouseshape(SHAPE_IDX_CLINE); |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
5041 else if (!(State & MODE_CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width |
819 | 5042 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0) |
7 | 5043 update_mouseshape(SHAPE_IDX_VSEP); |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
5044 else if (!(State & MODE_CMDLINE) && wp->w_status_height > 0 |
819 | 5045 && row == wp->w_height && msg_scrolled == 0) |
7 | 5046 update_mouseshape(SHAPE_IDX_STATUS); |
5047 else | |
5048 update_mouseshape(-2); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12457
diff
changeset
|
5049 #endif |
7 | 5050 return wp; |
5051 } | |
5052 | |
5053 /* | |
5054 * ":gui" and ":gvim": Change from the terminal version to the GUI version. | |
5055 * File names may be given to redefine the args list. | |
5056 */ | |
5057 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5058 ex_gui(exarg_T *eap) |
7 | 5059 { |
5060 char_u *arg = eap->arg; | |
5061 | |
5062 /* | |
5063 * Check for "-f" argument: foreground, don't fork. | |
5064 * Also don't fork when started with "gvim -f". | |
5065 * Do fork when using "gui -b". | |
5066 */ | |
5067 if (arg[0] == '-' | |
5068 && (arg[1] == 'f' || arg[1] == 'b') | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5069 && (arg[2] == NUL || VIM_ISWHITE(arg[2]))) |
7 | 5070 { |
5071 gui.dofork = (arg[1] == 'b'); | |
5072 eap->arg = skipwhite(eap->arg + 2); | |
5073 } | |
5074 if (!gui.in_use) | |
5075 { | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
5076 #if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD) |
18989
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5077 if (!gui.starting) |
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5078 { |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25006
diff
changeset
|
5079 emsg(_(e_gui_cannot_be_used_not_enabled_at_compile_time)); |
18989
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5080 return; |
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5081 } |
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5082 #endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5083 // Clear the command. Needed for when forking+exiting, to avoid part |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5084 // of the argument ending up after the shell prompt. |
7 | 5085 msg_clr_eos_force(); |
18989
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5086 #ifdef GUI_MAY_SPAWN |
20113
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19997
diff
changeset
|
5087 if (!ends_excmd2(eap->cmd, eap->arg)) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
5088 gui_start(eap->arg); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
5089 else |
18989
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5090 #endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16184
diff
changeset
|
5091 gui_start(NULL); |
18989
7abe2444d1e1
patch 8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
5092 #ifdef FEAT_JOB_CHANNEL |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
5093 channel_gui_register_all(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2208
diff
changeset
|
5094 #endif |
7 | 5095 } |
20113
2c23053c654a
patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents:
19997
diff
changeset
|
5096 if (!ends_excmd2(eap->cmd, eap->arg)) |
7 | 5097 ex_next(eap); |
5098 } | |
5099 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
5100 #if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \ |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
5101 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \ |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
5102 || defined(FEAT_GUI_HAIKU)) \ |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15713
diff
changeset
|
5103 && defined(FEAT_TOOLBAR)) || defined(PROTO) |
7 | 5104 /* |
28303
9849df834f1d
patch 8.2.4677: the Athena GUI support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
5105 * This is shared between Haiku, Motif, and GTK. |
7 | 5106 */ |
5107 | |
5108 /* | |
5109 * Callback function for do_in_runtimepath(). | |
5110 */ | |
5111 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5112 gfp_setname(char_u *fname, void *cookie) |
7 | 5113 { |
236 | 5114 char_u *gfp_buffer = cookie; |
5115 | |
7 | 5116 if (STRLEN(fname) >= MAXPATHL) |
5117 *gfp_buffer = NUL; | |
5118 else | |
5119 STRCPY(gfp_buffer, fname); | |
5120 } | |
5121 | |
5122 /* | |
5123 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'. | |
5124 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result. | |
5125 */ | |
5126 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5127 gui_find_bitmap(char_u *name, char_u *buffer, char *ext) |
7 | 5128 { |
5129 if (STRLEN(name) > MAXPATHL - 14) | |
5130 return FAIL; | |
273 | 5131 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext); |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5132 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL |
236 | 5133 || *buffer == NUL) |
7 | 5134 return FAIL; |
5135 return OK; | |
5136 } | |
5137 | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
5138 # if !defined(FEAT_GUI_GTK) || defined(PROTO) |
7 | 5139 /* |
5140 * Given the name of the "icon=" argument, try finding the bitmap file for the | |
5141 * icon. If it is an absolute path name, use it as it is. Otherwise append | |
5142 * "ext" and search for it in 'runtimepath'. | |
5143 * The result is put in "buffer[MAXPATHL]". If something fails "buffer" | |
5144 * contains "name". | |
5145 */ | |
5146 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5147 gui_find_iconfile(char_u *name, char_u *buffer, char *ext) |
7 | 5148 { |
5149 char_u buf[MAXPATHL + 1]; | |
5150 | |
5151 expand_env(name, buffer, MAXPATHL); | |
5152 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK) | |
5153 STRCPY(buffer, buf); | |
5154 } | |
5155 # endif | |
5156 #endif | |
5157 | |
20231
993d820196b9
patch 8.2.0671: Haiku: compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
20113
diff
changeset
|
5158 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \ |
993d820196b9
patch 8.2.0671: Haiku: compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
20113
diff
changeset
|
5159 || defined(PROTO) |
7 | 5160 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5161 display_errors(void) |
7 | 5162 { |
5163 char_u *p; | |
5164 | |
5165 if (isatty(2)) | |
5166 fflush(stderr); | |
5167 else if (error_ga.ga_data != NULL) | |
5168 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5169 // avoid putting up a message box with blanks only |
7 | 5170 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p) |
5171 if (!isspace(*p)) | |
5172 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5173 // Truncate a very long message, it will go off-screen. |
7 | 5174 if (STRLEN(p) > 2000) |
5175 STRCPY(p + 2000 - 14, "...(truncated)"); | |
5176 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"), | |
2684 | 5177 p, (char_u *)_("&Ok"), 1, NULL, FALSE); |
7 | 5178 break; |
5179 } | |
5180 ga_clear(&error_ga); | |
5181 } | |
5182 } | |
5183 #endif | |
5184 | |
5185 #if defined(NO_CONSOLE_INPUT) || defined(PROTO) | |
5186 /* | |
5187 * Return TRUE if still starting up and there is no place to enter text. | |
5188 * For GTK and X11 we check if stderr is not a tty, which means we were | |
5189 * (probably) started from the desktop. Also check stdin, "vim >& file" does | |
5190 * allow typing on stdin. | |
5191 */ | |
5192 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5193 no_console_input(void) |
7 | 5194 { |
5195 return ((!gui.in_use || gui.starting) | |
5196 # ifndef NO_CONSOLE | |
5197 && !isatty(0) && !isatty(2) | |
5198 # endif | |
5199 ); | |
5200 } | |
5201 #endif | |
5202 | |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5203 #if defined(FIND_REPLACE_DIALOG) \ |
1002 | 5204 || defined(NEED_GUI_UPDATE_SCREEN) \ |
28 | 5205 || defined(PROTO) |
7 | 5206 /* |
5207 * Update the current window and the screen. | |
5208 */ | |
5209 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5210 gui_update_screen(void) |
7 | 5211 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5212 # ifdef FEAT_CONCEAL |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5213 linenr_T conceal_old_cursor_line = 0; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5214 linenr_T conceal_new_cursor_line = 0; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5215 int conceal_update_lines = FALSE; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5216 # endif |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5217 |
7 | 5218 update_topline(); |
5219 validate_cursor(); | |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5220 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5221 // Trigger CursorMoved if the cursor moved. |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5222 if (!finish_op && (has_cursormoved() |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
5223 # ifdef FEAT_PROP_POPUP |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5224 || popup_visible |
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5225 # endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5226 # ifdef FEAT_CONCEAL |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5227 || curwin->w_p_cole > 0 |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5228 # endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5229 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor)) |
1584 | 5230 { |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5231 if (has_cursormoved()) |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5232 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf); |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
5233 # ifdef FEAT_PROP_POPUP |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5234 if (popup_visible) |
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
5235 popup_check_cursor_pos(); |
27521
3ad379c0ab28
patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
5236 # endif |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5237 # ifdef FEAT_CONCEAL |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5238 if (curwin->w_p_cole > 0) |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5239 { |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5240 conceal_old_cursor_line = last_cursormoved.lnum; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5241 conceal_new_cursor_line = curwin->w_cursor.lnum; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5242 conceal_update_lines = TRUE; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5243 } |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5244 # endif |
1584 | 5245 last_cursormoved = curwin->w_cursor; |
5246 } | |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5247 |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
5248 if (!finish_op) |
28429
aa9720c76412
patch 8.2.4739: accessing freed memory after WinScrolled autocmd event
Bram Moolenaar <Bram@vim.org>
parents:
28375
diff
changeset
|
5249 may_trigger_winscrolled(); |
28375
e466fdbe0699
patch 8.2.4713: plugins cannot track text scrolling
Bram Moolenaar <Bram@vim.org>
parents:
28303
diff
changeset
|
5250 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13194
diff
changeset
|
5251 # ifdef FEAT_CONCEAL |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5252 if (conceal_update_lines |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5253 && (conceal_old_cursor_line != conceal_new_cursor_line |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5254 || conceal_cursor_line(curwin) |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5255 || need_cursor_line_redraw)) |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5256 { |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
5257 if (conceal_old_cursor_line != conceal_new_cursor_line) |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15233
diff
changeset
|
5258 redrawWinline(curwin, conceal_old_cursor_line); |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15233
diff
changeset
|
5259 redrawWinline(curwin, conceal_new_cursor_line); |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5260 curwin->w_valid &= ~VALID_CROW; |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15233
diff
changeset
|
5261 need_cursor_line_redraw = FALSE; |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5262 } |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
5263 # endif |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5264 update_screen(0); // may need to update the screen |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15233
diff
changeset
|
5265 setcursor(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13080
diff
changeset
|
5266 out_flush_cursor(TRUE, FALSE); |
7 | 5267 } |
5268 #endif | |
5269 | |
28 | 5270 #if defined(FIND_REPLACE_DIALOG) || defined(PROTO) |
7 | 5271 /* |
5272 * Get the text to use in a find/replace dialog. Uses the last search pattern | |
5273 * if the argument is empty. | |
5274 * Returns an allocated string. | |
5275 */ | |
5276 char_u * | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5277 get_find_dialog_text( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5278 char_u *arg, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5279 int *wwordp, // return: TRUE if \< \> found |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5280 int *mcasep) // return: TRUE if \C found |
7 | 5281 { |
5282 char_u *text; | |
5283 | |
5284 if (*arg == NUL) | |
5285 text = last_search_pat(); | |
5286 else | |
5287 text = arg; | |
5288 if (text != NULL) | |
5289 { | |
5290 text = vim_strsave(text); | |
5291 if (text != NULL) | |
5292 { | |
835 | 5293 int len = (int)STRLEN(text); |
7 | 5294 int i; |
5295 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5296 // Remove "\V" |
7 | 5297 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0) |
5298 { | |
5299 mch_memmove(text, text + 2, (size_t)(len - 1)); | |
5300 len -= 2; | |
5301 } | |
5302 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5303 // Recognize "\c" and "\C" and remove. |
7 | 5304 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C')) |
5305 { | |
5306 *mcasep = (text[1] == 'C'); | |
5307 mch_memmove(text, text + 2, (size_t)(len - 1)); | |
5308 len -= 2; | |
5309 } | |
5310 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5311 // Recognize "\<text\>" and remove. |
7 | 5312 if (len >= 4 |
5313 && STRNCMP(text, "\\<", 2) == 0 | |
5314 && STRNCMP(text + len - 2, "\\>", 2) == 0) | |
5315 { | |
5316 *wwordp = TRUE; | |
5317 mch_memmove(text, text + 2, (size_t)(len - 4)); | |
5318 text[len - 4] = NUL; | |
5319 } | |
5320 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5321 // Recognize "\/" or "\?" and remove. |
7 | 5322 for (i = 0; i + 1 < len; ++i) |
5323 if (text[i] == '\\' && (text[i + 1] == '/' | |
5324 || text[i + 1] == '?')) | |
5325 { | |
5326 mch_memmove(text + i, text + i + 1, (size_t)(len - i)); | |
5327 --len; | |
5328 } | |
5329 } | |
5330 } | |
5331 return text; | |
5332 } | |
5333 | |
5334 /* | |
5335 * Handle the press of a button in the find-replace dialog. | |
5336 * Return TRUE when something was added to the input buffer. | |
5337 */ | |
5338 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5339 gui_do_findrepl( |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5340 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc. |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5341 char_u *find_text, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5342 char_u *repl_text, |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5343 int down) // Search downwards. |
7 | 5344 { |
5345 garray_T ga; | |
5346 int i; | |
5347 int type = (flags & FRD_TYPE_MASK); | |
5348 char_u *p; | |
28 | 5349 regmatch_T regmatch; |
482 | 5350 int save_did_emsg = did_emsg; |
1943 | 5351 static int busy = FALSE; |
5352 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5353 // When the screen is being updated we should not change buffers and |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5354 // windows structures, it may cause freed memory to be used. Also don't |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
5355 // do this recursively (pressing "Find" quickly several times). |
1943 | 5356 if (updating_screen || busy) |
5357 return FALSE; | |
5358 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5359 // refuse replace when text cannot be changed |
1943 | 5360 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked()) |
5361 return FALSE; | |
5362 | |
5363 busy = TRUE; | |
7 | 5364 |
5365 ga_init2(&ga, 1, 100); | |
28 | 5366 if (type == FRD_REPLACEALL) |
7 | 5367 ga_concat(&ga, (char_u *)"%s/"); |
5368 | |
5369 ga_concat(&ga, (char_u *)"\\V"); | |
5370 if (flags & FRD_MATCH_CASE) | |
5371 ga_concat(&ga, (char_u *)"\\C"); | |
5372 else | |
5373 ga_concat(&ga, (char_u *)"\\c"); | |
5374 if (flags & FRD_WHOLE_WORD) | |
5375 ga_concat(&ga, (char_u *)"\\<"); | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5376 // escape slash and backslash |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5377 p = vim_strsave_escaped(find_text, (char_u *)"/\\"); |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5378 if (p != NULL) |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
5379 ga_concat(&ga, p); |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5380 vim_free(p); |
7 | 5381 if (flags & FRD_WHOLE_WORD) |
5382 ga_concat(&ga, (char_u *)"\\>"); | |
5383 | |
5384 if (type == FRD_REPLACEALL) | |
5385 { | |
28 | 5386 ga_concat(&ga, (char_u *)"/"); |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5387 // escape slash and backslash |
694 | 5388 p = vim_strsave_escaped(repl_text, (char_u *)"/\\"); |
5389 if (p != NULL) | |
5390 ga_concat(&ga, p); | |
5391 vim_free(p); | |
28 | 5392 ga_concat(&ga, (char_u *)"/g"); |
5393 } | |
5394 ga_append(&ga, NUL); | |
5395 | |
5396 if (type == FRD_REPLACE) | |
5397 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5398 // Do the replacement when the text at the cursor matches. Thus no |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5399 // replacement is done if the cursor was moved! |
28 | 5400 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING); |
5401 regmatch.rm_ic = 0; | |
5402 if (regmatch.regprog != NULL) | |
5403 { | |
5404 p = ml_get_cursor(); | |
5405 if (vim_regexec_nl(®match, p, (colnr_T)0) | |
5406 && regmatch.startp[0] == p) | |
5407 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5408 // Clear the command line to remove any old "No match" |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5409 // error. |
28 | 5410 msg_end_prompt(); |
5411 | |
5412 if (u_save_cursor() == OK) | |
5413 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5414 // A button was pressed thus undo should be synced. |
825 | 5415 u_sync(FALSE); |
28 | 5416 |
5417 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]), | |
609 | 5418 FALSE, FALSE); |
28 | 5419 ins_str(repl_text); |
5420 } | |
5421 } | |
5422 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5423 msg(_("No match at cursor, finding next")); |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5424 vim_regfree(regmatch.regprog); |
28 | 5425 } |
5426 } | |
5427 | |
5428 if (type == FRD_REPLACEALL) | |
5429 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5430 // A button was pressed, thus undo should be synced. |
825 | 5431 u_sync(FALSE); |
7 | 5432 do_cmdline_cmd(ga.ga_data); |
5433 } | |
5434 else | |
5435 { | |
9305
4981cd0802c7
commit https://github.com/vim/vim/commit/bee666f239eada035d288b77269aebc42f644ea6
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5436 int searchflags = SEARCH_MSG + SEARCH_MARK; |
4981cd0802c7
commit https://github.com/vim/vim/commit/bee666f239eada035d288b77269aebc42f644ea6
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5437 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5438 // Search for the next match. |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5439 // Don't skip text under cursor for single replace. |
9305
4981cd0802c7
commit https://github.com/vim/vim/commit/bee666f239eada035d288b77269aebc42f644ea6
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5440 if (type == FRD_REPLACE) |
4981cd0802c7
commit https://github.com/vim/vim/commit/bee666f239eada035d288b77269aebc42f644ea6
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5441 searchflags += SEARCH_START; |
7 | 5442 i = msg_scroll; |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5443 if (down) |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5444 { |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
5445 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL); |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5446 } |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5447 else |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5448 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5449 // We need to escape '?' if and only if we are searching in the up |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5450 // direction |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5451 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?"); |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5452 if (p != NULL) |
28809
d0241e74bfdb
patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
5453 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL); |
13927
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5454 vim_free(p); |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5455 } |
ec54a202ad0c
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Christian Brabandt <cb@256bit.org>
parents:
13847
diff
changeset
|
5456 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5457 msg_scroll = i; // don't let an error message set msg_scroll |
7 | 5458 } |
5459 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5460 // Don't want to pass did_emsg to other code, it may cause disabling |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5461 // syntax HL if we were busy redrawing. |
482 | 5462 did_emsg = save_did_emsg; |
5463 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
5464 if (State & (MODE_NORMAL | MODE_INSERT)) |
7 | 5465 { |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5466 gui_update_screen(); // update the screen |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5467 msg_didout = 0; // overwrite any message |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5468 need_wait_return = FALSE; // don't wait for return |
7 | 5469 } |
5470 | |
5471 vim_free(ga.ga_data); | |
1943 | 5472 busy = FALSE; |
7 | 5473 return (ga.ga_len > 0); |
5474 } | |
5475 | |
5476 #endif | |
5477 | |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5478 #if defined(HAVE_DROP_FILE) || defined(PROTO) |
7 | 5479 /* |
5480 * Jump to the window at specified point (x, y). | |
5481 */ | |
5482 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5483 gui_wingoto_xy(int x, int y) |
7 | 5484 { |
5485 int row = Y_2_ROW(y); | |
5486 int col = X_2_COL(x); | |
5487 win_T *wp; | |
5488 | |
5489 if (row >= 0 && col >= 0) | |
5490 { | |
17041
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
16904
diff
changeset
|
5491 wp = mouse_find_win(&row, &col, FAIL_POPUP); |
7 | 5492 if (wp != NULL && wp != curwin) |
5493 win_goto(wp); | |
5494 } | |
5495 } | |
5496 | |
5497 /* | |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5498 * Function passed to handle_drop() for the actions to be done after the |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5499 * argument list has been updated. |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5500 */ |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5501 static void |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5502 drop_callback(void *cookie) |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5503 { |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5504 char_u *p = cookie; |
26234
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5505 int do_shorten = FALSE; |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5506 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5507 // If Shift held down, change to first file's directory. If the first |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5508 // item is a directory, change to that directory (and let the explorer |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5509 // plugin show the contents). |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5510 if (p != NULL) |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5511 { |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5512 if (mch_isdir(p)) |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5513 { |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5514 if (mch_chdir((char *)p) == 0) |
26234
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5515 do_shorten = TRUE; |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5516 } |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5517 else if (vim_chdirfile(p, "drop") == OK) |
26234
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5518 do_shorten = TRUE; |
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5519 vim_free(p); |
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5520 if (do_shorten) |
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5521 { |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5522 shorten_fnames(TRUE); |
26234
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5523 last_chdir_reason = "drop"; |
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5524 } |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5525 } |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5526 |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5527 // Update the screen display |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5528 update_screen(NOT_VALID); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5529 # ifdef FEAT_MENU |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5530 gui_update_menus(0); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5531 # endif |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5532 maketitle(); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5533 setcursor(); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5534 out_flush_cursor(FALSE, FALSE); |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5535 } |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5536 |
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5537 /* |
7 | 5538 * Process file drop. Mouse cursor position, key modifiers, name of files |
5539 * and count of files are given. Argument "fnames[count]" has full pathnames | |
5540 * of dropped files, they will be freed in this function, and caller can't use | |
5541 * fnames after call this function. | |
5542 */ | |
5543 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5544 gui_handle_drop( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5545 int x UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5546 int y UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5547 int_u modifiers, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5548 char_u **fnames, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5549 int count) |
7 | 5550 { |
5551 int i; | |
5552 char_u *p; | |
1668 | 5553 static int entered = FALSE; |
5554 | |
5555 /* | |
5556 * This function is called by event handlers. Just in case we get a | |
5557 * second event before the first one is handled, ignore the second one. | |
5558 * Not sure if this can ever happen, just in case. | |
5559 */ | |
5560 if (entered) | |
5561 return; | |
5562 entered = TRUE; | |
7 | 5563 |
5564 /* | |
5565 * When the cursor is at the command line, add the file names to the | |
5566 * command line, don't edit the files. | |
5567 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28457
diff
changeset
|
5568 if (State & MODE_CMDLINE) |
7 | 5569 { |
5570 shorten_filenames(fnames, count); | |
5571 for (i = 0; i < count; ++i) | |
5572 { | |
5573 if (fnames[i] != NULL) | |
5574 { | |
5575 if (i > 0) | |
5576 add_to_input_buf((char_u*)" ", 1); | |
5577 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5578 // We don't know what command is used thus we can't be sure |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5579 // about which characters need to be escaped. Only escape the |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5580 // most common ones. |
7 | 5581 # ifdef BACKSLASH_IN_FILENAME |
5582 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|"); | |
5583 # else | |
5584 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|"); | |
5585 # endif | |
5586 if (p != NULL) | |
1364 | 5587 add_to_input_buf_csi(p, (int)STRLEN(p)); |
7 | 5588 vim_free(p); |
5589 vim_free(fnames[i]); | |
5590 } | |
5591 } | |
5592 vim_free(fnames); | |
5593 } | |
5594 else | |
5595 { | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5596 // Go to the window under mouse cursor, then shorten given "fnames" by |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5597 // current window, because a window can have local current dir. |
7 | 5598 gui_wingoto_xy(x, y); |
5599 shorten_filenames(fnames, count); | |
5600 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5601 // If Shift held down, remember the first item. |
7 | 5602 if ((modifiers & MOUSE_SHIFT) != 0) |
5603 p = vim_strsave(fnames[0]); | |
5604 else | |
5605 p = NULL; | |
5606 | |
18781
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5607 // Handle the drop, :edit or :split to get to the file. This also |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5608 // frees fnames[]. Skip this if there is only one item, it's a |
79e10adc821d
patch 8.1.2380: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5609 // directory and Shift is held down. |
7 | 5610 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0 |
5611 && mch_isdir(fnames[0])) | |
5612 { | |
5613 vim_free(fnames[0]); | |
5614 vim_free(fnames); | |
25006
496221916885
patch 8.2.3040: GUI: dropping files not tested
Bram Moolenaar <Bram@vim.org>
parents:
24850
diff
changeset
|
5615 vim_free(p); |
7 | 5616 } |
5617 else | |
14428
aab5947be7c5
patch 8.1.0228: dropping files is ignored while Vim is busy
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
5618 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0, |
26234
92bad8cd95d5
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Bram Moolenaar <Bram@vim.org>
parents:
26232
diff
changeset
|
5619 drop_callback, (void *)p); |
7 | 5620 } |
1668 | 5621 |
5622 entered = FALSE; | |
7 | 5623 } |
5624 #endif | |
21570
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5625 |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5626 /* |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5627 * Check if "key" is to interrupt us. Handles a key that has not had modifiers |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5628 * applied yet. |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5629 * Return the key with modifiers applied if so, NUL if not. |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5630 */ |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5631 int |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5632 check_for_interrupt(int key, int modifiers_arg) |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5633 { |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5634 int modifiers = modifiers_arg; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5635 int c = merge_modifyOtherKeys(key, &modifiers); |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5636 |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5637 if ((c == Ctrl_C && ctrl_c_interrupts) |
21572
e9954158a9cf
patch 8.2.1336: build failure on non-Unix systems
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5638 #ifdef UNIX |
e9954158a9cf
patch 8.2.1336: build failure on non-Unix systems
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5639 || (intr_char != Ctrl_C && c == intr_char) |
e9954158a9cf
patch 8.2.1336: build failure on non-Unix systems
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5640 #endif |
e9954158a9cf
patch 8.2.1336: build failure on non-Unix systems
Bram Moolenaar <Bram@vim.org>
parents:
21570
diff
changeset
|
5641 ) |
21570
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5642 { |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5643 got_int = TRUE; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5644 return c; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5645 } |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5646 return NUL; |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5647 } |
f260c1411833
patch 8.2.1335: CTRL-C in the GUI doesn't interrupt
Bram Moolenaar <Bram@vim.org>
parents:
21355
diff
changeset
|
5648 |
29128
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5649 /* |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5650 * If the "--gui-log-file fname" argument is given write the dialog title and |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5651 * message to a file and return TRUE. Otherwise return FALSE. |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5652 * When there is any problem opening the file or writing to the file this is |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5653 * ignored, showing the dialog might get the test to get stuck. |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5654 */ |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5655 int |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5656 gui_dialog_log(char_u *title, char_u *message) |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5657 { |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5658 char_u *fname = get_gui_dialog_file(); |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5659 FILE *fd; |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5660 |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5661 if (fname == NULL) |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5662 return FALSE; |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5663 |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5664 fd = mch_fopen((char *)fname, "a"); |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5665 if (fd != NULL) |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5666 { |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5667 fprintf(fd, "%s: %s\n", title, message); |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5668 fclose(fd); |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5669 } |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5670 return TRUE; |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
28809
diff
changeset
|
5671 } |