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