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