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