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