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