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