Mercurial > vim
annotate src/gui_motif.c @ 9657:d9e46b847c8b v7.4.2105
commit https://github.com/vim/vim/commit/eec2981bbee42411044800bc23731ebcc82b5b66
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jul 26 21:27:36 2016 +0200
patch 7.4.2105
Problem: Configure reports default features to be "normal" while it is
"huge".
Solution: Change the default text.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 26 Jul 2016 21:30:06 +0200 |
parents | d621ab23fd19 |
children | 4aead6a9b7a9 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
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 <Xm/Form.h> | |
12 #include <Xm/RowColumn.h> | |
13 #include <Xm/PushB.h> | |
14 #include <Xm/Text.h> | |
15 #include <Xm/TextF.h> | |
16 #include <Xm/Separator.h> | |
17 #include <Xm/Label.h> | |
18 #include <Xm/CascadeB.h> | |
19 #include <Xm/ScrollBar.h> | |
20 #include <Xm/MenuShell.h> | |
21 #include <Xm/DrawingA.h> | |
22 #if (XmVersion >= 1002) | |
23 # include <Xm/RepType.h> | |
24 #endif | |
25 #include <Xm/Frame.h> | |
26 #include <Xm/LabelG.h> | |
27 #include <Xm/ToggleBG.h> | |
28 #include <Xm/SeparatoG.h> | |
824 | 29 #include <Xm/XmP.h> |
7 | 30 |
31 #include <X11/keysym.h> | |
32 #include <X11/Xatom.h> | |
33 #include <X11/StringDefs.h> | |
34 #include <X11/Intrinsic.h> | |
35 | |
36 #include "vim.h" | |
37 | |
38 #ifdef HAVE_X11_XPM_H | |
39 # include <X11/xpm.h> | |
40 #else | |
41 # ifdef HAVE_XM_XPMP_H | |
42 # include <Xm/XpmP.h> | |
43 # endif | |
44 #endif | |
838 | 45 #ifdef HAVE_XM_NOTEBOOK_H |
46 # include <Xm/Notebook.h> | |
47 #endif | |
7 | 48 |
48 | 49 #include "gui_xmebw.h" /* for our Enhanced Button Widget */ |
50 | |
7 | 51 #if defined(FEAT_GUI_DIALOG) && defined(HAVE_XPM) |
52 # include "../pixmaps/alert.xpm" | |
53 # include "../pixmaps/error.xpm" | |
54 # include "../pixmaps/generic.xpm" | |
55 # include "../pixmaps/info.xpm" | |
56 # include "../pixmaps/quest.xpm" | |
57 #endif | |
58 | |
59 #define MOTIF_POPUP | |
60 | |
61 extern Widget vimShell; | |
62 | |
63 static Widget vimForm; | |
64 static Widget textAreaForm; | |
65 Widget textArea; | |
66 #ifdef FEAT_TOOLBAR | |
67 static Widget toolBarFrame; | |
68 static Widget toolBar; | |
69 #endif | |
819 | 70 #ifdef FEAT_GUI_TABLINE |
71 static Widget tabLine; | |
72 static Widget tabLine_menu = 0; | |
73 static int showing_tabline = 0; | |
74 #endif | |
7 | 75 #ifdef FEAT_FOOTER |
76 static Widget footer; | |
77 #endif | |
78 #ifdef FEAT_MENU | |
79 # if (XmVersion >= 1002) | |
80 /* remember the last set value for the tearoff item */ | |
81 static int tearoff_val = (int)XmTEAR_OFF_ENABLED; | |
82 # endif | |
83 static Widget menuBar; | |
84 #endif | |
85 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
86 static void scroll_cb(Widget w, XtPointer client_data, XtPointer call_data); |
819 | 87 #ifdef FEAT_GUI_TABLINE |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
88 static void tabline_cb(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
89 static void tabline_button_cb(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
90 static void tabline_menu_cb(Widget w, XtPointer closure, XEvent *e, Boolean *continue_dispatch); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
91 static void tabline_balloon_cb(BalloonEval *beval, int state); |
819 | 92 #endif |
7 | 93 #ifdef FEAT_TOOLBAR |
94 # ifdef FEAT_FOOTER | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
95 static void toolbarbutton_enter_cb(Widget, XtPointer, XEvent *, Boolean *); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
96 static void toolbarbutton_leave_cb(Widget, XtPointer, XEvent *, Boolean *); |
7 | 97 # endif |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
98 static void reset_focus(void); |
7 | 99 #endif |
100 #ifdef FEAT_FOOTER | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
101 static int gui_mch_compute_footer_height(void); |
7 | 102 #endif |
103 #ifdef WSDEBUG | |
104 static void attachDump(Widget, char *); | |
105 #endif | |
106 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
107 static void gui_motif_menu_colors(Widget id); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
108 static void gui_motif_scroll_colors(Widget id); |
7 | 109 |
110 #if (XmVersion >= 1002) | |
111 # define STRING_TAG XmFONTLIST_DEFAULT_TAG | |
112 #else | |
113 # define STRING_TAG XmSTRING_DEFAULT_CHARSET | |
114 #endif | |
115 | |
116 /* | |
117 * Call-back routines. | |
118 */ | |
119 | |
120 static void | |
7831
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
121 scroll_cb(Widget w UNUSED, XtPointer client_data, XtPointer call_data) |
7 | 122 { |
123 scrollbar_T *sb; | |
124 long value; | |
125 int dragging; | |
126 | |
127 sb = gui_find_scrollbar((long)client_data); | |
128 | |
129 value = ((XmScrollBarCallbackStruct *)call_data)->value; | |
130 dragging = (((XmScrollBarCallbackStruct *)call_data)->reason == | |
131 (int)XmCR_DRAG); | |
132 gui_drag_scrollbar(sb, value, dragging); | |
133 } | |
134 | |
819 | 135 #ifdef FEAT_GUI_TABLINE |
136 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
137 tabline_cb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
138 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
139 XtPointer client_data UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
140 XtPointer call_data) |
819 | 141 { |
142 XmNotebookCallbackStruct *nptr; | |
143 | |
144 nptr = (XmNotebookCallbackStruct *)call_data; | |
145 if (nptr->reason != (int)XmCR_NONE) | |
146 send_tabline_event(nptr->page_number); | |
147 } | |
148 | |
149 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
150 tabline_button_cb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
151 Widget w, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
152 XtPointer client_data UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
153 XtPointer call_data UNUSED) |
819 | 154 { |
155 int cmd, tab_idx; | |
156 | |
157 XtVaGetValues(w, XmNuserData, &cmd, NULL); | |
158 XtVaGetValues(tabLine_menu, XmNuserData, &tab_idx, NULL); | |
159 | |
824 | 160 send_tabline_menu_event(tab_idx, cmd); |
161 } | |
162 | |
163 /* | |
164 * Tabline single mouse click timeout handler | |
165 */ | |
166 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
167 motif_tabline_timer_cb ( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
168 XtPointer timed_out, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
169 XtIntervalId *interval_id UNUSED) |
824 | 170 { |
171 *((int *)timed_out) = TRUE; | |
172 } | |
173 | |
174 /* | |
175 * check if the tabline tab scroller is clicked | |
176 */ | |
177 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
178 tabline_scroller_clicked( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
179 char *scroller_name, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
180 XButtonPressedEvent *event) |
824 | 181 { |
182 Widget tab_scroll_w; | |
183 Position pos_x, pos_y; | |
184 Dimension width, height; | |
185 | |
186 tab_scroll_w = XtNameToWidget(tabLine, scroller_name); | |
187 if (tab_scroll_w != (Widget)0) { | |
188 XtVaGetValues(tab_scroll_w, XmNx, &pos_x, XmNy, &pos_y, XmNwidth, | |
189 &width, XmNheight, &height, NULL); | |
190 if (pos_x >= 0) { | |
191 /* Tab scroller (next) is visible */ | |
192 if ((event->x >= pos_x) && (event->x <= pos_x + width) && | |
193 (event->y >= pos_y) && (event->y <= pos_y + height)) { | |
194 /* Clicked on the scroller */ | |
195 return TRUE; | |
196 } | |
197 } | |
198 } | |
199 return FALSE; | |
819 | 200 } |
201 | |
202 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
203 tabline_menu_cb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
204 Widget w, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
205 XtPointer closure UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
206 XEvent *e, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
207 Boolean *continue_dispatch UNUSED) |
819 | 208 { |
209 Widget tab_w; | |
210 XButtonPressedEvent *event; | |
211 int tab_idx = 0; | |
212 WidgetList children; | |
213 Cardinal numChildren; | |
824 | 214 static XtIntervalId timer = (XtIntervalId)0; |
215 static int timed_out = TRUE; | |
819 | 216 |
217 event = (XButtonPressedEvent *)e; | |
218 | |
824 | 219 if (event->button == Button1) |
220 { | |
221 if (tabline_scroller_clicked("MajorTabScrollerNext", event) | |
222 || tabline_scroller_clicked("MajorTabScrollerPrevious", event)) | |
223 return; | |
224 | |
225 if (!timed_out) | |
226 { | |
227 XtRemoveTimeOut(timer); | |
228 timed_out = TRUE; | |
229 | |
230 /* | |
231 * Double click on the tabline gutter, add a new tab | |
232 */ | |
233 send_tabline_menu_event(0, TABLINE_MENU_NEW); | |
234 } | |
235 else | |
236 { | |
237 /* | |
238 * Single click on the tabline gutter, start a timer to check | |
239 * for double clicks | |
240 */ | |
241 timer = XtAppAddTimeOut(app_context, (long_u)p_mouset, | |
242 motif_tabline_timer_cb, &timed_out); | |
243 timed_out = FALSE; | |
244 } | |
245 return; | |
246 } | |
247 | |
819 | 248 if (event->button != Button3) |
249 return; | |
250 | |
844 | 251 /* When ignoring events don't show the menu. */ |
252 if (hold_gui_events | |
253 # ifdef FEAT_CMDWIN | |
254 || cmdwin_type != 0 | |
255 # endif | |
256 ) | |
257 return; | |
258 | |
819 | 259 if (event->subwindow != None) |
260 { | |
261 tab_w = XtWindowToWidget(XtDisplay(w), event->subwindow); | |
824 | 262 /* LINTED: avoid warning: dubious operation on enum */ |
819 | 263 if (tab_w != (Widget)0 && XmIsPushButton(tab_w)) |
264 XtVaGetValues(tab_w, XmNpageNumber, &tab_idx, NULL); | |
265 } | |
266 | |
267 XtVaSetValues(tabLine_menu, XmNuserData, tab_idx, NULL); | |
268 XtVaGetValues(tabLine_menu, XmNchildren, &children, XmNnumChildren, | |
269 &numChildren, NULL); | |
270 XtManageChildren(children, numChildren); | |
271 XmMenuPosition(tabLine_menu, (XButtonPressedEvent *)e) ; | |
272 XtManageChild(tabLine_menu); | |
273 } | |
844 | 274 |
275 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
276 tabline_balloon_cb(BalloonEval *beval, int state UNUSED) |
844 | 277 { |
278 int nr; | |
279 tabpage_T *tp; | |
280 | |
281 if (beval->target == (Widget)0) | |
282 return; | |
283 | |
284 XtVaGetValues(beval->target, XmNpageNumber, &nr, NULL); | |
285 tp = find_tabpage(nr); | |
286 if (tp == NULL) | |
287 return; | |
288 | |
289 get_tabline_label(tp, TRUE); | |
290 gui_mch_post_balloon(beval, NameBuff); | |
291 } | |
292 | |
819 | 293 #endif |
294 | |
7 | 295 /* |
296 * End of call-back routines | |
297 */ | |
298 | |
44 | 299 /* |
300 * Implement three dimensional shading of insensitive labels. | |
66 | 301 * By Marcin Dalecki. |
44 | 302 */ |
303 | |
304 #include <Xm/XmP.h> | |
305 #include <Xm/LabelP.h> | |
306 | |
307 static XtExposeProc old_label_expose = NULL; | |
308 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
309 static void label_expose(Widget _w, XEvent *_event, Region _region); |
44 | 310 |
311 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
312 label_expose(Widget _w, XEvent *_event, Region _region) |
44 | 313 { |
314 GC insensitiveGC; | |
315 XmLabelWidget lw = (XmLabelWidget)_w; | |
48 | 316 unsigned char label_type = (int)XmSTRING; |
44 | 317 |
318 XtVaGetValues(_w, XmNlabelType, &label_type, (XtPointer)0); | |
319 | |
48 | 320 if (XtIsSensitive(_w) || label_type != (int)XmSTRING) |
44 | 321 (*old_label_expose)(_w, _event, _region); |
322 else | |
323 { | |
324 XGCValues values; | |
325 XtGCMask mask; | |
326 XtGCMask dynamic; | |
327 XFontStruct *fs; | |
328 | |
329 _XmFontListGetDefaultFont(lw->label.font, &fs); | |
330 | |
331 /* FIXME: we should be doing the whole drawing ourself here. */ | |
332 insensitiveGC = lw->label.insensitive_GC; | |
333 | |
334 mask = GCForeground | GCBackground | GCGraphicsExposures; | |
335 dynamic = GCClipMask | GCClipXOrigin | GCClipYOrigin; | |
336 values.graphics_exposures = False; | |
337 | |
338 if (fs != 0) | |
339 { | |
340 mask |= GCFont; | |
341 values.font = fs->fid; | |
342 } | |
343 | |
344 if (lw->primitive.top_shadow_pixmap != None | |
345 && lw->primitive.top_shadow_pixmap != XmUNSPECIFIED_PIXMAP) | |
346 { | |
347 mask |= GCFillStyle | GCTile; | |
348 values.fill_style = FillTiled; | |
349 values.tile = lw->primitive.top_shadow_pixmap; | |
350 } | |
351 | |
352 lw->label.TextRect.x += 1; | |
353 lw->label.TextRect.y += 1; | |
354 if (lw->label._acc_text != 0) | |
355 { | |
356 lw->label.acc_TextRect.x += 1; | |
357 lw->label.acc_TextRect.y += 1; | |
358 } | |
359 | |
360 values.foreground = lw->primitive.top_shadow_color; | |
361 values.background = lw->core.background_pixel; | |
362 | |
48 | 363 lw->label.insensitive_GC = XtAllocateGC((Widget)lw, 0, mask, |
364 &values, dynamic, (XtGCMask)0); | |
44 | 365 (*old_label_expose)(_w, _event, _region); |
366 XtReleaseGC(_w, lw->label.insensitive_GC); | |
367 | |
368 lw->label.TextRect.x -= 1; | |
369 lw->label.TextRect.y -= 1; | |
370 if (lw->label._acc_text != 0) | |
371 { | |
372 lw->label.acc_TextRect.x -= 1; | |
373 lw->label.acc_TextRect.y -= 1; | |
374 } | |
375 | |
376 values.foreground = lw->primitive.bottom_shadow_color; | |
377 values.background = lw->core.background_pixel; | |
378 | |
48 | 379 lw->label.insensitive_GC = XtAllocateGC((Widget) lw, 0, mask, |
380 &values, dynamic, (XtGCMask)0); | |
44 | 381 (*old_label_expose)(_w, _event, _region); |
382 XtReleaseGC(_w, lw->label.insensitive_GC); | |
383 | |
384 lw->label.insensitive_GC = insensitiveGC; | |
385 } | |
386 } | |
387 | |
7 | 388 /* |
389 * Create all the motif widgets necessary. | |
390 */ | |
391 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
392 gui_x11_create_widgets(void) |
7 | 393 { |
819 | 394 #ifdef FEAT_GUI_TABLINE |
827 | 395 Widget button, scroller; |
819 | 396 Arg args[10]; |
397 int n; | |
398 XmString xms; | |
399 #endif | |
400 | |
44 | 401 /* |
402 * Install the 3D shade effect drawing routines. | |
403 */ | |
404 if (old_label_expose == NULL) | |
405 { | |
406 old_label_expose = xmLabelWidgetClass->core_class.expose; | |
407 xmLabelWidgetClass->core_class.expose = label_expose; | |
408 } | |
409 | |
7 | 410 /* |
411 * Start out by adding the configured border width into the border offset | |
412 */ | |
413 gui.border_offset = gui.border_width; | |
414 | |
415 /* | |
416 * Install the tearOffModel resource converter. | |
417 */ | |
418 #if (XmVersion >= 1002) | |
419 XmRepTypeInstallTearOffModelConverter(); | |
420 #endif | |
421 | |
422 /* Make sure the "Quit" menu entry of the window manager is ignored */ | |
423 XtVaSetValues(vimShell, XmNdeleteResponse, XmDO_NOTHING, NULL); | |
424 | |
425 vimForm = XtVaCreateManagedWidget("vimForm", | |
426 xmFormWidgetClass, vimShell, | |
427 XmNborderWidth, 0, | |
428 XmNhighlightThickness, 0, | |
429 XmNshadowThickness, 0, | |
430 XmNmarginWidth, 0, | |
431 XmNmarginHeight, 0, | |
432 XmNresizePolicy, XmRESIZE_ANY, | |
433 NULL); | |
434 gui_motif_menu_colors(vimForm); | |
435 | |
436 #ifdef FEAT_MENU | |
437 { | |
438 Arg al[7]; /* Make sure there is enough room for arguments! */ | |
439 int ac = 0; | |
440 | |
441 # if (XmVersion >= 1002) | |
442 XtSetArg(al[ac], XmNtearOffModel, tearoff_val); ac++; | |
443 # endif | |
444 XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++; | |
445 XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++; | |
446 XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++; | |
447 # ifndef FEAT_TOOLBAR | |
448 /* Always stick to right hand side. */ | |
449 XtSetArg(al[ac], XmNrightOffset, 0); ac++; | |
450 # endif | |
48 | 451 XtSetArg(al[ac], XmNmarginHeight, 0); ac++; |
7 | 452 menuBar = XmCreateMenuBar(vimForm, "menuBar", al, ac); |
453 XtManageChild(menuBar); | |
454 | |
455 /* Remember the default colors, needed for ":hi clear". */ | |
456 XtVaGetValues(menuBar, | |
457 XmNbackground, &gui.menu_def_bg_pixel, | |
458 XmNforeground, &gui.menu_def_fg_pixel, | |
459 NULL); | |
460 gui_motif_menu_colors(menuBar); | |
461 } | |
462 #endif | |
463 | |
464 #ifdef FEAT_TOOLBAR | |
465 /* | |
466 * Create an empty ToolBar. We should get buttons defined from menu.vim. | |
467 */ | |
468 toolBarFrame = XtVaCreateWidget("toolBarFrame", | |
469 xmFrameWidgetClass, vimForm, | |
470 XmNshadowThickness, 0, | |
471 XmNmarginHeight, 0, | |
472 XmNmarginWidth, 0, | |
473 XmNleftAttachment, XmATTACH_FORM, | |
474 XmNrightAttachment, XmATTACH_FORM, | |
475 NULL); | |
476 gui_motif_menu_colors(toolBarFrame); | |
477 | |
478 toolBar = XtVaCreateManagedWidget("toolBar", | |
479 xmRowColumnWidgetClass, toolBarFrame, | |
480 XmNchildType, XmFRAME_WORKAREA_CHILD, | |
481 XmNrowColumnType, XmWORK_AREA, | |
482 XmNorientation, XmHORIZONTAL, | |
483 XmNtraversalOn, False, | |
484 XmNisHomogeneous, False, | |
485 XmNpacking, XmPACK_TIGHT, | |
486 XmNspacing, 0, | |
487 XmNshadowThickness, 0, | |
488 XmNhighlightThickness, 0, | |
489 XmNmarginHeight, 0, | |
490 XmNmarginWidth, 0, | |
491 XmNadjustLast, True, | |
492 NULL); | |
493 gui_motif_menu_colors(toolBar); | |
494 | |
495 #endif | |
496 | |
819 | 497 #ifdef FEAT_GUI_TABLINE |
498 /* Create the Vim GUI tabline */ | |
499 n = 0; | |
500 XtSetArg(args[n], XmNbindingType, XmNONE); n++; | |
501 XtSetArg(args[n], XmNorientation, XmVERTICAL); n++; | |
502 XtSetArg(args[n], XmNbackPageSize, XmNONE); n++; | |
503 XtSetArg(args[n], XmNbackPageNumber, 0); n++; | |
504 XtSetArg(args[n], XmNbackPagePlacement, XmTOP_RIGHT); n++; | |
505 XtSetArg(args[n], XmNmajorTabSpacing, 0); n++; | |
506 XtSetArg(args[n], XmNshadowThickness, 0); n++; | |
507 XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++; | |
508 XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++; | |
509 tabLine = XmCreateNotebook(vimForm, "Vim tabline", args, n); | |
510 | |
511 XtAddCallback(tabLine, XmNpageChangedCallback, (XtCallbackProc)tabline_cb, | |
512 NULL); | |
513 XtAddEventHandler(tabLine, ButtonPressMask, False, | |
514 (XtEventHandler)tabline_menu_cb, NULL); | |
515 | |
843 | 516 gui.tabline_height = TABLINE_HEIGHT; |
517 | |
827 | 518 /* |
519 * Set the size of the minor next/prev scrollers to zero, so | |
520 * that they are not displayed. Due to a bug in OpenMotif 2.3, | |
521 * even if these children widget are unmanaged, they are again | |
522 * managed by the Notebook widget and the notebook widget geometry | |
523 * is adjusted to account for the minor scroller widgets. | |
524 */ | |
525 scroller = XtNameToWidget(tabLine, "MinorTabScrollerNext"); | |
526 XtVaSetValues(scroller, XmNwidth, 0, XmNresizable, False, | |
527 XmNtraversalOn, False, NULL); | |
528 scroller = XtNameToWidget(tabLine, "MinorTabScrollerPrevious"); | |
529 XtVaSetValues(scroller, XmNwidth, 0, XmNresizable, False, | |
530 XmNtraversalOn, False, NULL); | |
531 | |
819 | 532 /* Create the tabline popup menu */ |
533 tabLine_menu = XmCreatePopupMenu(tabLine, "tabline popup", NULL, 0); | |
534 | |
535 /* Add the buttons to the menu */ | |
6819 | 536 if (first_tabpage->tp_next != NULL) |
537 { | |
538 n = 0; | |
539 XtSetArg(args[n], XmNuserData, TABLINE_MENU_CLOSE); n++; | |
540 xms = XmStringCreate((char *)"Close tab", STRING_TAG); | |
541 XtSetArg(args[n], XmNlabelString, xms); n++; | |
542 button = XmCreatePushButton(tabLine_menu, "Close", args, n); | |
543 XtAddCallback(button, XmNactivateCallback, | |
544 (XtCallbackProc)tabline_button_cb, NULL); | |
545 XmStringFree(xms); | |
546 } | |
819 | 547 |
548 n = 0; | |
549 XtSetArg(args[n], XmNuserData, TABLINE_MENU_NEW); n++; | |
550 xms = XmStringCreate((char *)"New Tab", STRING_TAG); | |
551 XtSetArg(args[n], XmNlabelString, xms); n++; | |
552 button = XmCreatePushButton(tabLine_menu, "New Tab", args, n); | |
553 XtAddCallback(button, XmNactivateCallback, | |
554 (XtCallbackProc)tabline_button_cb, NULL); | |
555 XmStringFree(xms); | |
556 | |
557 n = 0; | |
558 XtSetArg(args[n], XmNuserData, TABLINE_MENU_OPEN); n++; | |
559 xms = XmStringCreate((char *)"Open tab...", STRING_TAG); | |
560 XtSetArg(args[n], XmNlabelString, xms); n++; | |
561 button = XmCreatePushButton(tabLine_menu, "Open tab...", args, n); | |
562 XtAddCallback(button, XmNactivateCallback, | |
563 (XtCallbackProc)tabline_button_cb, NULL); | |
564 XmStringFree(xms); | |
565 #endif | |
566 | |
7 | 567 textAreaForm = XtVaCreateManagedWidget("textAreaForm", |
568 xmFormWidgetClass, vimForm, | |
569 XmNleftAttachment, XmATTACH_FORM, | |
570 XmNrightAttachment, XmATTACH_FORM, | |
571 XmNbottomAttachment, XmATTACH_FORM, | |
572 XmNtopAttachment, XmATTACH_FORM, | |
573 XmNmarginWidth, 0, | |
574 XmNmarginHeight, 0, | |
575 XmNresizePolicy, XmRESIZE_ANY, | |
576 NULL); | |
577 gui_motif_scroll_colors(textAreaForm); | |
578 | |
579 textArea = XtVaCreateManagedWidget("textArea", | |
580 xmDrawingAreaWidgetClass, textAreaForm, | |
581 XmNforeground, gui.norm_pixel, | |
582 XmNbackground, gui.back_pixel, | |
583 XmNleftAttachment, XmATTACH_FORM, | |
584 XmNtopAttachment, XmATTACH_FORM, | |
585 XmNrightAttachment, XmATTACH_FORM, | |
586 XmNbottomAttachment, XmATTACH_FORM, | |
587 | |
588 /* | |
589 * These take some control away from the user, but avoids making them | |
590 * add resources to get a decent looking setup. | |
591 */ | |
592 XmNborderWidth, 0, | |
593 XmNhighlightThickness, 0, | |
594 XmNshadowThickness, 0, | |
595 NULL); | |
596 | |
597 #ifdef FEAT_FOOTER | |
598 /* | |
599 * Create the Footer. | |
600 */ | |
601 footer = XtVaCreateWidget("footer", | |
602 xmLabelGadgetClass, vimForm, | |
603 XmNalignment, XmALIGNMENT_BEGINNING, | |
604 XmNmarginHeight, 0, | |
605 XmNmarginWidth, 0, | |
606 XmNtraversalOn, False, | |
607 XmNrecomputeSize, False, | |
608 XmNleftAttachment, XmATTACH_FORM, | |
609 XmNleftOffset, 5, | |
610 XmNrightAttachment, XmATTACH_FORM, | |
611 XmNbottomAttachment, XmATTACH_FORM, | |
612 NULL); | |
613 gui_mch_set_footer((char_u *) ""); | |
614 #endif | |
615 | |
616 /* | |
617 * Install the callbacks. | |
618 */ | |
619 gui_x11_callbacks(textArea, vimForm); | |
620 | |
621 /* Pretend we don't have input focus, we will get an event if we do. */ | |
622 gui.in_focus = FALSE; | |
623 } | |
624 | |
625 /* | |
626 * Called when the GUI is not going to start after all. | |
627 */ | |
628 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
629 gui_x11_destroy_widgets(void) |
7 | 630 { |
631 textArea = NULL; | |
632 #ifdef FEAT_MENU | |
633 menuBar = NULL; | |
634 #endif | |
635 } | |
636 | |
637 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
638 gui_mch_set_text_area_pos( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
639 int x UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
640 int y UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
641 int w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
642 int h UNUSED) |
7 | 643 { |
644 #ifdef FEAT_TOOLBAR | |
645 /* Give keyboard focus to the textArea instead of the toolbar. */ | |
54 | 646 reset_focus(); |
7 | 647 #endif |
648 } | |
649 | |
650 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
651 gui_x11_set_back_color(void) |
7 | 652 { |
653 if (textArea != NULL) | |
654 #if (XmVersion >= 1002) | |
655 XmChangeColor(textArea, gui.back_pixel); | |
656 #else | |
657 XtVaSetValues(textArea, | |
658 XmNbackground, gui.back_pixel, | |
659 NULL); | |
660 #endif | |
661 } | |
662 | |
663 /* | |
664 * Manage dialog centered on pointer. This could be used by the Athena code as | |
665 * well. | |
666 */ | |
44 | 667 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
668 manage_centered(Widget dialog_child) |
7 | 669 { |
670 Widget shell = XtParent(dialog_child); | |
671 Window root, child; | |
672 unsigned int mask; | |
673 unsigned int width, height, border_width, depth; | |
674 int x, y, win_x, win_y, maxX, maxY; | |
675 Boolean mappedWhenManaged; | |
676 | |
677 /* Temporarily set value of XmNmappedWhenManaged | |
678 to stop the dialog from popping up right away */ | |
1604 | 679 XtVaGetValues(shell, XmNmappedWhenManaged, &mappedWhenManaged, NULL); |
680 XtVaSetValues(shell, XmNmappedWhenManaged, False, NULL); | |
7 | 681 |
682 XtManageChild(dialog_child); | |
683 | |
684 /* Get the pointer position (x, y) */ | |
685 XQueryPointer(XtDisplay(shell), XtWindow(shell), &root, &child, | |
686 &x, &y, &win_x, &win_y, &mask); | |
687 | |
688 /* Translate the pointer position (x, y) into a position for the new | |
689 window that will place the pointer at its center */ | |
690 XGetGeometry(XtDisplay(shell), XtWindow(shell), &root, &win_x, &win_y, | |
691 &width, &height, &border_width, &depth); | |
692 width += 2 * border_width; | |
693 height += 2 * border_width; | |
694 x -= width / 2; | |
695 y -= height / 2; | |
696 | |
697 /* Ensure that the dialog remains on screen */ | |
698 maxX = XtScreen(shell)->width - width; | |
699 maxY = XtScreen(shell)->height - height; | |
700 if (x < 0) | |
701 x = 0; | |
702 if (x > maxX) | |
703 x = maxX; | |
704 if (y < 0) | |
705 y = 0; | |
706 if (y > maxY) | |
707 y = maxY; | |
708 | |
709 /* Set desired window position in the DialogShell */ | |
710 XtVaSetValues(shell, XmNx, x, XmNy, y, NULL); | |
711 | |
712 /* Map the widget */ | |
713 XtMapWidget(shell); | |
714 | |
715 /* Restore the value of XmNmappedWhenManaged */ | |
1604 | 716 XtVaSetValues(shell, XmNmappedWhenManaged, mappedWhenManaged, NULL); |
7 | 717 } |
718 | |
719 #if defined(FEAT_MENU) || defined(FEAT_SUN_WORKSHOP) \ | |
720 || defined(FEAT_GUI_DIALOG) || defined(PROTO) | |
721 | |
722 /* | |
723 * Encapsulate the way an XmFontList is created. | |
724 */ | |
725 XmFontList | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
726 gui_motif_create_fontlist(XFontStruct *font) |
7 | 727 { |
728 XmFontList font_list; | |
729 | |
730 # if (XmVersion <= 1001) | |
731 /* Motif 1.1 method */ | |
732 font_list = XmFontListCreate(font, STRING_TAG); | |
733 # else | |
734 /* Motif 1.2 method */ | |
735 XmFontListEntry font_list_entry; | |
736 | |
737 font_list_entry = XmFontListEntryCreate(STRING_TAG, XmFONT_IS_FONT, | |
738 (XtPointer)font); | |
739 font_list = XmFontListAppendEntry(NULL, font_list_entry); | |
740 XmFontListEntryFree(&font_list_entry); | |
741 # endif | |
742 return font_list; | |
743 } | |
744 | |
745 # if ((XmVersion > 1001) && defined(FEAT_XFONTSET)) || defined(PROTO) | |
746 XmFontList | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
747 gui_motif_fontset2fontlist(XFontSet *fontset) |
7 | 748 { |
749 XmFontList font_list; | |
750 | |
751 /* Motif 1.2 method */ | |
752 XmFontListEntry font_list_entry; | |
753 | |
754 font_list_entry = XmFontListEntryCreate(STRING_TAG, | |
755 XmFONT_IS_FONTSET, | |
756 (XtPointer)*fontset); | |
757 font_list = XmFontListAppendEntry(NULL, font_list_entry); | |
758 XmFontListEntryFree(&font_list_entry); | |
759 return font_list; | |
760 } | |
761 # endif | |
762 | |
763 #endif | |
764 | |
765 #if defined(FEAT_MENU) || defined(PROTO) | |
766 /* | |
767 * Menu stuff. | |
768 */ | |
769 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
770 static void gui_motif_add_actext(vimmenu_T *menu); |
7 | 771 #if (XmVersion >= 1002) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
772 static void toggle_tearoff(Widget wid); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
773 static void gui_mch_recurse_tearoffs(vimmenu_T *menu); |
7 | 774 #endif |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
775 static void submenu_change(vimmenu_T *mp, int colors); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
776 |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
777 static void do_set_mnemonics(int enable); |
7 | 778 static int menu_enabled = TRUE; |
779 | |
780 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
781 gui_mch_enable_menu(int flag) |
7 | 782 { |
783 if (flag) | |
784 { | |
785 XtManageChild(menuBar); | |
786 #ifdef FEAT_TOOLBAR | |
787 if (XtIsManaged(XtParent(toolBar))) | |
788 { | |
789 /* toolBar is attached to top form */ | |
790 XtVaSetValues(XtParent(toolBar), | |
791 XmNtopAttachment, XmATTACH_WIDGET, | |
792 XmNtopWidget, menuBar, | |
793 NULL); | |
819 | 794 #ifdef FEAT_GUI_TABLINE |
795 if (showing_tabline) | |
796 { | |
797 XtVaSetValues(tabLine, | |
798 XmNtopAttachment, XmATTACH_WIDGET, | |
799 XmNtopWidget, XtParent(toolBar), | |
800 NULL); | |
801 XtVaSetValues(textAreaForm, | |
802 XmNtopAttachment, XmATTACH_WIDGET, | |
803 XmNtopWidget, tabLine, | |
804 NULL); | |
805 } | |
806 else | |
807 #endif | |
808 XtVaSetValues(textAreaForm, | |
809 XmNtopAttachment, XmATTACH_WIDGET, | |
810 XmNtopWidget, XtParent(toolBar), | |
811 NULL); | |
7 | 812 } |
813 else | |
814 #endif | |
815 { | |
819 | 816 #ifdef FEAT_GUI_TABLINE |
817 if (showing_tabline) | |
818 { | |
819 XtVaSetValues(tabLine, | |
820 XmNtopAttachment, XmATTACH_WIDGET, | |
821 XmNtopWidget, menuBar, | |
822 NULL); | |
823 XtVaSetValues(textAreaForm, | |
824 XmNtopAttachment, XmATTACH_WIDGET, | |
825 XmNtopWidget, tabLine, | |
826 NULL); | |
827 } | |
828 else | |
829 #endif | |
830 XtVaSetValues(textAreaForm, | |
831 XmNtopAttachment, XmATTACH_WIDGET, | |
832 XmNtopWidget, menuBar, | |
833 NULL); | |
7 | 834 } |
835 } | |
836 else | |
837 { | |
838 XtUnmanageChild(menuBar); | |
839 #ifdef FEAT_TOOLBAR | |
840 if (XtIsManaged(XtParent(toolBar))) | |
841 { | |
842 XtVaSetValues(XtParent(toolBar), | |
843 XmNtopAttachment, XmATTACH_FORM, | |
844 NULL); | |
819 | 845 #ifdef FEAT_GUI_TABLINE |
846 if (showing_tabline) | |
847 { | |
848 XtVaSetValues(tabLine, | |
849 XmNtopAttachment, XmATTACH_WIDGET, | |
850 XmNtopWidget, XtParent(toolBar), | |
851 NULL); | |
852 XtVaSetValues(textAreaForm, | |
853 XmNtopAttachment, XmATTACH_WIDGET, | |
854 XmNtopWidget, tabLine, | |
855 NULL); | |
856 } | |
857 else | |
858 #endif | |
859 XtVaSetValues(textAreaForm, | |
860 XmNtopAttachment, XmATTACH_WIDGET, | |
861 XmNtopWidget, XtParent(toolBar), | |
862 NULL); | |
7 | 863 } |
864 else | |
865 #endif | |
866 { | |
819 | 867 #ifdef FEAT_GUI_TABLINE |
868 if (showing_tabline) | |
869 { | |
870 XtVaSetValues(tabLine, | |
871 XmNtopAttachment, XmATTACH_FORM, | |
872 NULL); | |
873 XtVaSetValues(textAreaForm, | |
874 XmNtopAttachment, XmATTACH_WIDGET, | |
875 XmNtopWidget, tabLine, | |
876 NULL); | |
877 } | |
878 else | |
879 #endif | |
880 XtVaSetValues(textAreaForm, | |
881 XmNtopAttachment, XmATTACH_FORM, | |
882 NULL); | |
7 | 883 } |
884 } | |
885 | |
886 } | |
887 | |
888 /* | |
889 * Enable or disable mnemonics for the toplevel menus. | |
890 */ | |
891 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
892 gui_motif_set_mnemonics(int enable) |
7 | 893 { |
894 /* | |
895 * Don't enable menu mnemonics when the menu bar is disabled, LessTif | |
896 * crashes when using a mnemonic then. | |
897 */ | |
898 if (!menu_enabled) | |
899 enable = FALSE; | |
900 do_set_mnemonics(enable); | |
901 } | |
902 | |
903 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
904 do_set_mnemonics(int enable) |
7 | 905 { |
906 vimmenu_T *menu; | |
907 | |
908 for (menu = root_menu; menu != NULL; menu = menu->next) | |
909 if (menu->id != (Widget)0) | |
910 XtVaSetValues(menu->id, | |
911 XmNmnemonic, enable ? menu->mnemonic : NUL, | |
912 NULL); | |
913 } | |
914 | |
915 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
916 gui_mch_add_menu(vimmenu_T *menu, int idx) |
7 | 917 { |
918 XmString label; | |
919 Widget shell; | |
920 vimmenu_T *parent = menu->parent; | |
921 | |
922 #ifdef MOTIF_POPUP | |
923 if (menu_is_popup(menu->name)) | |
924 { | |
925 Arg arg[2]; | |
926 int n = 0; | |
927 | |
928 /* Only create the popup menu when it's actually used, otherwise there | |
929 * is a delay when using the right mouse button. */ | |
930 # if (XmVersion <= 1002) | |
931 if (mouse_model_popup()) | |
932 # endif | |
933 { | |
934 if (gui.menu_bg_pixel != INVALCOLOR) | |
935 { | |
936 XtSetArg(arg[0], XmNbackground, gui.menu_bg_pixel); n++; | |
937 } | |
938 if (gui.menu_fg_pixel != INVALCOLOR) | |
939 { | |
940 XtSetArg(arg[1], XmNforeground, gui.menu_fg_pixel); n++; | |
941 } | |
942 menu->submenu_id = XmCreatePopupMenu(textArea, "contextMenu", | |
943 arg, n); | |
944 menu->id = (Widget)0; | |
945 } | |
946 return; | |
947 } | |
948 #endif | |
949 | |
950 if (!menu_is_menubar(menu->name) | |
951 || (parent != NULL && parent->submenu_id == (Widget)0)) | |
952 return; | |
953 | |
954 label = XmStringCreate((char *)menu->dname, STRING_TAG); | |
955 if (label == NULL) | |
956 return; | |
957 menu->id = XtVaCreateWidget("subMenu", | |
958 xmCascadeButtonWidgetClass, | |
959 (parent == NULL) ? menuBar : parent->submenu_id, | |
960 XmNlabelString, label, | |
961 XmNmnemonic, p_wak[0] == 'n' ? NUL : menu->mnemonic, | |
962 #if (XmVersion >= 1002) | |
963 /* submenu: count the tearoff item (needed for LessTif) */ | |
964 XmNpositionIndex, idx + (parent != NULL | |
965 && tearoff_val == (int)XmTEAR_OFF_ENABLED ? 1 : 0), | |
966 #endif | |
967 NULL); | |
968 gui_motif_menu_colors(menu->id); | |
969 gui_motif_menu_fontlist(menu->id); | |
970 XmStringFree(label); | |
971 | |
972 if (menu->id == (Widget)0) /* failed */ | |
973 return; | |
974 | |
975 /* add accelerator text */ | |
976 gui_motif_add_actext(menu); | |
977 | |
978 shell = XtVaCreateWidget("subMenuShell", | |
979 xmMenuShellWidgetClass, menu->id, | |
980 XmNwidth, 1, | |
981 XmNheight, 1, | |
982 NULL); | |
983 gui_motif_menu_colors(shell); | |
984 menu->submenu_id = XtVaCreateWidget("rowColumnMenu", | |
985 xmRowColumnWidgetClass, shell, | |
986 XmNrowColumnType, XmMENU_PULLDOWN, | |
987 NULL); | |
988 gui_motif_menu_colors(menu->submenu_id); | |
989 | |
990 if (menu->submenu_id == (Widget)0) /* failed */ | |
991 return; | |
992 | |
993 #if (XmVersion >= 1002) | |
994 /* Set the colors for the tear off widget */ | |
995 toggle_tearoff(menu->submenu_id); | |
996 #endif | |
997 | |
998 XtVaSetValues(menu->id, | |
999 XmNsubMenuId, menu->submenu_id, | |
1000 NULL); | |
1001 | |
1002 /* | |
1003 * The "Help" menu is a special case, and should be placed at the far | |
1004 * right hand side of the menu-bar. It's recognized by its high priority. | |
1005 */ | |
1006 if (parent == NULL && menu->priority >= 9999) | |
1007 XtVaSetValues(menuBar, | |
1008 XmNmenuHelpWidget, menu->id, | |
1009 NULL); | |
1010 | |
1011 /* | |
1012 * When we add a top-level item to the menu bar, we can figure out how | |
1013 * high the menu bar should be. | |
1014 */ | |
1015 if (parent == NULL) | |
1016 gui_mch_compute_menu_height(menu->id); | |
1017 } | |
1018 | |
1019 | |
1020 /* | |
1021 * Add mnemonic and accelerator text to a menu button. | |
1022 */ | |
1023 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1024 gui_motif_add_actext(vimmenu_T *menu) |
7 | 1025 { |
1026 XmString label; | |
1027 | |
1207 | 1028 /* Add accelerator text, if there is one */ |
7 | 1029 if (menu->actext != NULL && menu->id != (Widget)0) |
1030 { | |
1031 label = XmStringCreate((char *)menu->actext, STRING_TAG); | |
1032 if (label == NULL) | |
1033 return; | |
1034 XtVaSetValues(menu->id, XmNacceleratorText, label, NULL); | |
1035 XmStringFree(label); | |
1036 } | |
1037 } | |
1038 | |
1039 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1040 gui_mch_toggle_tearoffs(int enable) |
7 | 1041 { |
1042 #if (XmVersion >= 1002) | |
1043 if (enable) | |
1044 tearoff_val = (int)XmTEAR_OFF_ENABLED; | |
1045 else | |
1046 tearoff_val = (int)XmTEAR_OFF_DISABLED; | |
1047 toggle_tearoff(menuBar); | |
1048 gui_mch_recurse_tearoffs(root_menu); | |
1049 #endif | |
1050 } | |
1051 | |
1052 #if (XmVersion >= 1002) | |
1053 /* | |
1054 * Set the tearoff for one menu widget on or off, and set the color of the | |
1055 * tearoff widget. | |
1056 */ | |
1057 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1058 toggle_tearoff(Widget wid) |
7 | 1059 { |
1060 Widget w; | |
1061 | |
1062 XtVaSetValues(wid, XmNtearOffModel, tearoff_val, NULL); | |
1063 if (tearoff_val == (int)XmTEAR_OFF_ENABLED | |
1064 && (w = XmGetTearOffControl(wid)) != (Widget)0) | |
1065 gui_motif_menu_colors(w); | |
1066 } | |
1067 | |
1068 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1069 gui_mch_recurse_tearoffs(vimmenu_T *menu) |
7 | 1070 { |
1071 while (menu != NULL) | |
1072 { | |
1073 if (!menu_is_popup(menu->name)) | |
1074 { | |
1075 if (menu->submenu_id != (Widget)0) | |
1076 toggle_tearoff(menu->submenu_id); | |
1077 gui_mch_recurse_tearoffs(menu->children); | |
1078 } | |
1079 menu = menu->next; | |
1080 } | |
1081 } | |
1082 #endif | |
1083 | |
1084 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1085 gui_mch_text_area_extra_height(void) |
7 | 1086 { |
1087 Dimension shadowHeight; | |
1088 | |
1089 XtVaGetValues(textAreaForm, XmNshadowThickness, &shadowHeight, NULL); | |
1090 return shadowHeight; | |
1091 } | |
1092 | |
1093 /* | |
1094 * Compute the height of the menu bar. | |
1095 * We need to check all the items for their position and height, for the case | |
1096 * there are several rows, and/or some characters extend higher or lower. | |
1097 */ | |
1098 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1099 gui_mch_compute_menu_height( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1100 Widget id) /* can be NULL when deleting menu */ |
7 | 1101 { |
1102 Dimension y, maxy; | |
1103 Dimension margin, shadow; | |
1104 vimmenu_T *mp; | |
1105 static Dimension height = 21; /* normal height of a menu item */ | |
1106 | |
1107 /* | |
1108 * Get the height of the new item, before managing it, because it will | |
1109 * still reflect the font size. After managing it depends on the menu | |
1110 * height, which is what we just wanted to get!. | |
1111 */ | |
1112 if (id != (Widget)0) | |
1113 XtVaGetValues(id, XmNheight, &height, NULL); | |
1114 | |
1115 /* Find any menu Widget, to be able to call XtManageChild() */ | |
1116 else | |
1117 for (mp = root_menu; mp != NULL; mp = mp->next) | |
1118 if (mp->id != (Widget)0 && menu_is_menubar(mp->name)) | |
1119 { | |
1120 id = mp->id; | |
1121 break; | |
1122 } | |
1123 | |
1124 /* | |
1125 * Now manage the menu item, to make them all be positioned (makes an | |
1126 * extra row when needed, removes it when not needed). | |
1127 */ | |
1128 if (id != (Widget)0) | |
1129 XtManageChild(id); | |
1130 | |
1131 /* | |
1132 * Now find the menu item that is the furthest down, and get it's position. | |
1133 */ | |
1134 maxy = 0; | |
1135 for (mp = root_menu; mp != NULL; mp = mp->next) | |
1136 { | |
1137 if (mp->id != (Widget)0 && menu_is_menubar(mp->name)) | |
1138 { | |
1139 XtVaGetValues(mp->id, XmNy, &y, NULL); | |
1140 if (y > maxy) | |
1141 maxy = y; | |
1142 } | |
1143 } | |
1144 | |
1145 XtVaGetValues(menuBar, | |
1146 XmNmarginHeight, &margin, | |
1147 XmNshadowThickness, &shadow, | |
1148 NULL); | |
1149 | |
1150 /* | |
1151 * This computation is the result of trial-and-error: | |
1152 * maxy = The maximum position of an item; required for when there are | |
1153 * two or more rows | |
1154 * height = height of an item, before managing it; Hopefully this will | |
1155 * change with the font height. Includes shadow-border. | |
1156 * shadow = shadow-border; must be subtracted from the height. | |
1157 * margin = margin around the menu buttons; Must be added. | |
1158 * Add 4 for the underlining of shortcut keys. | |
1159 */ | |
1160 gui.menu_height = maxy + height - 2 * shadow + 2 * margin + 4; | |
1161 | |
1162 /* Somehow the menu bar doesn't resize automatically. Set it here, | |
1163 * even though this is a catch 22. Don't do this when starting up, | |
1164 * somehow the menu gets very high then. */ | |
1165 if (gui.shell_created) | |
1166 XtVaSetValues(menuBar, XmNheight, gui.menu_height, NULL); | |
48 | 1167 } |
1168 | |
147 | 1169 #ifdef FEAT_TOOLBAR |
1170 | |
48 | 1171 /* |
1172 * Icons used by the toolbar code. | |
1173 */ | |
1174 #include "gui_x11_pm.h" | |
1175 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
1176 static int check_xpm(char_u *path); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
1177 static char **get_toolbar_pixmap(vimmenu_T *menu, char **fname); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
1178 static int add_pixmap_args(vimmenu_T *menu, Arg *args, int n); |
48 | 1179 |
1180 /* | |
1181 * Read an Xpm file. Return OK or FAIL. | |
1182 */ | |
1183 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1184 check_xpm(char_u *path) |
48 | 1185 { |
1186 XpmAttributes attrs; | |
1187 int status; | |
1188 Pixmap mask; | |
1189 Pixmap map; | |
1190 | |
1191 attrs.valuemask = 0; | |
1192 | |
1193 /* Create the "sensitive" pixmap */ | |
1194 status = XpmReadFileToPixmap(gui.dpy, | |
1195 RootWindow(gui.dpy, DefaultScreen(gui.dpy)), | |
1196 (char *)path, &map, &mask, &attrs); | |
1197 XpmFreeAttributes(&attrs); | |
1198 | |
1199 if (status == XpmSuccess) | |
1200 return OK; | |
1201 return FAIL; | |
1202 } | |
1203 | |
1204 | |
1205 /* | |
1206 * Allocated a pixmap for toolbar menu "menu". | |
161 | 1207 * When it's to be read from a file, "fname" is set to the file name |
1208 * (in allocated memory). | |
48 | 1209 * Return a blank pixmap if it fails. |
1210 */ | |
1211 static char ** | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1212 get_toolbar_pixmap(vimmenu_T *menu, char **fname) |
48 | 1213 { |
1214 char_u buf[MAXPATHL]; /* buffer storing expanded pathname */ | |
1215 char **xpm = NULL; /* xpm array */ | |
1216 int res; | |
1217 | |
161 | 1218 *fname = NULL; |
48 | 1219 buf[0] = NUL; /* start with NULL path */ |
1220 | |
1221 if (menu->iconfile != NULL) | |
1222 { | |
1223 /* Use the "icon=" argument. */ | |
1224 gui_find_iconfile(menu->iconfile, buf, "xpm"); | |
1225 res = check_xpm(buf); | |
1226 | |
1227 /* If it failed, try using the menu name. */ | |
1228 if (res == FAIL && gui_find_bitmap(menu->name, buf, "xpm") == OK) | |
1229 res = check_xpm(buf); | |
1230 if (res == OK) | |
161 | 1231 { |
1232 *fname = (char *)vim_strsave(buf); | |
48 | 1233 return tb_blank_xpm; |
161 | 1234 } |
48 | 1235 } |
1236 | |
1237 if (menu->icon_builtin || gui_find_bitmap(menu->name, buf, "xpm") == FAIL) | |
1238 { | |
1239 if (menu->iconidx >= 0 && menu->iconidx | |
1887 | 1240 < (int)(sizeof(built_in_pixmaps) / sizeof(built_in_pixmaps[0]))) |
48 | 1241 xpm = built_in_pixmaps[menu->iconidx]; |
1242 else | |
1243 xpm = tb_blank_xpm; | |
1244 } | |
1245 | |
1246 return xpm; | |
7 | 1247 } |
161 | 1248 |
1249 /* | |
1250 * Add arguments for the toolbar pixmap to a menu item. | |
1251 */ | |
1252 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1253 add_pixmap_args(vimmenu_T *menu, Arg *args, int n) |
161 | 1254 { |
1255 vim_free(menu->xpm_fname); | |
1256 menu->xpm = get_toolbar_pixmap(menu, &menu->xpm_fname); | |
1257 if (menu->xpm == NULL) | |
1258 { | |
1259 XtSetArg(args[n], XmNlabelType, XmSTRING); n++; | |
1260 } | |
1261 else | |
1262 { | |
1263 if (menu->xpm_fname != NULL) | |
1264 { | |
1265 XtSetArg(args[n], XmNpixmapFile, menu->xpm_fname); n++; | |
1266 } | |
1267 XtSetArg(args[n], XmNpixmapData, menu->xpm); n++; | |
1268 XtSetArg(args[n], XmNlabelLocation, XmBOTTOM); n++; | |
1269 } | |
1270 return n; | |
1271 } | |
147 | 1272 #endif /* FEAT_TOOLBAR */ |
7 | 1273 |
1274 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1275 gui_mch_add_menu_item(vimmenu_T *menu, int idx) |
7 | 1276 { |
1277 XmString label; | |
1278 vimmenu_T *parent = menu->parent; | |
1279 | |
1280 # ifdef EBCDIC | |
1281 menu->mnemonic = 0; | |
1282 # endif | |
1283 | |
1284 # if (XmVersion <= 1002) | |
1285 /* Don't add Popup menu items when the popup menu isn't used. */ | |
1286 if (menu_is_child_of_popup(menu) && !mouse_model_popup()) | |
1287 return; | |
1288 # endif | |
1289 | |
1290 # ifdef FEAT_TOOLBAR | |
1291 if (menu_is_toolbar(parent->name)) | |
1292 { | |
1293 WidgetClass type; | |
1294 XmString xms = NULL; /* fallback label if pixmap not found */ | |
1295 int n; | |
1296 Arg args[18]; | |
1297 | |
1298 n = 0; | |
1299 if (menu_is_separator(menu->name)) | |
1300 { | |
1301 char *cp; | |
1302 Dimension wid; | |
1303 | |
1304 /* | |
1305 * A separator has the format "-sep%d[:%d]-". The optional :%d is | |
1306 * a width specifier. If no width is specified then we choose one. | |
1307 */ | |
1308 cp = (char *)vim_strchr(menu->name, ':'); | |
1309 if (cp != NULL) | |
1310 wid = (Dimension)atoi(++cp); | |
1311 else | |
1312 wid = 4; | |
1313 | |
1314 type = xmSeparatorWidgetClass; | |
1315 XtSetArg(args[n], XmNwidth, wid); n++; | |
1316 XtSetArg(args[n], XmNminWidth, wid); n++; | |
1317 XtSetArg(args[n], XmNorientation, XmVERTICAL); n++; | |
48 | 1318 XtSetArg(args[n], XmNseparatorType, XmSHADOW_ETCHED_IN); n++; |
7 | 1319 } |
1320 else | |
1321 { | |
1322 /* Without shadows one can't sense whatever the button has been | |
4352 | 1323 * pressed or not! However we want to save a bit of space... |
44 | 1324 * Need the highlightThickness to see the focus. |
7 | 1325 */ |
44 | 1326 XtSetArg(args[n], XmNhighlightThickness, 1); n++; |
7 | 1327 XtSetArg(args[n], XmNhighlightOnEnter, True); n++; |
1328 XtSetArg(args[n], XmNmarginWidth, 0); n++; | |
1329 XtSetArg(args[n], XmNmarginHeight, 0); n++; | |
54 | 1330 XtSetArg(args[n], XmNtraversalOn, False); n++; |
48 | 1331 /* Set the label here, so that we can switch between icons/text |
1332 * by changing the XmNlabelType resource. */ | |
1333 xms = XmStringCreate((char *)menu->dname, STRING_TAG); | |
1334 XtSetArg(args[n], XmNlabelString, xms); n++; | |
1335 | |
161 | 1336 n = add_pixmap_args(menu, args, n); |
1337 | |
48 | 1338 type = xmEnhancedButtonWidgetClass; |
7 | 1339 } |
1340 | |
1341 XtSetArg(args[n], XmNpositionIndex, idx); n++; | |
1342 if (menu->id == NULL) | |
1343 { | |
1344 menu->id = XtCreateManagedWidget((char *)menu->dname, | |
1345 type, toolBar, args, n); | |
48 | 1346 if (menu->id != NULL && type == xmEnhancedButtonWidgetClass) |
7 | 1347 { |
1348 XtAddCallback(menu->id, | |
1349 XmNactivateCallback, gui_x11_menu_cb, menu); | |
1350 # ifdef FEAT_FOOTER | |
1351 XtAddEventHandler(menu->id, EnterWindowMask, False, | |
1352 toolbarbutton_enter_cb, menu); | |
1353 XtAddEventHandler(menu->id, LeaveWindowMask, False, | |
1354 toolbarbutton_leave_cb, menu); | |
1355 # endif | |
1356 } | |
1357 } | |
1358 else | |
1359 XtSetValues(menu->id, args, n); | |
1360 if (xms != NULL) | |
1361 XmStringFree(xms); | |
1362 | |
844 | 1363 # ifdef FEAT_BEVAL |
7 | 1364 gui_mch_menu_set_tip(menu); |
844 | 1365 # endif |
7 | 1366 |
1367 menu->parent = parent; | |
1368 menu->submenu_id = NULL; | |
1369 /* When adding first item to toolbar it might have to be enabled .*/ | |
1370 if (!XtIsManaged(XtParent(toolBar)) | |
1371 && vim_strchr(p_go, GO_TOOLBAR) != NULL) | |
1372 gui_mch_show_toolbar(TRUE); | |
1373 gui.toolbar_height = gui_mch_compute_toolbar_height(); | |
1374 return; | |
1375 } /* toolbar menu item */ | |
1376 # endif | |
1377 | |
1378 /* No parent, must be a non-menubar menu */ | |
1379 if (parent->submenu_id == (Widget)0) | |
1380 return; | |
1381 | |
1382 menu->submenu_id = (Widget)0; | |
1383 | |
1384 /* Add menu separator */ | |
1385 if (menu_is_separator(menu->name)) | |
1386 { | |
1387 menu->id = XtVaCreateWidget("subMenu", | |
1388 xmSeparatorGadgetClass, parent->submenu_id, | |
1389 #if (XmVersion >= 1002) | |
1390 /* count the tearoff item (needed for LessTif) */ | |
1391 XmNpositionIndex, idx + (tearoff_val == (int)XmTEAR_OFF_ENABLED | |
1392 ? 1 : 0), | |
1393 #endif | |
1394 NULL); | |
1395 gui_motif_menu_colors(menu->id); | |
1396 return; | |
1397 } | |
1398 | |
1399 label = XmStringCreate((char *)menu->dname, STRING_TAG); | |
1400 if (label == NULL) | |
1401 return; | |
1402 menu->id = XtVaCreateWidget("subMenu", | |
1403 xmPushButtonWidgetClass, parent->submenu_id, | |
1404 XmNlabelString, label, | |
1405 XmNmnemonic, menu->mnemonic, | |
1406 #if (XmVersion >= 1002) | |
1407 /* count the tearoff item (needed for LessTif) */ | |
1408 XmNpositionIndex, idx + (tearoff_val == (int)XmTEAR_OFF_ENABLED | |
1409 ? 1 : 0), | |
1410 #endif | |
1411 NULL); | |
1412 gui_motif_menu_colors(menu->id); | |
1413 gui_motif_menu_fontlist(menu->id); | |
1414 XmStringFree(label); | |
1415 | |
1416 if (menu->id != (Widget)0) | |
1417 { | |
1418 XtAddCallback(menu->id, XmNactivateCallback, gui_x11_menu_cb, | |
1419 (XtPointer)menu); | |
1420 /* add accelerator text */ | |
1421 gui_motif_add_actext(menu); | |
1422 } | |
1423 } | |
1424 | |
1425 #if (XmVersion <= 1002) || defined(PROTO) | |
1426 /* | |
1427 * This function will destroy/create the popup menus dynamically, | |
1428 * according to the value of 'mousemodel'. | |
1429 * This will fix the "right mouse button freeze" that occurs when | |
1430 * there exists a popup menu but it isn't managed. | |
1431 */ | |
1432 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1433 gui_motif_update_mousemodel(vimmenu_T *menu) |
7 | 1434 { |
1435 int idx = 0; | |
1436 | |
1437 /* When GUI hasn't started the menus have not been created. */ | |
1438 if (!gui.in_use) | |
1439 return; | |
1440 | |
1441 while (menu) | |
1442 { | |
1443 if (menu->children != NULL) | |
1444 { | |
1445 if (menu_is_popup(menu->name)) | |
1446 { | |
1447 if (mouse_model_popup()) | |
1448 { | |
1449 /* Popup menu will be used. Create the popup menus. */ | |
1450 gui_mch_add_menu(menu, idx); | |
1451 gui_motif_update_mousemodel(menu->children); | |
1452 } | |
1453 else | |
1454 { | |
1455 /* Popup menu will not be used. Destroy the popup menus. */ | |
1456 gui_motif_update_mousemodel(menu->children); | |
1457 gui_mch_destroy_menu(menu); | |
1458 } | |
1459 } | |
1460 } | |
1461 else if (menu_is_child_of_popup(menu)) | |
1462 { | |
1463 if (mouse_model_popup()) | |
1464 gui_mch_add_menu_item(menu, idx); | |
1465 else | |
1466 gui_mch_destroy_menu(menu); | |
1467 } | |
1468 menu = menu->next; | |
1469 ++idx; | |
1470 } | |
1471 } | |
1472 #endif | |
1473 | |
1474 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1475 gui_mch_new_menu_colors(void) |
7 | 1476 { |
1477 if (menuBar == (Widget)0) | |
1478 return; | |
1479 gui_motif_menu_colors(menuBar); | |
1480 #ifdef FEAT_TOOLBAR | |
1481 gui_motif_menu_colors(toolBarFrame); | |
1482 gui_motif_menu_colors(toolBar); | |
1483 #endif | |
1484 | |
54 | 1485 submenu_change(root_menu, TRUE); |
7 | 1486 } |
1487 | |
1488 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1489 gui_mch_new_menu_font(void) |
7 | 1490 { |
1491 if (menuBar == (Widget)0) | |
1492 return; | |
54 | 1493 submenu_change(root_menu, FALSE); |
7 | 1494 { |
1495 Dimension height; | |
1496 Position w, h; | |
1497 | |
1498 XtVaGetValues(menuBar, XmNheight, &height, NULL); | |
1499 gui.menu_height = height; | |
1500 | |
1501 XtVaGetValues(vimShell, XtNwidth, &w, XtNheight, &h, NULL); | |
1502 gui_resize_shell(w, h | |
1503 #ifdef FEAT_XIM | |
1504 - xim_get_status_area_height() | |
1505 #endif | |
1506 ); | |
1507 } | |
811 | 1508 gui_set_shellsize(FALSE, TRUE, RESIZE_VERT); |
7 | 1509 ui_new_shellsize(); |
1510 } | |
1511 | |
1512 #if defined(FEAT_BEVAL) || defined(PROTO) | |
1513 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1514 gui_mch_new_tooltip_font(void) |
7 | 1515 { |
1516 # ifdef FEAT_TOOLBAR | |
1517 vimmenu_T *menu; | |
1518 | |
1519 if (toolBar == (Widget)0) | |
1520 return; | |
1521 | |
1522 menu = gui_find_menu((char_u *)"ToolBar"); | |
1523 if (menu != NULL) | |
54 | 1524 submenu_change(menu, FALSE); |
7 | 1525 # endif |
1526 } | |
1527 | |
1528 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1529 gui_mch_new_tooltip_colors(void) |
7 | 1530 { |
1531 # ifdef FEAT_TOOLBAR | |
1532 vimmenu_T *toolbar; | |
1533 | |
1534 if (toolBar == (Widget)0) | |
1535 return; | |
1536 | |
1537 toolbar = gui_find_menu((char_u *)"ToolBar"); | |
1538 if (toolbar != NULL) | |
54 | 1539 submenu_change(toolbar, TRUE); |
7 | 1540 # endif |
1541 } | |
1542 #endif | |
1543 | |
1544 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1545 submenu_change( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1546 vimmenu_T *menu, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1547 int colors) /* TRUE for colors, FALSE for font */ |
7 | 1548 { |
1549 vimmenu_T *mp; | |
1550 | |
1551 for (mp = menu; mp != NULL; mp = mp->next) | |
1552 { | |
1553 if (mp->id != (Widget)0) | |
1554 { | |
1555 if (colors) | |
1556 { | |
1557 gui_motif_menu_colors(mp->id); | |
1558 #ifdef FEAT_TOOLBAR | |
1559 /* For a toolbar item: Free the pixmap and allocate a new one, | |
1560 * so that the background color is right. */ | |
48 | 1561 if (mp->xpm != NULL) |
7 | 1562 { |
48 | 1563 int n = 0; |
1564 Arg args[18]; | |
1565 | |
161 | 1566 n = add_pixmap_args(mp, args, n); |
48 | 1567 XtSetValues(mp->id, args, n); |
7 | 1568 } |
1569 # ifdef FEAT_BEVAL | |
1570 /* If we have a tooltip, then we need to change it's font */ | |
1571 if (mp->tip != NULL) | |
1572 { | |
1573 Arg args[2]; | |
1574 | |
1575 args[0].name = XmNbackground; | |
1576 args[0].value = gui.tooltip_bg_pixel; | |
1577 args[1].name = XmNforeground; | |
1578 args[1].value = gui.tooltip_fg_pixel; | |
1579 XtSetValues(mp->tip->balloonLabel, &args[0], XtNumber(args)); | |
1580 } | |
1581 # endif | |
1582 #endif | |
1583 } | |
1584 else | |
1585 { | |
1586 gui_motif_menu_fontlist(mp->id); | |
1587 #ifdef FEAT_BEVAL | |
1588 /* If we have a tooltip, then we need to change it's font */ | |
1589 if (mp->tip != NULL) | |
1590 { | |
1591 Arg args[1]; | |
1592 | |
1593 args[0].name = XmNfontList; | |
1594 args[0].value = (XtArgVal)gui_motif_fontset2fontlist( | |
1595 &gui.tooltip_fontset); | |
1596 XtSetValues(mp->tip->balloonLabel, &args[0], XtNumber(args)); | |
1597 } | |
1598 #endif | |
1599 } | |
1600 } | |
1601 | |
1602 if (mp->children != NULL) | |
1603 { | |
1604 #if (XmVersion >= 1002) | |
1605 /* Set the colors/font for the tear off widget */ | |
1606 if (mp->submenu_id != (Widget)0) | |
1607 { | |
1608 if (colors) | |
1609 gui_motif_menu_colors(mp->submenu_id); | |
1610 else | |
1611 gui_motif_menu_fontlist(mp->submenu_id); | |
1612 toggle_tearoff(mp->submenu_id); | |
1613 } | |
1614 #endif | |
1615 /* Set the colors for the children */ | |
54 | 1616 submenu_change(mp->children, colors); |
7 | 1617 } |
1618 } | |
1619 } | |
1620 | |
1621 /* | |
1622 * Destroy the machine specific menu widget. | |
1623 */ | |
1624 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1625 gui_mch_destroy_menu(vimmenu_T *menu) |
7 | 1626 { |
1627 /* Please be sure to destroy the parent widget first (i.e. menu->id). | |
1628 * On the other hand, problems have been reported that the submenu must be | |
1629 * deleted first... | |
1630 * | |
1631 * This code should be basically identical to that in the file gui_athena.c | |
1632 * because they are both Xt based. | |
1633 */ | |
1634 if (menu->submenu_id != (Widget)0) | |
1635 { | |
1636 XtDestroyWidget(menu->submenu_id); | |
1637 menu->submenu_id = (Widget)0; | |
1638 } | |
1639 | |
1640 if (menu->id != (Widget)0) | |
1641 { | |
1642 Widget parent; | |
1643 | |
1644 parent = XtParent(menu->id); | |
1645 #if defined(FEAT_TOOLBAR) && defined(FEAT_BEVAL) | |
216 | 1646 if (parent == toolBar && menu->tip != NULL) |
7 | 1647 { |
1648 /* We try to destroy this before the actual menu, because there are | |
1649 * callbacks, etc. that will be unregistered during the tooltip | |
1650 * destruction. | |
1651 * | |
1652 * If you call "gui_mch_destroy_beval_area()" after destroying | |
1653 * menu->id, then the tooltip's window will have already been | |
1654 * deallocated by Xt, and unknown behaviour will ensue (probably | |
1655 * a core dump). | |
1656 */ | |
1657 gui_mch_destroy_beval_area(menu->tip); | |
1658 menu->tip = NULL; | |
1659 } | |
1660 #endif | |
1661 XtDestroyWidget(menu->id); | |
1662 menu->id = (Widget)0; | |
1663 if (parent == menuBar) | |
1664 gui_mch_compute_menu_height((Widget)0); | |
1665 #ifdef FEAT_TOOLBAR | |
1666 else if (parent == toolBar) | |
1667 { | |
1668 Cardinal num_children; | |
1669 | |
1670 /* When removing last toolbar item, don't display the toolbar. */ | |
1671 XtVaGetValues(toolBar, XmNnumChildren, &num_children, NULL); | |
1672 if (num_children == 0) | |
1673 gui_mch_show_toolbar(FALSE); | |
1674 else | |
1675 gui.toolbar_height = gui_mch_compute_toolbar_height(); | |
1676 } | |
1677 #endif | |
1678 } | |
1679 } | |
1680 | |
1681 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1682 gui_mch_show_popupmenu(vimmenu_T *menu UNUSED) |
7 | 1683 { |
1684 #ifdef MOTIF_POPUP | |
1685 XmMenuPosition(menu->submenu_id, gui_x11_get_last_mouse_event()); | |
1686 XtManageChild(menu->submenu_id); | |
1687 #endif | |
1688 } | |
1689 | |
1690 #endif /* FEAT_MENU */ | |
1691 | |
1692 /* | |
1693 * Set the menu and scrollbar colors to their default values. | |
1694 */ | |
1695 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1696 gui_mch_def_colors(void) |
7 | 1697 { |
1698 if (gui.in_use) | |
1699 { | |
1700 /* Use the values saved when starting up. These should come from the | |
1701 * window manager or a resources file. */ | |
1702 gui.menu_fg_pixel = gui.menu_def_fg_pixel; | |
1703 gui.menu_bg_pixel = gui.menu_def_bg_pixel; | |
1704 gui.scroll_fg_pixel = gui.scroll_def_fg_pixel; | |
1705 gui.scroll_bg_pixel = gui.scroll_def_bg_pixel; | |
1706 #ifdef FEAT_BEVAL | |
1707 gui.tooltip_fg_pixel = | |
1708 gui_get_color((char_u *)gui.rsrc_tooltip_fg_name); | |
1709 gui.tooltip_bg_pixel = | |
1710 gui_get_color((char_u *)gui.rsrc_tooltip_bg_name); | |
1711 #endif | |
1712 } | |
1713 } | |
1714 | |
1715 | |
1716 /* | |
1717 * Scrollbar stuff. | |
1718 */ | |
1719 | |
1720 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1721 gui_mch_set_scrollbar_thumb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1722 scrollbar_T *sb, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1723 long val, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1724 long size, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1725 long max) |
7 | 1726 { |
1727 if (sb->id != (Widget)0) | |
1728 XtVaSetValues(sb->id, | |
1729 XmNvalue, val, | |
1730 XmNsliderSize, size, | |
1731 XmNpageIncrement, (size > 2 ? size - 2 : 1), | |
1732 XmNmaximum, max + 1, /* Motif has max one past the end */ | |
1733 NULL); | |
1734 } | |
1735 | |
1736 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1737 gui_mch_set_scrollbar_pos( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1738 scrollbar_T *sb, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1739 int x, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1740 int y, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1741 int w, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1742 int h) |
7 | 1743 { |
1744 if (sb->id != (Widget)0) | |
1745 { | |
1746 if (sb->type == SBAR_LEFT || sb->type == SBAR_RIGHT) | |
1747 { | |
1748 if (y == 0) | |
1749 h -= gui.border_offset; | |
1750 else | |
1751 y -= gui.border_offset; | |
1752 XtVaSetValues(sb->id, | |
1753 XmNtopOffset, y, | |
1754 XmNbottomOffset, -y - h, | |
1755 XmNwidth, w, | |
1756 NULL); | |
1757 } | |
1758 else | |
1759 XtVaSetValues(sb->id, | |
1760 XmNtopOffset, y, | |
1761 XmNleftOffset, x, | |
1762 XmNrightOffset, gui.which_scrollbars[SBAR_RIGHT] | |
1763 ? gui.scrollbar_width : 0, | |
1764 XmNheight, h, | |
1765 NULL); | |
1766 XtManageChild(sb->id); | |
1767 } | |
1768 } | |
1769 | |
1770 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1771 gui_mch_enable_scrollbar(scrollbar_T *sb, int flag) |
7 | 1772 { |
1773 Arg args[16]; | |
1774 int n; | |
1775 | |
1776 if (sb->id != (Widget)0) | |
1777 { | |
1778 n = 0; | |
1779 if (flag) | |
1780 { | |
1781 switch (sb->type) | |
1782 { | |
1783 case SBAR_LEFT: | |
1784 XtSetArg(args[n], XmNleftOffset, gui.scrollbar_width); n++; | |
1785 break; | |
1786 | |
1787 case SBAR_RIGHT: | |
1788 XtSetArg(args[n], XmNrightOffset, gui.scrollbar_width); n++; | |
1789 break; | |
1790 | |
1791 case SBAR_BOTTOM: | |
1792 XtSetArg(args[n], XmNbottomOffset, gui.scrollbar_height);n++; | |
1793 break; | |
1794 } | |
1795 XtSetValues(textArea, args, n); | |
1796 XtManageChild(sb->id); | |
1797 } | |
1798 else | |
1799 { | |
1800 if (!gui.which_scrollbars[sb->type]) | |
1801 { | |
1802 /* The scrollbars of this type are all disabled, adjust the | |
1803 * textArea attachment offset. */ | |
1804 switch (sb->type) | |
1805 { | |
1806 case SBAR_LEFT: | |
1807 XtSetArg(args[n], XmNleftOffset, 0); n++; | |
1808 break; | |
1809 | |
1810 case SBAR_RIGHT: | |
1811 XtSetArg(args[n], XmNrightOffset, 0); n++; | |
1812 break; | |
1813 | |
1814 case SBAR_BOTTOM: | |
1815 XtSetArg(args[n], XmNbottomOffset, 0);n++; | |
1816 break; | |
1817 } | |
1818 XtSetValues(textArea, args, n); | |
1819 } | |
1820 XtUnmanageChild(sb->id); | |
1821 } | |
1822 } | |
1823 } | |
1824 | |
1825 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1826 gui_mch_create_scrollbar( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1827 scrollbar_T *sb, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1828 int orient) /* SBAR_VERT or SBAR_HORIZ */ |
7 | 1829 { |
1830 Arg args[16]; | |
1831 int n; | |
1832 | |
1833 n = 0; | |
1834 XtSetArg(args[n], XmNminimum, 0); n++; | |
1835 XtSetArg(args[n], XmNorientation, | |
1836 (orient == SBAR_VERT) ? XmVERTICAL : XmHORIZONTAL); n++; | |
1837 | |
1838 switch (sb->type) | |
1839 { | |
1840 case SBAR_LEFT: | |
1841 XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++; | |
1842 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_OPPOSITE_FORM); n++; | |
1843 XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++; | |
1844 break; | |
1845 | |
1846 case SBAR_RIGHT: | |
1847 XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++; | |
1848 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_OPPOSITE_FORM); n++; | |
1849 XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++; | |
1850 break; | |
1851 | |
1852 case SBAR_BOTTOM: | |
1853 XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++; | |
1854 XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++; | |
1855 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++; | |
1856 break; | |
1857 } | |
1858 | |
1859 sb->id = XtCreateWidget("scrollBar", | |
1860 xmScrollBarWidgetClass, textAreaForm, args, n); | |
1861 | |
1862 /* Remember the default colors, needed for ":hi clear". */ | |
1863 if (gui.scroll_def_bg_pixel == (guicolor_T)0 | |
1864 && gui.scroll_def_fg_pixel == (guicolor_T)0) | |
1865 XtVaGetValues(sb->id, | |
1866 XmNbackground, &gui.scroll_def_bg_pixel, | |
1867 XmNforeground, &gui.scroll_def_fg_pixel, | |
1868 NULL); | |
1869 | |
1870 if (sb->id != (Widget)0) | |
1871 { | |
1872 gui_mch_set_scrollbar_colors(sb); | |
1873 XtAddCallback(sb->id, XmNvalueChangedCallback, | |
1874 scroll_cb, (XtPointer)sb->ident); | |
1875 XtAddCallback(sb->id, XmNdragCallback, | |
1876 scroll_cb, (XtPointer)sb->ident); | |
1877 XtAddEventHandler(sb->id, KeyPressMask, FALSE, gui_x11_key_hit_cb, | |
1878 (XtPointer)0); | |
1879 } | |
1880 } | |
1881 | |
1882 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
1883 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1884 gui_mch_destroy_scrollbar(scrollbar_T *sb) |
7 | 1885 { |
1886 if (sb->id != (Widget)0) | |
1887 XtDestroyWidget(sb->id); | |
1888 } | |
1889 #endif | |
1890 | |
1891 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1892 gui_mch_set_scrollbar_colors(scrollbar_T *sb) |
7 | 1893 { |
1894 if (sb->id != (Widget)0) | |
1895 { | |
1896 if (gui.scroll_bg_pixel != INVALCOLOR) | |
1897 { | |
1898 #if (XmVersion>=1002) | |
1899 XmChangeColor(sb->id, gui.scroll_bg_pixel); | |
1900 #else | |
1901 XtVaSetValues(sb->id, | |
1902 XmNtroughColor, gui.scroll_bg_pixel, | |
1903 NULL); | |
1904 #endif | |
1905 } | |
1906 | |
1907 if (gui.scroll_fg_pixel != INVALCOLOR) | |
1908 XtVaSetValues(sb->id, | |
1909 XmNforeground, gui.scroll_fg_pixel, | |
1910 #if (XmVersion<1002) | |
1911 XmNbackground, gui.scroll_fg_pixel, | |
1912 #endif | |
1913 NULL); | |
1914 } | |
1915 | |
1916 /* This is needed for the rectangle below the vertical scrollbars. */ | |
1917 if (sb == &gui.bottom_sbar && textAreaForm != (Widget)0) | |
1918 gui_motif_scroll_colors(textAreaForm); | |
1919 } | |
1920 | |
1921 /* | |
1922 * Miscellaneous stuff: | |
1923 */ | |
1924 | |
1925 Window | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1926 gui_x11_get_wid(void) |
7 | 1927 { |
1928 return(XtWindow(textArea)); | |
1929 } | |
1930 | |
44 | 1931 /* |
1932 * Look for a widget in the widget tree w, with a mnemonic matching keycode. | |
1933 * When one is found, simulate a button press on that widget and give it the | |
1934 * keyboard focus. If the mnemonic is on a label, look in the userData field | |
1935 * of the label to see if it points to another widget, and give that the focus. | |
1936 */ | |
1937 static void | |
1938 do_mnemonic(Widget w, unsigned int keycode) | |
1939 { | |
1940 WidgetList children; | |
1941 int numChildren, i; | |
1942 Boolean isMenu; | |
1943 KeySym mnemonic = '\0'; | |
1944 char mneString[2]; | |
1945 Widget userData; | |
1946 unsigned char rowColType; | |
1947 | |
1948 if (XtIsComposite(w)) | |
1949 { | |
1950 if (XtClass(w) == xmRowColumnWidgetClass) | |
1951 { | |
1604 | 1952 XtVaGetValues(w, XmNrowColumnType, &rowColType, NULL); |
44 | 1953 isMenu = (rowColType != (unsigned char)XmWORK_AREA); |
1954 } | |
1955 else | |
1956 isMenu = False; | |
1957 if (!isMenu) | |
1958 { | |
1959 XtVaGetValues(w, XmNchildren, &children, XmNnumChildren, | |
1604 | 1960 &numChildren, NULL); |
44 | 1961 for (i = 0; i < numChildren; i++) |
1962 do_mnemonic(children[i], keycode); | |
1963 } | |
1964 } | |
1965 else | |
1966 { | |
1604 | 1967 XtVaGetValues(w, XmNmnemonic, &mnemonic, NULL); |
44 | 1968 if (mnemonic != '\0') |
1969 { | |
1970 mneString[0] = mnemonic; | |
1971 mneString[1] = '\0'; | |
1972 if (XKeysymToKeycode(XtDisplay(XtParent(w)), | |
1973 XStringToKeysym(mneString)) == keycode) | |
1974 { | |
1975 if (XtClass(w) == xmLabelWidgetClass | |
1976 || XtClass(w) == xmLabelGadgetClass) | |
1977 { | |
1604 | 1978 XtVaGetValues(w, XmNuserData, &userData, NULL); |
44 | 1979 if (userData != NULL && XtIsWidget(userData)) |
1980 XmProcessTraversal(userData, XmTRAVERSE_CURRENT); | |
1981 } | |
1982 else | |
1983 { | |
1984 XKeyPressedEvent keyEvent; | |
1985 | |
1986 XmProcessTraversal(w, XmTRAVERSE_CURRENT); | |
1987 | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2137
diff
changeset
|
1988 vim_memset((char *) &keyEvent, 0, sizeof(XKeyPressedEvent)); |
44 | 1989 keyEvent.type = KeyPress; |
1990 keyEvent.serial = 1; | |
1991 keyEvent.send_event = True; | |
1992 keyEvent.display = XtDisplay(w); | |
1993 keyEvent.window = XtWindow(w); | |
1994 XtCallActionProc(w, "Activate", (XEvent *) & keyEvent, | |
1995 NULL, 0); | |
1996 } | |
1997 } | |
1998 } | |
1999 } | |
2000 } | |
2001 | |
2002 /* | |
2003 * Callback routine for dialog mnemonic processing. | |
2004 */ | |
2005 static void | |
1887 | 2006 mnemonic_event(Widget w, XtPointer call_data UNUSED, XKeyEvent *event) |
44 | 2007 { |
2008 do_mnemonic(w, event->keycode); | |
2009 } | |
2010 | |
2011 | |
2012 /* | |
2013 * Search the widget tree under w for widgets with mnemonics. When found, add | |
2014 * a passive grab to the dialog widget for the mnemonic character, thus | |
2015 * directing mnemonic events to the dialog widget. | |
2016 */ | |
2017 static void | |
2018 add_mnemonic_grabs(Widget dialog, Widget w) | |
2019 { | |
2020 char mneString[2]; | |
2021 WidgetList children; | |
2022 int numChildren, i; | |
2023 Boolean isMenu; | |
2024 KeySym mnemonic = '\0'; | |
2025 unsigned char rowColType; | |
2026 | |
2027 if (XtIsComposite(w)) | |
2028 { | |
2029 if (XtClass(w) == xmRowColumnWidgetClass) | |
2030 { | |
1604 | 2031 XtVaGetValues(w, XmNrowColumnType, &rowColType, NULL); |
44 | 2032 isMenu = (rowColType != (unsigned char)XmWORK_AREA); |
2033 } | |
2034 else | |
2035 isMenu = False; | |
2036 if (!isMenu) | |
2037 { | |
2038 XtVaGetValues(w, XmNchildren, &children, XmNnumChildren, | |
1604 | 2039 &numChildren, NULL); |
44 | 2040 for (i = 0; i < numChildren; i++) |
2041 add_mnemonic_grabs(dialog, children[i]); | |
2042 } | |
2043 } | |
2044 else | |
2045 { | |
1604 | 2046 XtVaGetValues(w, XmNmnemonic, &mnemonic, NULL); |
44 | 2047 if (mnemonic != '\0') |
2048 { | |
2049 mneString[0] = mnemonic; | |
2050 mneString[1] = '\0'; | |
2051 XtGrabKey(dialog, XKeysymToKeycode(XtDisplay(dialog), | |
2052 XStringToKeysym(mneString)), | |
2053 Mod1Mask, True, GrabModeAsync, GrabModeAsync); | |
2054 } | |
2055 } | |
2056 } | |
2057 | |
2058 /* | |
2059 * Add a handler for mnemonics in a dialog. Motif itself only handles | |
2060 * mnemonics in menus. Mnemonics added or changed after this call will be | |
2061 * ignored. | |
2062 * | |
2063 * To add a mnemonic to a text field or list, set the XmNmnemonic resource on | |
2064 * the appropriate label and set the XmNuserData resource of the label to the | |
2065 * widget to get the focus when the mnemonic is typed. | |
2066 */ | |
2067 static void | |
2068 activate_dialog_mnemonics(Widget dialog) | |
2069 { | |
2070 if (!dialog) | |
2071 return; | |
2072 | |
2073 XtAddEventHandler(dialog, KeyPressMask, False, | |
2074 (XtEventHandler) mnemonic_event, (XtPointer) NULL); | |
2075 add_mnemonic_grabs(dialog, dialog); | |
2076 } | |
2077 | |
2078 /* | |
2079 * Removes the event handler and key-grabs for dialog mnemonic handling. | |
2080 */ | |
2081 static void | |
2082 suppress_dialog_mnemonics(Widget dialog) | |
2083 { | |
2084 if (!dialog) | |
2085 return; | |
2086 | |
2087 XtUngrabKey(dialog, AnyKey, Mod1Mask); | |
2088 XtRemoveEventHandler(dialog, KeyPressMask, False, | |
2089 (XtEventHandler) mnemonic_event, (XtPointer) NULL); | |
2090 } | |
2091 | |
2092 #if defined(FEAT_BROWSE) || defined(FEAT_GUI_DIALOG) | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2093 static void set_fontlist(Widget wg); |
44 | 2094 |
2095 /* | |
2096 * Use the 'guifont' or 'guifontset' as a fontlist for a dialog widget. | |
2097 */ | |
2098 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2099 set_fontlist(Widget id) |
44 | 2100 { |
2101 XmFontList fl; | |
2102 | |
2103 #ifdef FONTSET_ALWAYS | |
48 | 2104 if (gui.fontset != NOFONTSET) |
2105 { | |
44 | 2106 fl = gui_motif_fontset2fontlist((XFontSet *)&gui.fontset); |
2107 if (fl != NULL) | |
2108 { | |
2109 if (XtIsManaged(id)) | |
2110 { | |
2111 XtUnmanageChild(id); | |
2112 XtVaSetValues(id, XmNfontList, fl, NULL); | |
2113 /* We should force the widget to recalculate it's | |
2114 * geometry now. */ | |
2115 XtManageChild(id); | |
2116 } | |
2117 else | |
2118 XtVaSetValues(id, XmNfontList, fl, NULL); | |
2119 XmFontListFree(fl); | |
2120 } | |
2121 } | |
2122 #else | |
48 | 2123 if (gui.norm_font != NOFONT) |
2124 { | |
44 | 2125 fl = gui_motif_create_fontlist((XFontStruct *)gui.norm_font); |
2126 if (fl != NULL) | |
2127 { | |
2128 if (XtIsManaged(id)) | |
2129 { | |
2130 XtUnmanageChild(id); | |
2131 XtVaSetValues(id, XmNfontList, fl, NULL); | |
2132 /* We should force the widget to recalculate it's | |
2133 * geometry now. */ | |
2134 XtManageChild(id); | |
2135 } | |
2136 else | |
2137 XtVaSetValues(id, XmNfontList, fl, NULL); | |
2138 XmFontListFree(fl); | |
2139 } | |
2140 } | |
2141 #endif | |
2142 } | |
2143 #endif | |
7 | 2144 |
2145 #if defined(FEAT_BROWSE) || defined(PROTO) | |
2146 | |
2147 /* | |
2148 * file selector related stuff | |
2149 */ | |
2150 | |
2151 #include <Xm/FileSB.h> | |
2152 #include <Xm/XmStrDefs.h> | |
2153 | |
2154 typedef struct dialog_callback_arg | |
2155 { | |
2156 char * args; /* not used right now */ | |
2157 int id; | |
2158 } dcbarg_T; | |
2159 | |
2160 static Widget dialog_wgt; | |
2161 static char *browse_fname = NULL; | |
2162 static XmStringCharSet charset = (XmStringCharSet) XmSTRING_DEFAULT_CHARSET; | |
2163 /* used to set up XmStrings */ | |
2164 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2165 static void DialogCancelCB(Widget, XtPointer, XtPointer); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2166 static void DialogAcceptCB(Widget, XtPointer, XtPointer); |
7 | 2167 |
2168 /* | |
2169 * This function is used to translate the predefined label text of the | |
2170 * precomposed dialogs. We do this explicitly to allow: | |
2171 * | |
2172 * - usage of gettext for translation, as in all the other places. | |
2173 * | |
2174 * - equalize the messages between different GUI implementations as far as | |
2175 * possible. | |
2176 */ | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2177 static void set_predefined_label(Widget parent, String name, char *new_label); |
7 | 2178 |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2179 static void |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2180 set_predefined_label(Widget parent, String name, char *new_label) |
7 | 2181 { |
44 | 2182 XmString str; |
2183 Widget w; | |
2184 char_u *p, *next; | |
2185 KeySym mnemonic = NUL; | |
7 | 2186 |
2187 w = XtNameToWidget(parent, name); | |
2188 | |
2189 if (!w) | |
2190 return; | |
2191 | |
44 | 2192 p = vim_strsave((char_u *)new_label); |
2193 if (p == NULL) | |
2194 return; | |
2195 for (next = p; *next; ++next) | |
7 | 2196 { |
44 | 2197 if (*next == DLG_HOTKEY_CHAR) |
2198 { | |
2199 int len = STRLEN(next); | |
2200 | |
2201 if (len > 0) | |
2202 { | |
2203 mch_memmove(next, next + 1, len); | |
2204 mnemonic = next[0]; | |
2205 } | |
2206 } | |
2207 } | |
2208 | |
2209 str = XmStringCreate((char *)p, STRING_TAG); | |
2210 vim_free(p); | |
2211 | |
2212 if (str != NULL) | |
2213 { | |
2214 XtVaSetValues(w, | |
2215 XmNlabelString, str, | |
2216 XmNmnemonic, mnemonic, | |
2217 NULL); | |
7 | 2218 XmStringFree(str); |
2219 } | |
44 | 2220 gui_motif_menu_fontlist(w); |
2221 } | |
2222 | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2223 static void |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2224 set_predefined_fontlist(Widget parent, String name) |
44 | 2225 { |
2226 Widget w; | |
2227 w = XtNameToWidget(parent, name); | |
2228 | |
2229 if (!w) | |
2230 return; | |
2231 | |
2232 set_fontlist(w); | |
7 | 2233 } |
2234 | |
2235 /* | |
2236 * Put up a file requester. | |
2237 * Returns the selected name in allocated memory, or NULL for Cancel. | |
2238 */ | |
2239 char_u * | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2240 gui_mch_browse( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2241 int saving UNUSED, /* select file to write */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2242 char_u *title, /* title for the window */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2243 char_u *dflt, /* default name */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2244 char_u *ext UNUSED, /* not used (extension added) */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2245 char_u *initdir, /* initial directory, NULL for current dir */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2246 char_u *filter) /* file name filter */ |
7 | 2247 { |
2248 char_u dirbuf[MAXPATHL]; | |
2249 char_u dfltbuf[MAXPATHL]; | |
2250 char_u *pattern; | |
2251 char_u *tofree = NULL; | |
2252 | |
44 | 2253 /* There a difference between the resource name and value, Therefore, we |
2254 * avoid to (ab-)use the (maybe internationalized!) dialog title as a | |
2255 * dialog name. | |
2256 */ | |
2257 | |
2258 dialog_wgt = XmCreateFileSelectionDialog(vimShell, "browseDialog", NULL, 0); | |
7 | 2259 |
2260 if (initdir == NULL || *initdir == NUL) | |
2261 { | |
2262 mch_dirname(dirbuf, MAXPATHL); | |
2263 initdir = dirbuf; | |
2264 } | |
2265 | |
2266 if (dflt == NULL) | |
2267 dflt = (char_u *)""; | |
2268 else if (STRLEN(initdir) + STRLEN(dflt) + 2 < MAXPATHL) | |
2269 { | |
2270 /* The default selection should be the full path, "dflt" is only the | |
2271 * file name. */ | |
2272 STRCPY(dfltbuf, initdir); | |
2273 add_pathsep(dfltbuf); | |
2274 STRCAT(dfltbuf, dflt); | |
2275 dflt = dfltbuf; | |
2276 } | |
2277 | |
2278 /* Can only use one pattern for a file name. Get the first pattern out of | |
2279 * the filter. An empty pattern means everything matches. */ | |
2280 if (filter == NULL) | |
2281 pattern = (char_u *)""; | |
2282 else | |
2283 { | |
2284 char_u *s, *p; | |
2285 | |
2286 s = filter; | |
2287 for (p = filter; *p != NUL; ++p) | |
2288 { | |
2289 if (*p == '\t') /* end of description, start of pattern */ | |
2290 s = p + 1; | |
2291 if (*p == ';' || *p == '\n') /* end of (first) pattern */ | |
2292 break; | |
2293 } | |
2294 pattern = vim_strnsave(s, p - s); | |
2295 tofree = pattern; | |
2296 if (pattern == NULL) | |
2297 pattern = (char_u *)""; | |
2298 } | |
2299 | |
2300 XtVaSetValues(dialog_wgt, | |
2301 XtVaTypedArg, | |
2302 XmNdirectory, XmRString, (char *)initdir, STRLEN(initdir) + 1, | |
2303 XtVaTypedArg, | |
2304 XmNdirSpec, XmRString, (char *)dflt, STRLEN(dflt) + 1, | |
2305 XtVaTypedArg, | |
2306 XmNpattern, XmRString, (char *)pattern, STRLEN(pattern) + 1, | |
2307 XtVaTypedArg, | |
2308 XmNdialogTitle, XmRString, (char *)title, STRLEN(title) + 1, | |
2309 NULL); | |
2310 | |
44 | 2311 set_predefined_label(dialog_wgt, "Apply", _("&Filter")); |
2312 set_predefined_label(dialog_wgt, "Cancel", _("&Cancel")); | |
7 | 2313 set_predefined_label(dialog_wgt, "Dir", _("Directories")); |
2314 set_predefined_label(dialog_wgt, "FilterLabel", _("Filter")); | |
44 | 2315 set_predefined_label(dialog_wgt, "Help", _("&Help")); |
7 | 2316 set_predefined_label(dialog_wgt, "Items", _("Files")); |
44 | 2317 set_predefined_label(dialog_wgt, "OK", _("&OK")); |
7 | 2318 set_predefined_label(dialog_wgt, "Selection", _("Selection")); |
2319 | |
44 | 2320 /* This is to save us from silly external settings using not fixed with |
2321 * fonts for file selection. | |
2322 */ | |
2323 set_predefined_fontlist(dialog_wgt, "DirListSW.DirList"); | |
2324 set_predefined_fontlist(dialog_wgt, "ItemsListSW.ItemsList"); | |
2325 | |
7 | 2326 gui_motif_menu_colors(dialog_wgt); |
2327 if (gui.scroll_bg_pixel != INVALCOLOR) | |
2328 XtVaSetValues(dialog_wgt, XmNtroughColor, gui.scroll_bg_pixel, NULL); | |
2329 | |
2330 XtAddCallback(dialog_wgt, XmNokCallback, DialogAcceptCB, (XtPointer)0); | |
2331 XtAddCallback(dialog_wgt, XmNcancelCallback, DialogCancelCB, (XtPointer)0); | |
2332 /* We have no help in this window, so hide help button */ | |
2333 XtUnmanageChild(XmFileSelectionBoxGetChild(dialog_wgt, | |
2334 (unsigned char)XmDIALOG_HELP_BUTTON)); | |
2335 | |
2336 manage_centered(dialog_wgt); | |
44 | 2337 activate_dialog_mnemonics(dialog_wgt); |
7 | 2338 |
2339 /* sit in a loop until the dialog box has gone away */ | |
2340 do | |
2341 { | |
2342 XtAppProcessEvent(XtWidgetToApplicationContext(dialog_wgt), | |
2343 (XtInputMask)XtIMAll); | |
2344 } while (XtIsManaged(dialog_wgt)); | |
2345 | |
44 | 2346 suppress_dialog_mnemonics(dialog_wgt); |
7 | 2347 XtDestroyWidget(dialog_wgt); |
2348 vim_free(tofree); | |
2349 | |
2350 if (browse_fname == NULL) | |
2351 return NULL; | |
2352 return vim_strsave((char_u *)browse_fname); | |
2353 } | |
2354 | |
2355 /* | |
2356 * The code below was originally taken from | |
2357 * /usr/examples/motif/xmsamplers/xmeditor.c | |
2358 * on Digital Unix 4.0d, but heavily modified. | |
2359 */ | |
2360 | |
2361 /* | |
2362 * Process callback from Dialog cancel actions. | |
2363 */ | |
2364 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2365 DialogCancelCB( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2366 Widget w UNUSED, /* widget id */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2367 XtPointer client_data UNUSED, /* data from application */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2368 XtPointer call_data UNUSED) /* data from widget class */ |
7 | 2369 { |
2370 if (browse_fname != NULL) | |
2371 { | |
2372 XtFree(browse_fname); | |
2373 browse_fname = NULL; | |
2374 } | |
2375 XtUnmanageChild(dialog_wgt); | |
2376 } | |
2377 | |
2378 /* | |
2379 * Process callback from Dialog actions. | |
2380 */ | |
2381 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2382 DialogAcceptCB( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2383 Widget w UNUSED, /* widget id */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2384 XtPointer client_data UNUSED, /* data from application */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2385 XtPointer call_data) /* data from widget class */ |
7 | 2386 { |
2387 XmFileSelectionBoxCallbackStruct *fcb; | |
2388 | |
2389 if (browse_fname != NULL) | |
2390 { | |
2391 XtFree(browse_fname); | |
2392 browse_fname = NULL; | |
2393 } | |
2394 fcb = (XmFileSelectionBoxCallbackStruct *)call_data; | |
2395 | |
2396 /* get the filename from the file selection box */ | |
2397 XmStringGetLtoR(fcb->value, charset, &browse_fname); | |
2398 | |
2399 /* popdown the file selection box */ | |
2400 XtUnmanageChild(dialog_wgt); | |
2401 } | |
2402 | |
2403 #endif /* FEAT_BROWSE */ | |
2404 | |
2405 #if defined(FEAT_GUI_DIALOG) || defined(PROTO) | |
2406 | |
2407 static int dialogStatus; | |
2408 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2409 static void keyhit_callback(Widget w, XtPointer client_data, XEvent *event, Boolean *cont); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
2410 static void butproc(Widget w, XtPointer client_data, XtPointer call_data); |
7 | 2411 |
2412 /* | |
2413 * Callback function for the textfield. When CR is hit this works like | |
2414 * hitting the "OK" button, ESC like "Cancel". | |
2415 */ | |
2416 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2417 keyhit_callback( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2418 Widget w, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2419 XtPointer client_data UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2420 XEvent *event, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2421 Boolean *cont UNUSED) |
7 | 2422 { |
2423 char buf[2]; | |
2424 KeySym key_sym; | |
2425 | |
2426 if (XLookupString(&(event->xkey), buf, 2, &key_sym, NULL) == 1) | |
2427 { | |
2428 if (*buf == CAR) | |
2429 dialogStatus = 1; | |
2430 else if (*buf == ESC) | |
2431 dialogStatus = 2; | |
2432 } | |
2433 if ((key_sym == XK_Left || key_sym == XK_Right) | |
2434 && !(event->xkey.state & ShiftMask)) | |
2435 XmTextFieldClearSelection(w, XtLastTimestampProcessed(gui.dpy)); | |
2436 } | |
2437 | |
2438 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2439 butproc( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2440 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2441 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2442 XtPointer call_data UNUSED) |
7 | 2443 { |
2444 dialogStatus = (int)(long)client_data + 1; | |
2445 } | |
2446 | |
2447 #ifdef HAVE_XPM | |
2448 | |
2449 static Widget create_pixmap_label(Widget parent, String name, char **data, ArgList args, Cardinal arg); | |
2450 | |
2451 static Widget | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2452 create_pixmap_label( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2453 Widget parent, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2454 String name, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2455 char **data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2456 ArgList args, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2457 Cardinal arg) |
7 | 2458 { |
2459 Widget label; | |
2460 Display *dsp; | |
2461 Screen *scr; | |
2462 int depth; | |
2463 Pixmap pixmap = 0; | |
2464 XpmAttributes attr; | |
2465 Boolean rs; | |
2466 XpmColorSymbol color[5] = | |
2467 { | |
2468 {"none", NULL, 0}, | |
2469 {"iconColor1", NULL, 0}, | |
2470 {"bottomShadowColor", NULL, 0}, | |
2471 {"topShadowColor", NULL, 0}, | |
2472 {"selectColor", NULL, 0} | |
2473 }; | |
2474 | |
2475 label = XmCreateLabelGadget(parent, name, args, arg); | |
2476 | |
2477 /* | |
1207 | 2478 * We need to be careful here, since in case of gadgets, there is |
7 | 2479 * no way to get the background color directly from the widget itself. |
2480 * In such cases we get it from The Core part of his parent instead. | |
2481 */ | |
2482 dsp = XtDisplayOfObject(label); | |
2483 scr = XtScreenOfObject(label); | |
2484 XtVaGetValues(XtIsSubclass(label, coreWidgetClass) | |
2485 ? label : XtParent(label), | |
2486 XmNdepth, &depth, | |
2487 XmNbackground, &color[0].pixel, | |
2488 XmNforeground, &color[1].pixel, | |
2489 XmNbottomShadowColor, &color[2].pixel, | |
2490 XmNtopShadowColor, &color[3].pixel, | |
2491 XmNhighlight, &color[4].pixel, | |
2492 NULL); | |
2493 | |
2494 attr.valuemask = XpmColorSymbols | XpmCloseness | XpmDepth; | |
2495 attr.colorsymbols = color; | |
2496 attr.numsymbols = 5; | |
2497 attr.closeness = 65535; | |
2498 attr.depth = depth; | |
2499 XpmCreatePixmapFromData(dsp, RootWindowOfScreen(scr), | |
2500 data, &pixmap, NULL, &attr); | |
2501 | |
2502 XtVaGetValues(label, XmNrecomputeSize, &rs, NULL); | |
2503 XtVaSetValues(label, XmNrecomputeSize, True, NULL); | |
2504 XtVaSetValues(label, | |
2505 XmNlabelType, XmPIXMAP, | |
2506 XmNlabelPixmap, pixmap, | |
2507 NULL); | |
2508 XtVaSetValues(label, XmNrecomputeSize, rs, NULL); | |
2509 | |
2510 return label; | |
2511 } | |
2512 #endif | |
2513 | |
2514 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2515 gui_mch_dialog( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2516 int type UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2517 char_u *title, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2518 char_u *message, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2519 char_u *button_names, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2520 int dfltbutton, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2521 char_u *textfield, /* buffer of size IOSIZE */ |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2522 int ex_cmd UNUSED) |
7 | 2523 { |
2524 char_u *buts; | |
2525 char_u *p, *next; | |
2526 XtAppContext app; | |
2527 XmString label; | |
2528 int butcount; | |
44 | 2529 Widget w; |
7 | 2530 Widget dialogform = NULL; |
2531 Widget form = NULL; | |
2532 Widget dialogtextfield = NULL; | |
2533 Widget *buttons; | |
2534 Widget sep_form = NULL; | |
2535 Boolean vertical; | |
2536 Widget separator = NULL; | |
2537 int n; | |
2538 Arg args[6]; | |
2539 #ifdef HAVE_XPM | |
2540 char **icon_data = NULL; | |
2541 Widget dialogpixmap = NULL; | |
2542 #endif | |
2543 | |
2544 if (title == NULL) | |
2545 title = (char_u *)_("Vim dialog"); | |
2546 | |
2547 /* if our pointer is currently hidden, then we should show it. */ | |
2548 gui_mch_mousehide(FALSE); | |
2549 | |
2550 dialogform = XmCreateFormDialog(vimShell, (char *)"dialog", NULL, 0); | |
2551 | |
2552 /* Check 'v' flag in 'guioptions': vertical button placement. */ | |
2553 vertical = (vim_strchr(p_go, GO_VERTICAL) != NULL); | |
2554 | |
2555 /* Set the title of the Dialog window */ | |
2556 label = XmStringCreateSimple((char *)title); | |
2557 if (label == NULL) | |
2558 return -1; | |
2559 XtVaSetValues(dialogform, | |
2560 XmNdialogTitle, label, | |
2561 XmNhorizontalSpacing, 4, | |
2562 XmNverticalSpacing, vertical ? 0 : 4, | |
2563 NULL); | |
2564 XmStringFree(label); | |
2565 | |
2566 /* make a copy, so that we can insert NULs */ | |
2567 buts = vim_strsave(button_names); | |
2568 if (buts == NULL) | |
2569 return -1; | |
2570 | |
2571 /* Count the number of buttons and allocate buttons[]. */ | |
2572 butcount = 1; | |
2573 for (p = buts; *p; ++p) | |
2574 if (*p == DLG_BUTTON_SEP) | |
2575 ++butcount; | |
2576 buttons = (Widget *)alloc((unsigned)(butcount * sizeof(Widget))); | |
2577 if (buttons == NULL) | |
2578 { | |
2579 vim_free(buts); | |
2580 return -1; | |
2581 } | |
2582 | |
2583 /* | |
2584 * Create the buttons. | |
2585 */ | |
2586 sep_form = (Widget) 0; | |
2587 p = buts; | |
2588 for (butcount = 0; *p; ++butcount) | |
2589 { | |
44 | 2590 KeySym mnemonic = NUL; |
2591 | |
7 | 2592 for (next = p; *next; ++next) |
2593 { | |
2594 if (*next == DLG_HOTKEY_CHAR) | |
44 | 2595 { |
2596 int len = STRLEN(next); | |
2597 | |
2598 if (len > 0) | |
2599 { | |
2600 mch_memmove(next, next + 1, len); | |
2601 mnemonic = next[0]; | |
2602 } | |
2603 } | |
7 | 2604 if (*next == DLG_BUTTON_SEP) |
2605 { | |
2606 *next++ = NUL; | |
2607 break; | |
2608 } | |
2609 } | |
2610 label = XmStringCreate(_((char *)p), STRING_TAG); | |
2611 if (label == NULL) | |
2612 break; | |
2613 | |
2614 buttons[butcount] = XtVaCreateManagedWidget("button", | |
2615 xmPushButtonWidgetClass, dialogform, | |
2616 XmNlabelString, label, | |
44 | 2617 XmNmnemonic, mnemonic, |
7 | 2618 XmNbottomAttachment, XmATTACH_FORM, |
2619 XmNbottomOffset, 4, | |
2620 XmNshowAsDefault, butcount == dfltbutton - 1, | |
2621 XmNdefaultButtonShadowThickness, 1, | |
2622 NULL); | |
2623 XmStringFree(label); | |
44 | 2624 gui_motif_menu_fontlist(buttons[butcount]); |
7 | 2625 |
2626 /* Layout properly. */ | |
2627 | |
2628 if (butcount > 0) | |
2629 { | |
2630 if (vertical) | |
2631 XtVaSetValues(buttons[butcount], | |
2632 XmNtopWidget, buttons[butcount - 1], | |
2633 NULL); | |
2634 else | |
2635 { | |
2636 if (*next == NUL) | |
2637 { | |
2638 XtVaSetValues(buttons[butcount], | |
2639 XmNrightAttachment, XmATTACH_FORM, | |
2640 XmNrightOffset, 4, | |
2641 NULL); | |
2642 | |
2643 /* fill in a form as invisible separator */ | |
2644 sep_form = XtVaCreateWidget("separatorForm", | |
2645 xmFormWidgetClass, dialogform, | |
2646 XmNleftAttachment, XmATTACH_WIDGET, | |
2647 XmNleftWidget, buttons[butcount - 1], | |
2648 XmNrightAttachment, XmATTACH_WIDGET, | |
2649 XmNrightWidget, buttons[butcount], | |
2650 XmNbottomAttachment, XmATTACH_FORM, | |
2651 XmNbottomOffset, 4, | |
2652 NULL); | |
2653 XtManageChild(sep_form); | |
2654 } | |
2655 else | |
2656 { | |
2657 XtVaSetValues(buttons[butcount], | |
2658 XmNleftAttachment, XmATTACH_WIDGET, | |
2659 XmNleftWidget, buttons[butcount - 1], | |
2660 NULL); | |
2661 } | |
2662 } | |
2663 } | |
2664 else if (!vertical) | |
2665 { | |
2666 if (*next == NUL) | |
2667 { | |
2668 XtVaSetValues(buttons[0], | |
2669 XmNrightAttachment, XmATTACH_FORM, | |
2670 XmNrightOffset, 4, | |
2671 NULL); | |
2672 | |
2673 /* fill in a form as invisible separator */ | |
2674 sep_form = XtVaCreateWidget("separatorForm", | |
2675 xmFormWidgetClass, dialogform, | |
2676 XmNleftAttachment, XmATTACH_FORM, | |
2677 XmNleftOffset, 4, | |
2678 XmNrightAttachment, XmATTACH_WIDGET, | |
2679 XmNrightWidget, buttons[0], | |
2680 XmNbottomAttachment, XmATTACH_FORM, | |
2681 XmNbottomOffset, 4, | |
2682 NULL); | |
2683 XtManageChild(sep_form); | |
2684 } | |
2685 else | |
2686 XtVaSetValues(buttons[0], | |
2687 XmNleftAttachment, XmATTACH_FORM, | |
2688 XmNleftOffset, 4, | |
2689 NULL); | |
2690 } | |
2691 | |
2692 XtAddCallback(buttons[butcount], XmNactivateCallback, | |
2693 (XtCallbackProc)butproc, (XtPointer)(long)butcount); | |
2694 p = next; | |
2695 } | |
2696 vim_free(buts); | |
2697 | |
2698 separator = (Widget) 0; | |
2699 if (butcount > 0) | |
2700 { | |
2701 /* Create the separator for beauty. */ | |
2702 n = 0; | |
2703 XtSetArg(args[n], XmNorientation, XmHORIZONTAL); n++; | |
2704 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_WIDGET); n++; | |
2705 XtSetArg(args[n], XmNbottomWidget, buttons[0]); n++; | |
2706 XtSetArg(args[n], XmNbottomOffset, 4); n++; | |
2707 XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++; | |
2708 XtSetArg(args[n], XmNrightAttachment, XmATTACH_FORM); n++; | |
2709 separator = XmCreateSeparatorGadget(dialogform, "separator", args, n); | |
2710 XtManageChild(separator); | |
2711 } | |
2712 | |
2713 if (textfield != NULL) | |
2714 { | |
2715 dialogtextfield = XtVaCreateWidget("textField", | |
2716 xmTextFieldWidgetClass, dialogform, | |
2717 XmNleftAttachment, XmATTACH_FORM, | |
2718 XmNrightAttachment, XmATTACH_FORM, | |
2719 NULL); | |
2720 if (butcount > 0) | |
2721 XtVaSetValues(dialogtextfield, | |
2722 XmNbottomAttachment, XmATTACH_WIDGET, | |
2723 XmNbottomWidget, separator, | |
2724 NULL); | |
2725 else | |
2726 XtVaSetValues(dialogtextfield, | |
2727 XmNbottomAttachment, XmATTACH_FORM, | |
2728 NULL); | |
2729 | |
44 | 2730 set_fontlist(dialogtextfield); |
7 | 2731 XmTextFieldSetString(dialogtextfield, (char *)textfield); |
2732 XtManageChild(dialogtextfield); | |
2733 XtAddEventHandler(dialogtextfield, KeyPressMask, False, | |
2734 (XtEventHandler)keyhit_callback, (XtPointer)NULL); | |
2735 } | |
2736 | |
2737 /* Form holding both message and pixmap labels */ | |
2738 form = XtVaCreateWidget("separatorForm", | |
2739 xmFormWidgetClass, dialogform, | |
2740 XmNleftAttachment, XmATTACH_FORM, | |
2741 XmNrightAttachment, XmATTACH_FORM, | |
2742 XmNtopAttachment, XmATTACH_FORM, | |
2743 NULL); | |
2744 XtManageChild(form); | |
2745 | |
2746 #ifdef HAVE_XPM | |
2747 /* Add a pixmap, left of the message. */ | |
2748 switch (type) | |
2749 { | |
2750 case VIM_GENERIC: | |
2751 icon_data = generic_xpm; | |
2752 break; | |
2753 case VIM_ERROR: | |
2754 icon_data = error_xpm; | |
2755 break; | |
2756 case VIM_WARNING: | |
2757 icon_data = alert_xpm; | |
2758 break; | |
2759 case VIM_INFO: | |
2760 icon_data = info_xpm; | |
2761 break; | |
2762 case VIM_QUESTION: | |
2763 icon_data = quest_xpm; | |
2764 break; | |
2765 default: | |
2766 icon_data = generic_xpm; | |
2767 } | |
2768 | |
2769 n = 0; | |
2770 XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++; | |
2771 XtSetArg(args[n], XmNtopOffset, 8); n++; | |
2772 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++; | |
2773 XtSetArg(args[n], XmNbottomOffset, 8); n++; | |
2774 XtSetArg(args[n], XmNleftAttachment, XmATTACH_FORM); n++; | |
2775 XtSetArg(args[n], XmNleftOffset, 8); n++; | |
2776 | |
2777 dialogpixmap = create_pixmap_label(form, "dialogPixmap", | |
2778 icon_data, args, n); | |
2779 XtManageChild(dialogpixmap); | |
2780 #endif | |
2781 | |
44 | 2782 /* Create the dialog message. |
2783 * Since LessTif is apparently having problems with the creation of | |
2784 * properly localized string, we use LtoR here. The symptom is that the | |
2785 * string sill not show properly in multiple lines as it does in native | |
2786 * Motif. | |
2787 */ | |
2788 label = XmStringCreateLtoR((char *)message, STRING_TAG); | |
7 | 2789 if (label == NULL) |
2790 return -1; | |
44 | 2791 w = XtVaCreateManagedWidget("dialogMessage", |
7 | 2792 xmLabelGadgetClass, form, |
2793 XmNlabelString, label, | |
44 | 2794 XmNalignment, XmALIGNMENT_BEGINNING, |
7 | 2795 XmNtopAttachment, XmATTACH_FORM, |
2796 XmNtopOffset, 8, | |
2797 #ifdef HAVE_XPM | |
2798 XmNleftAttachment, XmATTACH_WIDGET, | |
2799 XmNleftWidget, dialogpixmap, | |
2800 #else | |
2801 XmNleftAttachment, XmATTACH_FORM, | |
2802 #endif | |
2803 XmNleftOffset, 8, | |
2804 XmNrightAttachment, XmATTACH_FORM, | |
2805 XmNrightOffset, 8, | |
2806 XmNbottomAttachment, XmATTACH_FORM, | |
2807 XmNbottomOffset, 8, | |
2808 NULL); | |
2809 XmStringFree(label); | |
44 | 2810 set_fontlist(w); |
7 | 2811 |
2812 if (textfield != NULL) | |
2813 { | |
2814 XtVaSetValues(form, | |
2815 XmNbottomAttachment, XmATTACH_WIDGET, | |
2816 XmNbottomWidget, dialogtextfield, | |
2817 NULL); | |
2818 } | |
2819 else | |
2820 { | |
2821 if (butcount > 0) | |
2822 XtVaSetValues(form, | |
2823 XmNbottomAttachment, XmATTACH_WIDGET, | |
2824 XmNbottomWidget, separator, | |
2825 NULL); | |
2826 else | |
2827 XtVaSetValues(form, | |
2828 XmNbottomAttachment, XmATTACH_FORM, | |
2829 NULL); | |
2830 } | |
2831 | |
2832 if (dfltbutton < 1) | |
2833 dfltbutton = 1; | |
2834 if (dfltbutton > butcount) | |
2835 dfltbutton = butcount; | |
2836 XtVaSetValues(dialogform, | |
2837 XmNdefaultButton, buttons[dfltbutton - 1], NULL); | |
2838 if (textfield != NULL) | |
2839 XtVaSetValues(dialogform, XmNinitialFocus, dialogtextfield, NULL); | |
2840 else | |
2841 XtVaSetValues(dialogform, XmNinitialFocus, buttons[dfltbutton - 1], | |
2842 NULL); | |
2843 | |
2844 manage_centered(dialogform); | |
44 | 2845 activate_dialog_mnemonics(dialogform); |
7 | 2846 |
2847 if (textfield != NULL && *textfield != NUL) | |
2848 { | |
2849 /* This only works after the textfield has been realised. */ | |
2850 XmTextFieldSetSelection(dialogtextfield, | |
2851 (XmTextPosition)0, (XmTextPosition)STRLEN(textfield), | |
2852 XtLastTimestampProcessed(gui.dpy)); | |
2853 XmTextFieldSetCursorPosition(dialogtextfield, | |
2854 (XmTextPosition)STRLEN(textfield)); | |
2855 } | |
2856 | |
2857 app = XtWidgetToApplicationContext(dialogform); | |
2858 | |
2859 /* Loop until a button is pressed or the dialog is killed somehow. */ | |
2860 dialogStatus = -1; | |
2861 for (;;) | |
2862 { | |
2863 XtAppProcessEvent(app, (XtInputMask)XtIMAll); | |
2864 if (dialogStatus >= 0 || !XtIsManaged(dialogform)) | |
2865 break; | |
2866 } | |
2867 | |
2868 vim_free(buttons); | |
2869 | |
2870 if (textfield != NULL) | |
2871 { | |
2872 p = (char_u *)XmTextGetString(dialogtextfield); | |
2873 if (p == NULL || dialogStatus < 0) | |
2874 *textfield = NUL; | |
2875 else | |
418 | 2876 vim_strncpy(textfield, p, IOSIZE - 1); |
2137
dabcabce3f9d
updated for version 7.2.419
Bram Moolenaar <bram@zimbu.org>
parents:
1887
diff
changeset
|
2877 XtFree((char *)p); |
7 | 2878 } |
2879 | |
44 | 2880 suppress_dialog_mnemonics(dialogform); |
7 | 2881 XtDestroyWidget(dialogform); |
2882 | |
2883 return dialogStatus; | |
2884 } | |
2885 #endif /* FEAT_GUI_DIALOG */ | |
2886 | |
2887 #if defined(FEAT_FOOTER) || defined(PROTO) | |
2888 | |
2889 static int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2890 gui_mch_compute_footer_height(void) |
7 | 2891 { |
2892 Dimension height; /* total Toolbar height */ | |
2893 Dimension top; /* XmNmarginTop */ | |
2894 Dimension bottom; /* XmNmarginBottom */ | |
2895 Dimension shadow; /* XmNshadowThickness */ | |
2896 | |
2897 XtVaGetValues(footer, | |
2898 XmNheight, &height, | |
2899 XmNmarginTop, &top, | |
2900 XmNmarginBottom, &bottom, | |
2901 XmNshadowThickness, &shadow, | |
2902 NULL); | |
2903 | |
2904 return (int) height + top + bottom + (shadow << 1); | |
2905 } | |
2906 | |
2907 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2908 gui_mch_enable_footer(int showit) |
7 | 2909 { |
2910 if (showit) | |
2911 { | |
2912 gui.footer_height = gui_mch_compute_footer_height(); | |
2913 XtManageChild(footer); | |
2914 } | |
2915 else | |
2916 { | |
2917 gui.footer_height = 0; | |
2918 XtUnmanageChild(footer); | |
2919 } | |
2920 XtVaSetValues(textAreaForm, XmNbottomOffset, gui.footer_height, NULL); | |
2921 } | |
2922 | |
2923 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2924 gui_mch_set_footer(char_u *s) |
7 | 2925 { |
2926 XmString xms; | |
2927 | |
2928 xms = XmStringCreate((char *)s, STRING_TAG); | |
44 | 2929 if (xms != NULL) |
2930 { | |
2931 XtVaSetValues(footer, XmNlabelString, xms, NULL); | |
2932 XmStringFree(xms); | |
2933 } | |
7 | 2934 } |
2935 | |
2936 #endif | |
2937 | |
2938 | |
2939 #if defined(FEAT_TOOLBAR) || defined(PROTO) | |
2940 void | |
2941 gui_mch_show_toolbar(int showit) | |
2942 { | |
2943 Cardinal numChildren; /* how many children toolBar has */ | |
2944 | |
2945 if (toolBar == (Widget)0) | |
2946 return; | |
2947 XtVaGetValues(toolBar, XmNnumChildren, &numChildren, NULL); | |
2948 if (showit && numChildren > 0) | |
2949 { | |
2950 /* Assume that we want to show the toolbar if p_toolbar contains | |
2951 * valid option settings, therefore p_toolbar must not be NULL. | |
2952 */ | |
2953 WidgetList children; | |
2954 | |
2955 XtVaGetValues(toolBar, XmNchildren, &children, NULL); | |
2956 { | |
2957 void (*action)(BalloonEval *); | |
2958 int text = 0; | |
2959 | |
2960 if (strstr((const char *)p_toolbar, "tooltips")) | |
2961 action = &gui_mch_enable_beval_area; | |
2962 else | |
2963 action = &gui_mch_disable_beval_area; | |
2964 if (strstr((const char *)p_toolbar, "text")) | |
2965 text = 1; | |
2966 else if (strstr((const char *)p_toolbar, "icons")) | |
2967 text = -1; | |
2968 if (text != 0) | |
2969 { | |
2970 vimmenu_T *toolbar; | |
2971 vimmenu_T *cur; | |
2972 | |
2973 for (toolbar = root_menu; toolbar; toolbar = toolbar->next) | |
2974 if (menu_is_toolbar(toolbar->dname)) | |
2975 break; | |
2976 /* Assumption: toolbar is NULL if there is no toolbar, | |
2977 * otherwise it contains the toolbar menu structure. | |
2978 * | |
2979 * Assumption: "numChildren" == the number of items in the list | |
2980 * of items beginning with toolbar->children. | |
2981 */ | |
2982 if (toolbar) | |
2983 { | |
2984 for (cur = toolbar->children; cur; cur = cur->next) | |
2985 { | |
2986 Arg args[1]; | |
2987 int n = 0; | |
2988 | |
2989 /* Enable/Disable tooltip (OK to enable while | |
844 | 2990 * currently enabled). */ |
7 | 2991 if (cur->tip != NULL) |
2992 (*action)(cur->tip); | |
2993 if (!menu_is_separator(cur->name)) | |
2994 { | |
48 | 2995 if (text == 1 || cur->xpm == NULL) |
2996 { | |
7 | 2997 XtSetArg(args[n], XmNlabelType, XmSTRING); |
48 | 2998 ++n; |
2999 } | |
7 | 3000 if (cur->id != NULL) |
3001 { | |
3002 XtUnmanageChild(cur->id); | |
3003 XtSetValues(cur->id, args, n); | |
3004 XtManageChild(cur->id); | |
3005 } | |
3006 } | |
3007 } | |
3008 } | |
3009 } | |
3010 } | |
3011 gui.toolbar_height = gui_mch_compute_toolbar_height(); | |
3012 XtManageChild(XtParent(toolBar)); | |
819 | 3013 #ifdef FEAT_GUI_TABLINE |
3014 if (showing_tabline) | |
3015 { | |
3016 XtVaSetValues(tabLine, | |
3017 XmNtopAttachment, XmATTACH_WIDGET, | |
3018 XmNtopWidget, XtParent(toolBar), | |
3019 NULL); | |
3020 XtVaSetValues(textAreaForm, | |
3021 XmNtopAttachment, XmATTACH_WIDGET, | |
3022 XmNtopWidget, tabLine, | |
3023 NULL); | |
3024 } | |
3025 else | |
3026 #endif | |
3027 XtVaSetValues(textAreaForm, | |
3028 XmNtopAttachment, XmATTACH_WIDGET, | |
3029 XmNtopWidget, XtParent(toolBar), | |
3030 NULL); | |
7 | 3031 if (XtIsManaged(menuBar)) |
3032 XtVaSetValues(XtParent(toolBar), | |
3033 XmNtopAttachment, XmATTACH_WIDGET, | |
3034 XmNtopWidget, menuBar, | |
3035 NULL); | |
3036 else | |
3037 XtVaSetValues(XtParent(toolBar), | |
3038 XmNtopAttachment, XmATTACH_FORM, | |
3039 NULL); | |
3040 } | |
3041 else | |
3042 { | |
3043 gui.toolbar_height = 0; | |
3044 if (XtIsManaged(menuBar)) | |
819 | 3045 { |
3046 #ifdef FEAT_GUI_TABLINE | |
3047 if (showing_tabline) | |
3048 { | |
3049 XtVaSetValues(tabLine, | |
3050 XmNtopAttachment, XmATTACH_WIDGET, | |
3051 XmNtopWidget, menuBar, | |
3052 NULL); | |
3053 XtVaSetValues(textAreaForm, | |
3054 XmNtopAttachment, XmATTACH_WIDGET, | |
3055 XmNtopWidget, tabLine, | |
3056 NULL); | |
3057 } | |
3058 else | |
3059 #endif | |
3060 XtVaSetValues(textAreaForm, | |
3061 XmNtopAttachment, XmATTACH_WIDGET, | |
3062 XmNtopWidget, menuBar, | |
3063 NULL); | |
3064 } | |
7 | 3065 else |
819 | 3066 { |
3067 #ifdef FEAT_GUI_TABLINE | |
3068 if (showing_tabline) | |
3069 { | |
3070 XtVaSetValues(tabLine, | |
3071 XmNtopAttachment, XmATTACH_FORM, | |
3072 NULL); | |
3073 XtVaSetValues(textAreaForm, | |
3074 XmNtopAttachment, XmATTACH_WIDGET, | |
3075 XmNtopWidget, tabLine, | |
3076 NULL); | |
3077 } | |
3078 else | |
3079 #endif | |
3080 XtVaSetValues(textAreaForm, | |
3081 XmNtopAttachment, XmATTACH_FORM, | |
3082 NULL); | |
3083 } | |
7 | 3084 |
3085 XtUnmanageChild(XtParent(toolBar)); | |
3086 } | |
811 | 3087 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT); |
7 | 3088 } |
3089 | |
3090 /* | |
3091 * A toolbar button has been pushed; now reset the input focus | |
3092 * such that the user can type page up/down etc. and have the | |
3093 * input go to the editor window, not the button | |
3094 */ | |
3095 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3096 reset_focus(void) |
7 | 3097 { |
3098 if (textArea != NULL) | |
3099 XmProcessTraversal(textArea, XmTRAVERSE_CURRENT); | |
3100 } | |
3101 | |
3102 int | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3103 gui_mch_compute_toolbar_height(void) |
7 | 3104 { |
48 | 3105 Dimension borders; |
7 | 3106 Dimension height; /* total Toolbar height */ |
3107 Dimension whgt; /* height of each widget */ | |
3108 WidgetList children; /* list of toolBar's children */ | |
3109 Cardinal numChildren; /* how many children toolBar has */ | |
3110 int i; | |
3111 | |
48 | 3112 borders = 0; |
7 | 3113 height = 0; |
3114 if (toolBar != (Widget)0 && toolBarFrame != (Widget)0) | |
3115 { /* get height of XmFrame parent */ | |
48 | 3116 Dimension fst; |
3117 Dimension fmh; | |
3118 Dimension tst; | |
3119 Dimension tmh; | |
3120 | |
7 | 3121 XtVaGetValues(toolBarFrame, |
48 | 3122 XmNshadowThickness, &fst, |
3123 XmNmarginHeight, &fmh, | |
7 | 3124 NULL); |
48 | 3125 borders += fst + fmh; |
7 | 3126 XtVaGetValues(toolBar, |
48 | 3127 XmNshadowThickness, &tst, |
3128 XmNmarginHeight, &tmh, | |
7 | 3129 XmNchildren, &children, |
3130 XmNnumChildren, &numChildren, NULL); | |
48 | 3131 borders += tst + tmh; |
1887 | 3132 for (i = 0; i < (int)numChildren; i++) |
7 | 3133 { |
3134 whgt = 0; | |
3135 XtVaGetValues(children[i], XmNheight, &whgt, NULL); | |
3136 if (height < whgt) | |
3137 height = whgt; | |
3138 } | |
3139 } | |
48 | 3140 #ifdef LESSTIF_VERSION |
3141 /* Hack: When starting up we get wrong dimensions. */ | |
3142 if (height < 10) | |
3143 height = 24; | |
3144 #endif | |
3145 | |
3146 return (int)(height + (borders << 1)); | |
7 | 3147 } |
3148 | |
161 | 3149 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3150 motif_get_toolbar_colors( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3151 Pixel *bgp, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3152 Pixel *fgp, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3153 Pixel *bsp, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3154 Pixel *tsp, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3155 Pixel *hsp) |
161 | 3156 { |
3157 XtVaGetValues(toolBar, | |
856 | 3158 XmNbackground, bgp, |
3159 XmNforeground, fgp, | |
3160 XmNbottomShadowColor, bsp, | |
3161 XmNtopShadowColor, tsp, | |
3162 XmNhighlightColor, hsp, | |
3163 NULL); | |
161 | 3164 } |
3165 | |
7 | 3166 # ifdef FEAT_FOOTER |
3167 /* | |
3168 * The next toolbar enter/leave callbacks should really do balloon help. But | |
4352 | 3169 * I have to use footer help for backwards compatibility. Hopefully both will |
7 | 3170 * get implemented and the user will have a choice. |
3171 */ | |
3172 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3173 toolbarbutton_enter_cb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3174 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3175 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3176 XEvent *event UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3177 Boolean *cont UNUSED) |
7 | 3178 { |
3179 vimmenu_T *menu = (vimmenu_T *) client_data; | |
3180 | |
3181 if (menu->strings[MENU_INDEX_TIP] != NULL) | |
3182 { | |
3183 if (vim_strchr(p_go, GO_FOOTER) != NULL) | |
3184 gui_mch_set_footer(menu->strings[MENU_INDEX_TIP]); | |
3185 } | |
3186 } | |
3187 | |
3188 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3189 toolbarbutton_leave_cb( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3190 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3191 XtPointer client_data UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3192 XEvent *event UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3193 Boolean *cont UNUSED) |
7 | 3194 { |
3195 gui_mch_set_footer((char_u *) ""); | |
3196 } | |
3197 # endif | |
3198 #endif | |
3199 | |
819 | 3200 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
3201 /* | |
3202 * Show or hide the tabline. | |
3203 */ | |
3204 void | |
3205 gui_mch_show_tabline(int showit) | |
3206 { | |
3207 if (tabLine == (Widget)0) | |
3208 return; | |
3209 | |
3210 if (!showit != !showing_tabline) | |
3211 { | |
3212 if (showit) | |
3213 { | |
3214 XtManageChild(tabLine); | |
3215 XtUnmanageChild(XtNameToWidget(tabLine, "PageScroller")); | |
824 | 3216 XtUnmanageChild(XtNameToWidget(tabLine, "MinorTabScrollerNext")); |
3217 XtUnmanageChild(XtNameToWidget(tabLine, | |
3218 "MinorTabScrollerPrevious")); | |
819 | 3219 #ifdef FEAT_MENU |
3220 # ifdef FEAT_TOOLBAR | |
3221 if (XtIsManaged(XtParent(toolBar))) | |
3222 XtVaSetValues(tabLine, | |
3223 XmNtopAttachment, XmATTACH_WIDGET, | |
3224 XmNtopWidget, XtParent(toolBar), NULL); | |
3225 else | |
3226 # endif | |
3227 if (XtIsManaged(menuBar)) | |
3228 XtVaSetValues(tabLine, | |
3229 XmNtopAttachment, XmATTACH_WIDGET, | |
3230 XmNtopWidget, menuBar, NULL); | |
3231 else | |
3232 #endif | |
3233 XtVaSetValues(tabLine, | |
3234 XmNtopAttachment, XmATTACH_FORM, NULL); | |
3235 XtVaSetValues(textAreaForm, | |
3236 XmNtopAttachment, XmATTACH_WIDGET, | |
3237 XmNtopWidget, tabLine, | |
3238 NULL); | |
3239 } | |
3240 else | |
3241 { | |
3242 XtUnmanageChild(tabLine); | |
3243 #ifdef FEAT_MENU | |
3244 # ifdef FEAT_TOOLBAR | |
3245 if (XtIsManaged(XtParent(toolBar))) | |
3246 XtVaSetValues(textAreaForm, | |
3247 XmNtopAttachment, XmATTACH_WIDGET, | |
3248 XmNtopWidget, XtParent(toolBar), NULL); | |
3249 else | |
3250 # endif | |
3251 if (XtIsManaged(menuBar)) | |
3252 XtVaSetValues(textAreaForm, | |
3253 XmNtopAttachment, XmATTACH_WIDGET, | |
3254 XmNtopWidget, menuBar, NULL); | |
3255 else | |
3256 #endif | |
3257 XtVaSetValues(textAreaForm, | |
3258 XmNtopAttachment, XmATTACH_FORM, NULL); | |
3259 } | |
3260 showing_tabline = showit; | |
3261 } | |
3262 } | |
3263 | |
3264 /* | |
3265 * Return TRUE when tabline is displayed. | |
3266 */ | |
3267 int | |
3268 gui_mch_showing_tabline(void) | |
3269 { | |
3270 return tabLine != (Widget)0 && showing_tabline; | |
3271 } | |
3272 | |
3273 /* | |
3274 * Update the labels of the tabline. | |
3275 */ | |
3276 void | |
3277 gui_mch_update_tabline(void) | |
3278 { | |
3279 tabpage_T *tp; | |
3280 int nr = 1, n; | |
3281 Arg args[10]; | |
3282 int curtabidx = 0, currentpage; | |
3283 Widget tab; | |
3284 XmNotebookPageInfo page_info; | |
3285 XmNotebookPageStatus page_status; | |
3286 int last_page, tab_count; | |
824 | 3287 XmString label_str; |
3288 char *label_cstr; | |
844 | 3289 BalloonEval *beval; |
819 | 3290 |
3291 if (tabLine == (Widget)0) | |
3292 return; | |
3293 | |
3294 /* Add a label for each tab page. They all contain the same text area. */ | |
3295 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) | |
3296 { | |
3297 if (tp == curtab) | |
3298 curtabidx = nr; | |
3299 | |
3300 page_status = XmNotebookGetPageInfo(tabLine, nr, &page_info); | |
3301 if (page_status == XmPAGE_INVALID | |
844 | 3302 || page_info.major_tab_widget == (Widget)0) |
819 | 3303 { |
3304 /* Add the tab */ | |
3305 n = 0; | |
3306 XtSetArg(args[n], XmNnotebookChildType, XmMAJOR_TAB); n++; | |
3307 XtSetArg(args[n], XmNtraversalOn, False); n++; | |
3308 XtSetArg(args[n], XmNalignment, XmALIGNMENT_BEGINNING); n++; | |
3309 XtSetArg(args[n], XmNhighlightThickness, 1); n++; | |
3310 XtSetArg(args[n], XmNshadowThickness , 1); n++; | |
3311 tab = XmCreatePushButton(tabLine, "-Empty-", args, n); | |
3312 XtManageChild(tab); | |
844 | 3313 beval = gui_mch_create_beval_area(tab, NULL, tabline_balloon_cb, |
3314 NULL); | |
3315 XtVaSetValues(tab, XmNuserData, beval, NULL); | |
819 | 3316 } |
3317 else | |
3318 tab = page_info.major_tab_widget; | |
3319 | |
3320 XtVaSetValues(tab, XmNpageNumber, nr, NULL); | |
824 | 3321 |
3322 /* | |
3323 * Change the label text only if it is different | |
3324 */ | |
3325 XtVaGetValues(tab, XmNlabelString, &label_str, NULL); | |
3326 if (XmStringGetLtoR(label_str, XmSTRING_DEFAULT_CHARSET, &label_cstr)) | |
3327 { | |
839 | 3328 get_tabline_label(tp, FALSE); |
3329 if (STRCMP(label_cstr, NameBuff) != 0) | |
3330 { | |
824 | 3331 XtVaSetValues(tab, XtVaTypedArg, XmNlabelString, XmRString, |
3332 NameBuff, STRLEN(NameBuff) + 1, NULL); | |
3333 /* | |
3334 * Force a resize of the tab label button | |
3335 */ | |
3336 XtUnmanageChild(tab); | |
3337 XtManageChild(tab); | |
3338 } | |
3339 XtFree(label_cstr); | |
3340 } | |
819 | 3341 } |
3342 | |
3343 tab_count = nr - 1; | |
3344 | |
3345 XtVaGetValues(tabLine, XmNlastPageNumber, &last_page, NULL); | |
3346 | |
3347 /* Remove any old labels. */ | |
3348 while (nr <= last_page) | |
3349 { | |
3350 if (XmNotebookGetPageInfo(tabLine, nr, &page_info) != XmPAGE_INVALID | |
3351 && page_info.page_number == nr | |
3352 && page_info.major_tab_widget != (Widget)0) | |
3353 { | |
844 | 3354 XtVaGetValues(page_info.major_tab_widget, XmNuserData, &beval, NULL); |
3355 if (beval != NULL) | |
3356 gui_mch_destroy_beval_area(beval); | |
819 | 3357 XtUnmanageChild(page_info.major_tab_widget); |
3358 XtDestroyWidget(page_info.major_tab_widget); | |
3359 } | |
3360 nr++; | |
3361 } | |
3362 | |
3363 XtVaSetValues(tabLine, XmNlastPageNumber, tab_count, NULL); | |
3364 | |
3365 XtVaGetValues(tabLine, XmNcurrentPageNumber, ¤tpage, NULL); | |
3366 if (currentpage != curtabidx) | |
3367 XtVaSetValues(tabLine, XmNcurrentPageNumber, curtabidx, NULL); | |
3368 } | |
3369 | |
3370 /* | |
3371 * Set the current tab to "nr". First tab is 1. | |
3372 */ | |
3373 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3374 gui_mch_set_curtab(int nr) |
819 | 3375 { |
3376 int currentpage; | |
3377 | |
3378 if (tabLine == (Widget)0) | |
3379 return; | |
3380 | |
3381 XtVaGetValues(tabLine, XmNcurrentPageNumber, ¤tpage, NULL); | |
3382 if (currentpage != nr) | |
3383 XtVaSetValues(tabLine, XmNcurrentPageNumber, nr, NULL); | |
3384 } | |
3385 #endif | |
3386 | |
7 | 3387 /* |
3388 * Set the colors of Widget "id" to the menu colors. | |
3389 */ | |
3390 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3391 gui_motif_menu_colors(Widget id) |
7 | 3392 { |
3393 if (gui.menu_bg_pixel != INVALCOLOR) | |
3394 #if (XmVersion >= 1002) | |
3395 XmChangeColor(id, gui.menu_bg_pixel); | |
3396 #else | |
3397 XtVaSetValues(id, XmNbackground, gui.menu_bg_pixel, NULL); | |
3398 #endif | |
3399 if (gui.menu_fg_pixel != INVALCOLOR) | |
3400 XtVaSetValues(id, XmNforeground, gui.menu_fg_pixel, NULL); | |
3401 } | |
3402 | |
3403 /* | |
3404 * Set the colors of Widget "id" to the scrollbar colors. | |
3405 */ | |
3406 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3407 gui_motif_scroll_colors(Widget id) |
7 | 3408 { |
3409 if (gui.scroll_bg_pixel != INVALCOLOR) | |
3410 #if (XmVersion >= 1002) | |
3411 XmChangeColor(id, gui.scroll_bg_pixel); | |
3412 #else | |
3413 XtVaSetValues(id, XmNbackground, gui.scroll_bg_pixel, NULL); | |
3414 #endif | |
3415 if (gui.scroll_fg_pixel != INVALCOLOR) | |
3416 XtVaSetValues(id, XmNforeground, gui.scroll_fg_pixel, NULL); | |
3417 } | |
3418 | |
3419 /* | |
3420 * Set the fontlist for Widget "id" to use gui.menu_fontset or gui.menu_font. | |
3421 */ | |
44 | 3422 void |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3423 gui_motif_menu_fontlist(Widget id UNUSED) |
7 | 3424 { |
44 | 3425 #ifdef FEAT_MENU |
7 | 3426 #ifdef FONTSET_ALWAYS |
3427 if (gui.menu_fontset != NOFONTSET) | |
3428 { | |
3429 XmFontList fl; | |
3430 | |
3431 fl = gui_motif_fontset2fontlist((XFontSet *)&gui.menu_fontset); | |
3432 if (fl != NULL) | |
3433 { | |
3434 if (XtIsManaged(id)) | |
3435 { | |
3436 XtUnmanageChild(id); | |
3437 XtVaSetValues(id, XmNfontList, fl, NULL); | |
3438 /* We should force the widget to recalculate it's | |
3439 * geometry now. */ | |
3440 XtManageChild(id); | |
3441 } | |
3442 else | |
3443 XtVaSetValues(id, XmNfontList, fl, NULL); | |
3444 XmFontListFree(fl); | |
3445 } | |
3446 } | |
3447 #else | |
3448 if (gui.menu_font != NOFONT) | |
3449 { | |
3450 XmFontList fl; | |
3451 | |
3452 fl = gui_motif_create_fontlist((XFontStruct *)gui.menu_font); | |
3453 if (fl != NULL) | |
3454 { | |
3455 if (XtIsManaged(id)) | |
3456 { | |
3457 XtUnmanageChild(id); | |
3458 XtVaSetValues(id, XmNfontList, fl, NULL); | |
3459 /* We should force the widget to recalculate it's | |
3460 * geometry now. */ | |
3461 XtManageChild(id); | |
3462 } | |
3463 else | |
3464 XtVaSetValues(id, XmNfontList, fl, NULL); | |
3465 XmFontListFree(fl); | |
3466 } | |
3467 } | |
3468 #endif | |
44 | 3469 #endif |
7 | 3470 } |
3471 | |
3472 | |
3473 /* | |
3474 * We don't create it twice for the sake of speed. | |
3475 */ | |
3476 | |
3477 typedef struct _SharedFindReplace | |
3478 { | |
3479 Widget dialog; /* the main dialog widget */ | |
3480 Widget wword; /* 'Exact match' check button */ | |
3481 Widget mcase; /* 'match case' check button */ | |
3482 Widget up; /* search direction 'Up' radio button */ | |
3483 Widget down; /* search direction 'Down' radio button */ | |
3484 Widget what; /* 'Find what' entry text widget */ | |
3485 Widget with; /* 'Replace with' entry text widget */ | |
3486 Widget find; /* 'Find Next' action button */ | |
3487 Widget replace; /* 'Replace With' action button */ | |
3488 Widget all; /* 'Replace All' action button */ | |
3489 Widget undo; /* 'Undo' action button */ | |
3490 | |
3491 Widget cancel; | |
3492 } SharedFindReplace; | |
3493 | |
1887 | 3494 static SharedFindReplace find_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}; |
3495 static SharedFindReplace repl_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}; | |
7 | 3496 |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3497 static void find_replace_destroy_callback(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3498 static void find_replace_dismiss_callback(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3499 static void entry_activate_callback(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3500 static void find_replace_callback(Widget w, XtPointer client_data, XtPointer call_data); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3501 static void find_replace_keypress(Widget w, SharedFindReplace * frdp, XKeyEvent * event); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
6819
diff
changeset
|
3502 static void find_replace_dialog_create(char_u *entry_text, int do_replace); |
7 | 3503 |
3504 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3505 find_replace_destroy_callback( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3506 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3507 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3508 XtPointer call_data UNUSED) |
7 | 3509 { |
3510 SharedFindReplace *cd = (SharedFindReplace *)client_data; | |
3511 | |
48 | 3512 if (cd != NULL) |
44 | 3513 /* suppress_dialog_mnemonics(cd->dialog); */ |
7 | 3514 cd->dialog = (Widget)0; |
3515 } | |
3516 | |
3517 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3518 find_replace_dismiss_callback( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3519 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3520 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3521 XtPointer call_data UNUSED) |
7 | 3522 { |
3523 SharedFindReplace *cd = (SharedFindReplace *)client_data; | |
3524 | |
3525 if (cd != NULL) | |
3526 XtUnmanageChild(cd->dialog); | |
3527 } | |
3528 | |
3529 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3530 entry_activate_callback( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3531 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3532 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3533 XtPointer call_data UNUSED) |
7 | 3534 { |
3535 XmProcessTraversal((Widget)client_data, XmTRAVERSE_CURRENT); | |
3536 } | |
3537 | |
3538 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3539 find_replace_callback( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3540 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3541 XtPointer client_data, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3542 XtPointer call_data UNUSED) |
7 | 3543 { |
3544 long_u flags = (long_u)client_data; | |
3545 char *find_text, *repl_text; | |
3546 Boolean direction_down = TRUE; | |
3547 Boolean wword; | |
3548 Boolean mcase; | |
3549 SharedFindReplace *sfr; | |
3550 | |
3551 if (flags == FRD_UNDO) | |
3552 { | |
3553 char_u *save_cpo = p_cpo; | |
3554 | |
3555 /* No need to be Vi compatible here. */ | |
3556 p_cpo = (char_u *)""; | |
3557 u_undo(1); | |
3558 p_cpo = save_cpo; | |
3559 gui_update_screen(); | |
3560 return; | |
3561 } | |
3562 | |
3563 /* Get the search/replace strings from the dialog */ | |
3564 if (flags == FRD_FINDNEXT) | |
3565 { | |
3566 repl_text = NULL; | |
3567 sfr = &find_widgets; | |
3568 } | |
3569 else | |
3570 { | |
3571 repl_text = XmTextFieldGetString(repl_widgets.with); | |
3572 sfr = &repl_widgets; | |
3573 } | |
3574 find_text = XmTextFieldGetString(sfr->what); | |
3575 XtVaGetValues(sfr->down, XmNset, &direction_down, NULL); | |
3576 XtVaGetValues(sfr->wword, XmNset, &wword, NULL); | |
3577 XtVaGetValues(sfr->mcase, XmNset, &mcase, NULL); | |
3578 if (wword) | |
3579 flags |= FRD_WHOLE_WORD; | |
3580 if (mcase) | |
3581 flags |= FRD_MATCH_CASE; | |
3582 | |
3583 (void)gui_do_findrepl((int)flags, (char_u *)find_text, (char_u *)repl_text, | |
3584 direction_down); | |
3585 | |
3586 if (find_text != NULL) | |
3587 XtFree(find_text); | |
3588 if (repl_text != NULL) | |
3589 XtFree(repl_text); | |
3590 } | |
3591 | |
3592 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3593 find_replace_keypress( |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3594 Widget w UNUSED, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3595 SharedFindReplace *frdp, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3596 XKeyEvent *event) |
7 | 3597 { |
3598 KeySym keysym; | |
3599 | |
3600 if (frdp == NULL) | |
3601 return; | |
3602 | |
3603 keysym = XLookupKeysym(event, 0); | |
3604 | |
3605 /* the scape key pops the whole dialog down */ | |
3606 if (keysym == XK_Escape) | |
3607 XtUnmanageChild(frdp->dialog); | |
3608 } | |
3609 | |
3610 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3611 set_label(Widget w, char *label) |
44 | 3612 { |
3613 XmString str; | |
3614 char_u *p, *next; | |
3615 KeySym mnemonic = NUL; | |
3616 | |
3617 if (!w) | |
3618 return; | |
3619 | |
4960
27b008d5b7ac
updated for version 7.3.1225
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3620 p = vim_strsave((char_u *)label); |
44 | 3621 if (p == NULL) |
3622 return; | |
3623 for (next = p; *next; ++next) | |
3624 { | |
3625 if (*next == DLG_HOTKEY_CHAR) | |
3626 { | |
3627 int len = STRLEN(next); | |
3628 | |
3629 if (len > 0) | |
3630 { | |
3631 mch_memmove(next, next + 1, len); | |
3632 mnemonic = next[0]; | |
3633 } | |
3634 } | |
3635 } | |
3636 | |
3637 str = XmStringCreateSimple((char *)p); | |
3638 vim_free(p); | |
3639 if (str) | |
3640 { | |
3641 XtVaSetValues(w, | |
3642 XmNlabelString, str, | |
3643 XmNmnemonic, mnemonic, | |
3644 NULL); | |
3645 XmStringFree(str); | |
3646 } | |
3647 gui_motif_menu_fontlist(w); | |
3648 } | |
3649 | |
3650 static void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
3651 find_replace_dialog_create(char_u *arg, int do_replace) |
7 | 3652 { |
3653 SharedFindReplace *frdp; | |
3654 Widget separator; | |
3655 Widget input_form; | |
3656 Widget button_form; | |
3657 Widget toggle_form; | |
3658 Widget frame; | |
3659 XmString str; | |
3660 int n; | |
3661 Arg args[6]; | |
3662 int wword = FALSE; | |
3663 int mcase = !p_ic; | |
3664 Dimension width; | |
3665 Dimension widest; | |
3666 char_u *entry_text; | |
3667 | |
3668 frdp = do_replace ? &repl_widgets : &find_widgets; | |
3669 | |
3670 /* Get the search string to use. */ | |
3671 entry_text = get_find_dialog_text(arg, &wword, &mcase); | |
3672 | |
3673 /* If the dialog already exists, just raise it. */ | |
3674 if (frdp->dialog) | |
3675 { | |
44 | 3676 gui_motif_synch_fonts(); |
3677 | |
7 | 3678 /* If the window is already up, just pop it to the top */ |
3679 if (XtIsManaged(frdp->dialog)) | |
3680 XMapRaised(XtDisplay(frdp->dialog), | |
3681 XtWindow(XtParent(frdp->dialog))); | |
3682 else | |
3683 XtManageChild(frdp->dialog); | |
3684 XtPopup(XtParent(frdp->dialog), XtGrabNone); | |
3685 XmProcessTraversal(frdp->what, XmTRAVERSE_CURRENT); | |
3686 | |
3687 if (entry_text != NULL) | |
3688 XmTextFieldSetString(frdp->what, (char *)entry_text); | |
3689 vim_free(entry_text); | |
3690 | |
3691 XtVaSetValues(frdp->wword, XmNset, wword, NULL); | |
3692 return; | |
3693 } | |
3694 | |
3695 /* Create a fresh new dialog window */ | |
3696 if (do_replace) | |
3697 str = XmStringCreateSimple(_("VIM - Search and Replace...")); | |
3698 else | |
3699 str = XmStringCreateSimple(_("VIM - Search...")); | |
3700 | |
3701 n = 0; | |
3702 XtSetArg(args[n], XmNautoUnmanage, False); n++; | |
3703 XtSetArg(args[n], XmNnoResize, True); n++; | |
3704 XtSetArg(args[n], XmNdialogTitle, str); n++; | |
3705 | |
3706 frdp->dialog = XmCreateFormDialog(vimShell, "findReplaceDialog", args, n); | |
3707 XmStringFree(str); | |
3708 XtAddCallback(frdp->dialog, XmNdestroyCallback, | |
3709 find_replace_destroy_callback, frdp); | |
3710 | |
3711 button_form = XtVaCreateWidget("buttonForm", | |
3712 xmFormWidgetClass, frdp->dialog, | |
3713 XmNrightAttachment, XmATTACH_FORM, | |
3714 XmNrightOffset, 4, | |
3715 XmNtopAttachment, XmATTACH_FORM, | |
3716 XmNtopOffset, 4, | |
3717 XmNbottomAttachment, XmATTACH_FORM, | |
3718 XmNbottomOffset, 4, | |
3719 NULL); | |
3720 | |
3721 frdp->find = XtVaCreateManagedWidget("findButton", | |
3722 xmPushButtonWidgetClass, button_form, | |
3723 XmNsensitive, True, | |
3724 XmNtopAttachment, XmATTACH_FORM, | |
3725 XmNleftAttachment, XmATTACH_FORM, | |
3726 XmNrightAttachment, XmATTACH_FORM, | |
3727 NULL); | |
44 | 3728 set_label(frdp->find, _("Find &Next")); |
7 | 3729 |
3730 XtAddCallback(frdp->find, XmNactivateCallback, | |
3731 find_replace_callback, | |
1522 | 3732 (do_replace ? (XtPointer)FRD_R_FINDNEXT : (XtPointer)FRD_FINDNEXT)); |
7 | 3733 |
3734 if (do_replace) | |
3735 { | |
3736 frdp->replace = XtVaCreateManagedWidget("replaceButton", | |
3737 xmPushButtonWidgetClass, button_form, | |
3738 XmNtopAttachment, XmATTACH_WIDGET, | |
3739 XmNtopWidget, frdp->find, | |
3740 XmNleftAttachment, XmATTACH_FORM, | |
3741 XmNrightAttachment, XmATTACH_FORM, | |
3742 NULL); | |
44 | 3743 set_label(frdp->replace, _("&Replace")); |
7 | 3744 XtAddCallback(frdp->replace, XmNactivateCallback, |
3745 find_replace_callback, (XtPointer)FRD_REPLACE); | |
3746 | |
3747 frdp->all = XtVaCreateManagedWidget("replaceAllButton", | |
3748 xmPushButtonWidgetClass, button_form, | |
3749 XmNtopAttachment, XmATTACH_WIDGET, | |
3750 XmNtopWidget, frdp->replace, | |
3751 XmNleftAttachment, XmATTACH_FORM, | |
3752 XmNrightAttachment, XmATTACH_FORM, | |
3753 NULL); | |
44 | 3754 set_label(frdp->all, _("Replace &All")); |
7 | 3755 XtAddCallback(frdp->all, XmNactivateCallback, |
3756 find_replace_callback, (XtPointer)FRD_REPLACEALL); | |
3757 | |
3758 frdp->undo = XtVaCreateManagedWidget("undoButton", | |
3759 xmPushButtonWidgetClass, button_form, | |
3760 XmNtopAttachment, XmATTACH_WIDGET, | |
3761 XmNtopWidget, frdp->all, | |
3762 XmNleftAttachment, XmATTACH_FORM, | |
3763 XmNrightAttachment, XmATTACH_FORM, | |
3764 NULL); | |
44 | 3765 set_label(frdp->undo, _("&Undo")); |
7 | 3766 XtAddCallback(frdp->undo, XmNactivateCallback, |
3767 find_replace_callback, (XtPointer)FRD_UNDO); | |
3768 } | |
3769 | |
3770 frdp->cancel = XtVaCreateManagedWidget("closeButton", | |
3771 xmPushButtonWidgetClass, button_form, | |
3772 XmNleftAttachment, XmATTACH_FORM, | |
3773 XmNrightAttachment, XmATTACH_FORM, | |
3774 XmNbottomAttachment, XmATTACH_FORM, | |
3775 NULL); | |
44 | 3776 set_label(frdp->cancel, _("&Cancel")); |
7 | 3777 XtAddCallback(frdp->cancel, XmNactivateCallback, |
3778 find_replace_dismiss_callback, frdp); | |
44 | 3779 gui_motif_menu_fontlist(frdp->cancel); |
7 | 3780 |
3781 XtManageChild(button_form); | |
3782 | |
3783 n = 0; | |
3784 XtSetArg(args[n], XmNorientation, XmVERTICAL); n++; | |
3785 XtSetArg(args[n], XmNrightAttachment, XmATTACH_WIDGET); n++; | |
3786 XtSetArg(args[n], XmNrightWidget, button_form); n++; | |
3787 XtSetArg(args[n], XmNrightOffset, 4); n++; | |
3788 XtSetArg(args[n], XmNtopAttachment, XmATTACH_FORM); n++; | |
3789 XtSetArg(args[n], XmNbottomAttachment, XmATTACH_FORM); n++; | |
3790 separator = XmCreateSeparatorGadget(frdp->dialog, "separator", args, n); | |
3791 XtManageChild(separator); | |
3792 | |
3793 input_form = XtVaCreateWidget("inputForm", | |
3794 xmFormWidgetClass, frdp->dialog, | |
3795 XmNleftAttachment, XmATTACH_FORM, | |
3796 XmNleftOffset, 4, | |
3797 XmNrightAttachment, XmATTACH_WIDGET, | |
3798 XmNrightWidget, separator, | |
3799 XmNrightOffset, 4, | |
3800 XmNtopAttachment, XmATTACH_FORM, | |
3801 XmNtopOffset, 4, | |
3802 NULL); | |
3803 | |
3804 { | |
3805 Widget label_what; | |
3806 Widget label_with = (Widget)0; | |
3807 | |
3808 str = XmStringCreateSimple(_("Find what:")); | |
3809 label_what = XtVaCreateManagedWidget("whatLabel", | |
3810 xmLabelGadgetClass, input_form, | |
3811 XmNlabelString, str, | |
3812 XmNleftAttachment, XmATTACH_FORM, | |
3813 XmNtopAttachment, XmATTACH_FORM, | |
3814 XmNtopOffset, 4, | |
3815 NULL); | |
3816 XmStringFree(str); | |
44 | 3817 gui_motif_menu_fontlist(label_what); |
7 | 3818 |
3819 frdp->what = XtVaCreateManagedWidget("whatText", | |
3820 xmTextFieldWidgetClass, input_form, | |
3821 XmNtopAttachment, XmATTACH_FORM, | |
3822 XmNrightAttachment, XmATTACH_FORM, | |
3823 XmNleftAttachment, XmATTACH_FORM, | |
3824 NULL); | |
3825 | |
3826 if (do_replace) | |
3827 { | |
3828 frdp->with = XtVaCreateManagedWidget("withText", | |
3829 xmTextFieldWidgetClass, input_form, | |
3830 XmNtopAttachment, XmATTACH_WIDGET, | |
3831 XmNtopWidget, frdp->what, | |
3832 XmNtopOffset, 4, | |
3833 XmNleftAttachment, XmATTACH_FORM, | |
3834 XmNrightAttachment, XmATTACH_FORM, | |
3835 XmNbottomAttachment, XmATTACH_FORM, | |
3836 NULL); | |
3837 | |
3838 XtAddCallback(frdp->with, XmNactivateCallback, | |
3839 find_replace_callback, (XtPointer) FRD_R_FINDNEXT); | |
3840 | |
3841 str = XmStringCreateSimple(_("Replace with:")); | |
3842 label_with = XtVaCreateManagedWidget("withLabel", | |
3843 xmLabelGadgetClass, input_form, | |
3844 XmNlabelString, str, | |
3845 XmNleftAttachment, XmATTACH_FORM, | |
3846 XmNtopAttachment, XmATTACH_WIDGET, | |
3847 XmNtopWidget, frdp->what, | |
3848 XmNtopOffset, 4, | |
3849 XmNbottomAttachment, XmATTACH_FORM, | |
3850 NULL); | |
3851 XmStringFree(str); | |
44 | 3852 gui_motif_menu_fontlist(label_with); |
7 | 3853 |
3854 /* | |
3855 * Make the entry activation only change the input focus onto the | |
3856 * with item. | |
3857 */ | |
3858 XtAddCallback(frdp->what, XmNactivateCallback, | |
3859 entry_activate_callback, frdp->with); | |
3860 XtAddEventHandler(frdp->with, KeyPressMask, False, | |
3861 (XtEventHandler)find_replace_keypress, | |
3862 (XtPointer) frdp); | |
3863 | |
3864 } | |
3865 else | |
3866 { | |
3867 /* | |
3868 * Make the entry activation do the search. | |
3869 */ | |
3870 XtAddCallback(frdp->what, XmNactivateCallback, | |
3871 find_replace_callback, (XtPointer)FRD_FINDNEXT); | |
3872 } | |
3873 XtAddEventHandler(frdp->what, KeyPressMask, False, | |
3874 (XtEventHandler)find_replace_keypress, | |
3875 (XtPointer)frdp); | |
3876 | |
3877 /* Get the maximum width between the label widgets and line them up. | |
3878 */ | |
3879 n = 0; | |
3880 XtSetArg(args[n], XmNwidth, &width); n++; | |
3881 XtGetValues(label_what, args, n); | |
3882 widest = width; | |
3883 if (do_replace) | |
3884 { | |
3885 XtGetValues(label_with, args, n); | |
3886 if (width > widest) | |
3887 widest = width; | |
3888 } | |
3889 | |
3890 XtVaSetValues(frdp->what, XmNleftOffset, widest, NULL); | |
3891 if (do_replace) | |
3892 XtVaSetValues(frdp->with, XmNleftOffset, widest, NULL); | |
3893 | |
3894 } | |
3895 | |
3896 XtManageChild(input_form); | |
3897 | |
3898 { | |
3899 Widget radio_box; | |
44 | 3900 Widget w; |
7 | 3901 |
3902 frame = XtVaCreateWidget("directionFrame", | |
3903 xmFrameWidgetClass, frdp->dialog, | |
3904 XmNtopAttachment, XmATTACH_WIDGET, | |
3905 XmNtopWidget, input_form, | |
3906 XmNtopOffset, 4, | |
3907 XmNbottomAttachment, XmATTACH_FORM, | |
3908 XmNbottomOffset, 4, | |
3909 XmNrightAttachment, XmATTACH_OPPOSITE_WIDGET, | |
3910 XmNrightWidget, input_form, | |
3911 NULL); | |
3912 | |
3913 str = XmStringCreateSimple(_("Direction")); | |
44 | 3914 w = XtVaCreateManagedWidget("directionFrameLabel", |
7 | 3915 xmLabelGadgetClass, frame, |
3916 XmNlabelString, str, | |
3917 XmNchildHorizontalAlignment, XmALIGNMENT_BEGINNING, | |
3918 XmNchildType, XmFRAME_TITLE_CHILD, | |
3919 NULL); | |
3920 XmStringFree(str); | |
44 | 3921 gui_motif_menu_fontlist(w); |
7 | 3922 |
3923 radio_box = XmCreateRadioBox(frame, "radioBox", | |
3924 (ArgList)NULL, 0); | |
3925 | |
3926 str = XmStringCreateSimple( _("Up")); | |
3927 frdp->up = XtVaCreateManagedWidget("upRadioButton", | |
3928 xmToggleButtonGadgetClass, radio_box, | |
3929 XmNlabelString, str, | |
3930 XmNset, False, | |
3931 NULL); | |
3932 XmStringFree(str); | |
44 | 3933 gui_motif_menu_fontlist(frdp->up); |
7 | 3934 |
3935 str = XmStringCreateSimple(_("Down")); | |
3936 frdp->down = XtVaCreateManagedWidget("downRadioButton", | |
3937 xmToggleButtonGadgetClass, radio_box, | |
3938 XmNlabelString, str, | |
3939 XmNset, True, | |
3940 NULL); | |
3941 XmStringFree(str); | |
44 | 3942 gui_motif_menu_fontlist(frdp->down); |
7 | 3943 |
3944 XtManageChild(radio_box); | |
3945 XtManageChild(frame); | |
3946 } | |
3947 | |
3948 toggle_form = XtVaCreateWidget("toggleForm", | |
3949 xmFormWidgetClass, frdp->dialog, | |
3950 XmNleftAttachment, XmATTACH_FORM, | |
3951 XmNleftOffset, 4, | |
3952 XmNrightAttachment, XmATTACH_WIDGET, | |
3953 XmNrightWidget, frame, | |
3954 XmNrightOffset, 4, | |
3955 XmNtopAttachment, XmATTACH_WIDGET, | |
3956 XmNtopWidget, input_form, | |
3957 XmNtopOffset, 4, | |
3958 XmNbottomAttachment, XmATTACH_FORM, | |
3959 XmNbottomOffset, 4, | |
3960 NULL); | |
3961 | |
3962 str = XmStringCreateSimple(_("Match whole word only")); | |
3963 frdp->wword = XtVaCreateManagedWidget("wordToggle", | |
3964 xmToggleButtonGadgetClass, toggle_form, | |
3965 XmNlabelString, str, | |
3966 XmNtopAttachment, XmATTACH_FORM, | |
3967 XmNtopOffset, 4, | |
3968 XmNleftAttachment, XmATTACH_FORM, | |
3969 XmNleftOffset, 4, | |
3970 XmNset, wword, | |
3971 NULL); | |
3972 XmStringFree(str); | |
3973 | |
3974 str = XmStringCreateSimple(_("Match case")); | |
3975 frdp->mcase = XtVaCreateManagedWidget("caseToggle", | |
3976 xmToggleButtonGadgetClass, toggle_form, | |
3977 XmNlabelString, str, | |
3978 XmNleftAttachment, XmATTACH_FORM, | |
3979 XmNleftOffset, 4, | |
3980 XmNtopAttachment, XmATTACH_WIDGET, | |
3981 XmNtopWidget, frdp->wword, | |
3982 XmNtopOffset, 4, | |
3983 XmNset, mcase, | |
3984 NULL); | |
3985 XmStringFree(str); | |
44 | 3986 gui_motif_menu_fontlist(frdp->wword); |
3987 gui_motif_menu_fontlist(frdp->mcase); | |
7 | 3988 |
3989 XtManageChild(toggle_form); | |
3990 | |
3991 if (entry_text != NULL) | |
3992 XmTextFieldSetString(frdp->what, (char *)entry_text); | |
3993 vim_free(entry_text); | |
3994 | |
44 | 3995 gui_motif_synch_fonts(); |
3996 | |
3997 manage_centered(frdp->dialog); | |
3998 activate_dialog_mnemonics(frdp->dialog); | |
7 | 3999 XmProcessTraversal(frdp->what, XmTRAVERSE_CURRENT); |
4000 } | |
4001 | |
4002 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
4003 gui_mch_find_dialog(exarg_T *eap) |
7 | 4004 { |
4005 if (!gui.in_use) | |
4006 return; | |
4007 | |
4008 find_replace_dialog_create(eap->arg, FALSE); | |
4009 } | |
4010 | |
4011 | |
4012 void | |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
4013 gui_mch_replace_dialog(exarg_T *eap) |
7 | 4014 { |
4015 if (!gui.in_use) | |
4016 return; | |
4017 | |
4018 find_replace_dialog_create(eap->arg, TRUE); | |
4019 } | |
44 | 4020 |
4021 /* | |
4022 * Synchronize all gui elements, which are dependant upon the | |
4023 * main text font used. Those are in esp. the find/replace dialogs. | |
4024 * If you don't understand why this should be needed, please try to | |
7815
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4025 * search for "pi\xea\xb6\xe6" in iso8859-2. |
44 | 4026 */ |
4027 void | |
4028 gui_motif_synch_fonts(void) | |
4029 { | |
4030 SharedFindReplace *frdp; | |
4031 int do_replace; | |
4032 XFontStruct *font; | |
4033 XmFontList font_list; | |
4034 | |
4035 /* FIXME: Unless we find out how to create a XmFontList from a XFontSet, | |
4036 * we just give up here on font synchronization. */ | |
4037 font = (XFontStruct *)gui.norm_font; | |
4038 if (font == NULL) | |
4039 return; | |
4040 | |
4041 font_list = gui_motif_create_fontlist(font); | |
4042 | |
4043 /* OK this loop is a bit tricky... */ | |
4044 for (do_replace = 0; do_replace <= 1; ++do_replace) | |
4045 { | |
4046 frdp = (do_replace) ? (&repl_widgets) : (&find_widgets); | |
4047 if (frdp->dialog) | |
4048 { | |
4049 XtVaSetValues(frdp->what, XmNfontList, font_list, NULL); | |
4050 if (do_replace) | |
4051 XtVaSetValues(frdp->with, XmNfontList, font_list, NULL); | |
4052 } | |
4053 } | |
4054 | |
4055 XmFontListFree(font_list); | |
4056 } |