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