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