annotate src/gui_gtk.c @ 10544:a3cef16bea27 v8.0.0162

patch 8.0.0162: build error on Fedora 23 commit https://github.com/vim/vim/commit/009c7b2640b6e04c101118cc7d0dc5785f9aa116 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 9 20:30:27 2017 +0100 patch 8.0.0162: build error on Fedora 23 Problem: Build error on Fedora 23 with small features and gnome2. Solution: Undefine ngettext(). (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Mon, 09 Jan 2017 20:45:04 +0100
parents 6c8a4d21b873
children 506f5d8b7d8b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9035
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * Porting to GTK+ was done by:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 *
68
a97c6902ecd9 updated for version 7.0030
vimboss
parents: 41
diff changeset
13 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * With GREAT support and continuous encouragements by Andy Kahn and of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 * course Bram Moolenaar!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 * Support for GTK+ 2 was added by:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * Daniel Elstner <daniel.elstner@gmx.net>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 * Best supporting actor (He helped somewhat, aesthetically speaking):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 * Maxime Romano <verbophobe@hotmail.com>
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
25 *
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
26 * Support for GTK+ 3 was added by:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
27 *
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
28 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
29 *
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
30 * With the help of Marius Gedminas and the word of Bram Moolenaar,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
31 * "Let's give this some time to mature."
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
34 #include "vim.h"
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
35
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 #ifdef FEAT_GUI_GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 # include "gui_gtk_f.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 /* GTK defines MAX and MIN, but some system header files as well. Undefine
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 * them and don't use them. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 #ifdef MIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 # undef MIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 #ifdef MAX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 # undef MAX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 #ifdef FEAT_GUI_GNOME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 /* Gnome redefines _() and N_(). Grrr... */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 # ifdef _
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 # undef _
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 # endif
10544
a3cef16bea27 patch 8.0.0162: build error on Fedora 23
Christian Brabandt <cb@256bit.org>
parents: 10390
diff changeset
54 # ifdef ngettext
a3cef16bea27 patch 8.0.0162: build error on Fedora 23
Christian Brabandt <cb@256bit.org>
parents: 10390
diff changeset
55 # undef ngettext
a3cef16bea27 patch 8.0.0162: build error on Fedora 23
Christian Brabandt <cb@256bit.org>
parents: 10390
diff changeset
56 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 # ifdef N_
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 # undef N_
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 # ifdef textdomain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 # undef textdomain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 # ifdef bindtextdomain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 # undef bindtextdomain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # endif
1286
152e52624521 updated for version 7.1-001
vimboss
parents: 1215
diff changeset
66 # ifdef bind_textdomain_codeset
152e52624521 updated for version 7.1-001
vimboss
parents: 1215
diff changeset
67 # undef bind_textdomain_codeset
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1025
diff changeset
68 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 # define ENABLE_NLS /* so the texts in the dialog boxes are translated */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # include <gnome.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 #ifdef FEAT_GUI_GTK
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
76 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
77 # include <gdk/gdkkeysyms-compat.h>
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
78 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
79 # include <gdk/gdkkeysyms.h>
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
80 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 # include <gdk/gdk.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # ifdef WIN3264
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 # include <gdk/gdkwin32.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 # include <gdk/gdkx.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 # include <gtk/gtk.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 /* define these items to be able to generate prototypes without GTK */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 typedef int GtkWidget;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 # define gpointer int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 # define guint8 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 # define GdkPixmap int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 # define GdkBitmap int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 # define GtkIconFactory int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 # define GtkToolbar int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 # define GtkAdjustment int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 # define gboolean int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 # define GdkEventKey int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 # define CancelData int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 static void entry_activate_cb(GtkWidget *widget, gpointer data);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 static void entry_changed_cb(GtkWidget *entry, GtkWidget *dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 static void find_replace_cb(GtkWidget *widget, gpointer data);
3564
8d1b63e6d317 updated for version 7.3.542
Bram Moolenaar <bram@vim.org>
parents: 3484
diff changeset
107 #if defined(FEAT_BROWSE) || defined(PROTO)
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
108 static void recent_func_log_func(
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
109 const gchar *log_domain,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
110 GLogLevelFlags log_level,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
111 const gchar *message,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
112 gpointer user_data);
3564
8d1b63e6d317 updated for version 7.3.542
Bram Moolenaar <bram@vim.org>
parents: 3484
diff changeset
113 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
115 #if defined(FEAT_TOOLBAR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 * Table from BuiltIn## icon indices to GTK+ stock IDs. Order must exactly
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 * match toolbar_names[] in menu.c! All stock icons including the "vim-*"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 * ones can be overridden in your gtkrc file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
121 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
122 static const char * const menu_themed_names[] =
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
123 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
124 /* 00 */ "document-new", /* sub. GTK_STOCK_NEW */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
125 /* 01 */ "document-open", /* sub. GTK_STOCK_OPEN */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
126 /* 02 */ "document-save", /* sub. GTK_STOCK_SAVE */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
127 /* 03 */ "edit-undo", /* sub. GTK_STOCK_UNDO */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
128 /* 04 */ "edit-redo", /* sub. GTK_STOCK_REDO */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
129 /* 05 */ "edit-cut", /* sub. GTK_STOCK_CUT */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
130 /* 06 */ "edit-copy", /* sub. GTK_STOCK_COPY */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
131 /* 07 */ "edit-paste", /* sub. GTK_STOCK_PASTE */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
132 /* 08 */ "document-print", /* sub. GTK_STOCK_PRINT */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
133 /* 09 */ "help-browser", /* sub. GTK_STOCK_HELP */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
134 /* 10 */ "edit-find", /* sub. GTK_STOCK_FIND */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
135 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
136 /* Use the file names in gui_gtk_res.xml, cutting off the extension.
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
137 * Similar changes follow. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
138 /* 11 */ "stock_vim_save_all",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
139 /* 12 */ "stock_vim_session_save",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
140 /* 13 */ "stock_vim_session_new",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
141 /* 14 */ "stock_vim_session_load",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
142 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
143 /* 11 */ "vim-save-all",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
144 /* 12 */ "vim-session-save",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
145 /* 13 */ "vim-session-new",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
146 /* 14 */ "vim-session-load",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
147 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
148 /* 15 */ "system-run", /* sub. GTK_STOCK_EXECUTE */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
149 /* 16 */ "edit-find-replace", /* sub. GTK_STOCK_FIND_AND_REPLACE */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
150 /* 17 */ "window-close", /* sub. GTK_STOCK_CLOSE, FIXME: fuzzy */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
151 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
152 /* 18 */ "stock_vim_window_maximize",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
153 /* 19 */ "stock_vim_window_minimize",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
154 /* 20 */ "stock_vim_window_split",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
155 /* 21 */ "stock_vim_shell",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
156 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
157 /* 18 */ "vim-window-maximize",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
158 /* 19 */ "vim-window-minimize",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
159 /* 20 */ "vim-window-split",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
160 /* 21 */ "vim-shell",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
161 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
162 /* 22 */ "go-previous", /* sub. GTK_STOCK_GO_BACK */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
163 /* 23 */ "go-next", /* sub. GTK_STOCK_GO_FORWARD */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
164 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
165 /* 24 */ "stock_vim_find_help",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
166 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
167 /* 24 */ "vim-find-help",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
168 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
169 /* 25 */ "gtk-convert", /* sub. GTK_STOCK_CONVERT */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
170 /* 26 */ "go-jump", /* sub. GTK_STOCK_JUMP_TO */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
171 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
172 /* 27 */ "stock_vim_build_tags",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
173 /* 28 */ "stock_vim_window_split_vertical",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
174 /* 29 */ "stock_vim_window_maximize_width",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
175 /* 30 */ "stock_vim_window_minimize_width",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
176 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
177 /* 27 */ "vim-build-tags",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
178 /* 28 */ "vim-window-split-vertical",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
179 /* 29 */ "vim-window-maximize-width",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
180 /* 30 */ "vim-window-minimize-width",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
181 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
182 /* 31 */ "application-exit", /* GTK_STOCK_QUIT */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
183 };
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
184 # else /* !GTK_CHECK_VERSION(3,10,0) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 static const char * const menu_stock_ids[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 /* 00 */ GTK_STOCK_NEW,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 /* 01 */ GTK_STOCK_OPEN,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 /* 02 */ GTK_STOCK_SAVE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 /* 03 */ GTK_STOCK_UNDO,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 /* 04 */ GTK_STOCK_REDO,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 /* 05 */ GTK_STOCK_CUT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 /* 06 */ GTK_STOCK_COPY,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 /* 07 */ GTK_STOCK_PASTE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 /* 08 */ GTK_STOCK_PRINT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 /* 09 */ GTK_STOCK_HELP,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 /* 10 */ GTK_STOCK_FIND,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 /* 11 */ "vim-save-all",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 /* 12 */ "vim-session-save",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 /* 13 */ "vim-session-new",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 /* 14 */ "vim-session-load",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 /* 15 */ GTK_STOCK_EXECUTE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 /* 16 */ GTK_STOCK_FIND_AND_REPLACE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 /* 17 */ GTK_STOCK_CLOSE, /* FIXME: fuzzy */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 /* 18 */ "vim-window-maximize",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 /* 19 */ "vim-window-minimize",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 /* 20 */ "vim-window-split",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 /* 21 */ "vim-shell",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 /* 22 */ GTK_STOCK_GO_BACK,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 /* 23 */ GTK_STOCK_GO_FORWARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 /* 24 */ "vim-find-help",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 /* 25 */ GTK_STOCK_CONVERT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 /* 26 */ GTK_STOCK_JUMP_TO,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 /* 27 */ "vim-build-tags",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 /* 28 */ "vim-window-split-vertical",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 /* 29 */ "vim-window-maximize-width",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 /* 30 */ "vim-window-minimize-width",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 /* 31 */ GTK_STOCK_QUIT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 };
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
220 # endif /* !GTK_CHECK_VERSION(3,10,0) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
222 # ifdef USE_GRESOURCE
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
223 # if !GTK_CHECK_VERSION(3,10,0)
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
224 typedef struct IconNames {
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
225 const char *icon_name;
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
226 const char *file_name;
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
227 } IconNames;
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
228
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
229 static IconNames stock_vim_icons[] = {
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
230 { "vim-build-tags", "stock_vim_build_tags.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
231 { "vim-find-help", "stock_vim_find_help.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
232 { "vim-save-all", "stock_vim_save_all.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
233 { "vim-session-load", "stock_vim_session_load.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
234 { "vim-session-new", "stock_vim_session_new.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
235 { "vim-session-save", "stock_vim_session_save.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
236 { "vim-shell", "stock_vim_shell.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
237 { "vim-window-maximize", "stock_vim_window_maximize.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
238 { "vim-window-maximize-width", "stock_vim_window_maximize_width.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
239 { "vim-window-minimize", "stock_vim_window_minimize.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
240 { "vim-window-minimize-width", "stock_vim_window_minimize_width.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
241 { "vim-window-split", "stock_vim_window_split.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
242 { "vim-window-split-vertical", "stock_vim_window_split_vertical.png" },
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
243 { NULL, NULL }
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
244 };
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
245 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
246 # endif /* USE_G_RESOURCE */
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
247
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
248 # ifndef USE_GRESOURCE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 add_stock_icon(GtkIconFactory *factory,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 const char *stock_id,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 const guint8 *inline_data,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 int data_length)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 GdkPixbuf *pixbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 GtkIconSet *icon_set;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 pixbuf = gdk_pixbuf_new_from_inline(data_length, inline_data, FALSE, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 icon_set = gtk_icon_set_new_from_pixbuf(pixbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 gtk_icon_factory_add(factory, stock_id, icon_set);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 gtk_icon_set_unref(icon_set);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 g_object_unref(pixbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
266 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 lookup_menu_iconfile(char_u *iconfile, char_u *dest)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 expand_env(iconfile, dest, MAXPATHL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 if (mch_isFullName(dest))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 return vim_fexists(dest);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 static const char suffixes[][4] = {"png", "xpm", "bmp"};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 char_u buf[MAXPATHL];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 unsigned int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 for (i = 0; i < G_N_ELEMENTS(suffixes); ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 if (gui_find_bitmap(dest, buf, (char *)suffixes[i]) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 STRCPY(dest, buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 static GtkWidget *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 load_menu_iconfile(char_u *name, GtkIconSize icon_size)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 GtkWidget *image = NULL;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
298 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
299 int pixel_size = -1;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
300
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
301 switch (icon_size)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
302 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
303 case GTK_ICON_SIZE_MENU:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
304 pixel_size = 16;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
305 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
306 case GTK_ICON_SIZE_SMALL_TOOLBAR:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
307 pixel_size = 16;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
308 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
309 case GTK_ICON_SIZE_LARGE_TOOLBAR:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
310 pixel_size = 24;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
311 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
312 case GTK_ICON_SIZE_BUTTON:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
313 pixel_size = 16;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
314 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
315 case GTK_ICON_SIZE_DND:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
316 pixel_size = 32;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
317 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
318 case GTK_ICON_SIZE_DIALOG:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
319 pixel_size = 48;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
320 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
321 case GTK_ICON_SIZE_INVALID:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
322 /* FALLTHROUGH */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
323 default:
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
324 pixel_size = 0;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
325 break;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
326 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
327
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
328 if (pixel_size > 0 || pixel_size == -1)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
329 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
330 GdkPixbuf * const pixbuf
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
331 = gdk_pixbuf_new_from_file_at_scale((const char *)name,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
332 pixel_size, pixel_size, TRUE, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
333 if (pixbuf != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
334 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
335 image = gtk_image_new_from_pixbuf(pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
336 g_object_unref(pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
337 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
338 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
339 if (image == NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
340 image = gtk_image_new_from_icon_name("image-missing", icon_size);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
341
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
342 return image;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
343 # else /* !GTK_CHECK_VERSION(3,10,0) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 GtkIconSet *icon_set;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 GtkIconSource *icon_source;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 * Rather than loading the icon directly into a GtkImage, create
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 * a new GtkIconSet and put it in there. This way we can easily
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 * scale the toolbar icons on the fly when needed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 icon_set = gtk_icon_set_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 icon_source = gtk_icon_source_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 gtk_icon_source_set_filename(icon_source, (const char *)name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 gtk_icon_set_add_source(icon_set, icon_source);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 image = gtk_image_new_from_icon_set(icon_set, icon_size);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 gtk_icon_source_free(icon_source);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 gtk_icon_set_unref(icon_set);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 return image;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
364 # endif /* !GTK_CHECK_VERSION(3,10,0) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 static GtkWidget *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 create_menu_icon(vimmenu_T *menu, GtkIconSize icon_size)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 GtkWidget *image = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 char_u buf[MAXPATHL];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 /* First use a specified "icon=" argument. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 if (menu->iconfile != NULL && lookup_menu_iconfile(menu->iconfile, buf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 image = load_menu_iconfile(buf, icon_size);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 /* If not found and not builtin specified try using the menu name. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 if (image == NULL && !menu->icon_builtin
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 && lookup_menu_iconfile(menu->name, buf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 image = load_menu_iconfile(buf, icon_size);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 /* Still not found? Then use a builtin icon, a blank one as fallback. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 if (image == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
385 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
386 const char *icon_name = NULL;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
387 const int n_names = G_N_ELEMENTS(menu_themed_names);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
388
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
389 if (menu->iconidx >= 0 && menu->iconidx < n_names)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
390 icon_name = menu_themed_names[menu->iconidx];
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
391 if (icon_name == NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
392 icon_name = "image-missing";
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
393
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
394 image = gtk_image_new_from_icon_name(icon_name, icon_size);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
395 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396 const char *stock_id;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 const int n_ids = G_N_ELEMENTS(menu_stock_ids);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 if (menu->iconidx >= 0 && menu->iconidx < n_ids)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 stock_id = menu_stock_ids[menu->iconidx];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 stock_id = GTK_STOCK_MISSING_IMAGE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 image = gtk_image_new_from_stock(stock_id, icon_size);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
405 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 return image;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
411 static gint
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
412 toolbar_button_focus_in_event(GtkWidget *widget UNUSED,
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
413 GdkEventFocus *event UNUSED,
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
414 gpointer data UNUSED)
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
415 {
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
416 /* When we're in a GtkPlug, we don't have window focus events, only widget
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
417 * focus. To emulate stand-alone gvim, if a button gets focus (e.g.,
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
418 * <Tab> into GtkPlug) immediately pass it to mainwin. */
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
419 if (gtk_socket_id != 0)
856
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
420 gtk_widget_grab_focus(gui.drawarea);
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
421
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
422 return TRUE;
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
423 }
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
424 #endif /* FEAT_TOOLBAR */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
426 #if defined(FEAT_TOOLBAR) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 gui_gtk_register_stock_icons(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
431 # ifndef USE_GRESOURCE
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
432 # include "../pixmaps/stock_icons.h"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433 GtkIconFactory *factory;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 factory = gtk_icon_factory_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
436 # define ADD_ICON(Name, Data) add_stock_icon(factory, Name, Data, (int)sizeof(Data))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 ADD_ICON("vim-build-tags", stock_vim_build_tags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 ADD_ICON("vim-find-help", stock_vim_find_help);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 ADD_ICON("vim-save-all", stock_vim_save_all);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 ADD_ICON("vim-session-load", stock_vim_session_load);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 ADD_ICON("vim-session-new", stock_vim_session_new);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 ADD_ICON("vim-session-save", stock_vim_session_save);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 ADD_ICON("vim-shell", stock_vim_shell);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 ADD_ICON("vim-window-maximize", stock_vim_window_maximize);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 ADD_ICON("vim-window-maximize-width", stock_vim_window_maximize_width);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 ADD_ICON("vim-window-minimize", stock_vim_window_minimize);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 ADD_ICON("vim-window-minimize-width", stock_vim_window_minimize_width);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 ADD_ICON("vim-window-split", stock_vim_window_split);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 ADD_ICON("vim-window-split-vertical", stock_vim_window_split_vertical);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
452 # undef ADD_ICON
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
453
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
454 gtk_icon_factory_add_default(factory);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
455 g_object_unref(factory);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
456 # else /* defined(USE_GRESOURCE) */
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
457 const char * const path_prefix = "/org/vim/gui/icon";
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
458 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
459 GdkScreen *screen = NULL;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
460 GtkIconTheme *icon_theme = NULL;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
461
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
462 if (GTK_IS_WIDGET(gui.mainwin))
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
463 screen = gtk_widget_get_screen(gui.mainwin);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
464 else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
465 screen = gdk_screen_get_default();
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
466 icon_theme = gtk_icon_theme_get_for_screen(screen);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
467 gtk_icon_theme_add_resource_path(icon_theme, path_prefix);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
468 # elif GTK_CHECK_VERSION(3,0,0)
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
469 IconNames *names;
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
470
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
471 for (names = stock_vim_icons; names->icon_name != NULL; names++)
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
472 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
473 char path[MAXPATHL];
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
474
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
475 vim_snprintf(path, MAXPATHL, "%s/%s", path_prefix, names->file_name);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
476 GdkPixbuf *pixbuf = NULL;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
477 pixbuf = gdk_pixbuf_new_from_resource(path, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
478 if (pixbuf != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
479 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
480 const gint size = MAX(gdk_pixbuf_get_width(pixbuf),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
481 gdk_pixbuf_get_height(pixbuf));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
482 if (size > 16)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
483 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
484 /* An icon theme is supposed to provide fixed-size
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
485 * image files for each size, e.g., 16, 22, 24, ...
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
486 * Naturally, in contrast to GtkIconSet, GtkIconTheme
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
487 * won't prepare size variants for us out of a single
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
488 * fixed-size image.
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
489 *
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
490 * Currently, Vim provides 24x24 images only while the
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
491 * icon size on the menu and the toolbar is set to 16x16
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
492 * by default.
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
493 *
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
494 * Resize them by ourselves until we have our own fully
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
495 * fledged icon theme. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
496 GdkPixbuf *src = pixbuf;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
497 pixbuf = gdk_pixbuf_scale_simple(src,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
498 16, 16,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
499 GDK_INTERP_BILINEAR);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
500 if (pixbuf == NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
501 pixbuf = src;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
502 else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
503 g_object_unref(src);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
504 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
505 gtk_icon_theme_add_builtin_icon(names->icon_name, size, pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
506 g_object_unref(pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
507 }
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 5092
diff changeset
508 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
509 # else /* !GTK_CHECK_VERSION(3,0.0) */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
510 GtkIconFactory * const factory = gtk_icon_factory_new();
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
511 IconNames *names;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
512
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
513 for (names = stock_vim_icons; names->icon_name != NULL; names++)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
514 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
515 char path[MAXPATHL];
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
516 GdkPixbuf *pixbuf;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
517
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
518 vim_snprintf(path, MAXPATHL, "%s/%s", path_prefix, names->file_name);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
519 pixbuf = gdk_pixbuf_new_from_resource(path, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
520 if (pixbuf != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
521 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
522 GtkIconSet *icon_set = gtk_icon_set_new_from_pixbuf(pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
523 gtk_icon_factory_add(factory, names->icon_name, icon_set);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
524 gtk_icon_set_unref(icon_set);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
525 g_object_unref(pixbuf);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
526 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
527 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
528
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 gtk_icon_factory_add_default(factory);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 g_object_unref(factory);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
531 # endif /* !GTK_CHECK_VERSION(3,0,0) */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
532 # endif /* defined(USE_GRESOURCE) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
535 #endif /* FEAT_TOOLBAR */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537 #if defined(FEAT_MENU) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 * Translate Vim's mnemonic tagging to GTK+ style and convert to UTF-8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 * if necessary. The caller must vim_free() the returned string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 * Input Output
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 * _ __
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 * && &
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 * & _ stripped if use_mnemonic == FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 * <Tab> end of menu label text
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 static char_u *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 translate_mnemonic_tag(char_u *name, int use_mnemonic)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 char_u *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 char_u *psrc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 char_u *pdest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 int n_underscores = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 name = CONVERT_TO_UTF8(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558 if (name == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 for (psrc = name; *psrc != NUL && *psrc != TAB; ++psrc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 if (*psrc == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 ++n_underscores;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 buf = alloc((unsigned)(psrc - name + n_underscores + 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 if (buf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 pdest = buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 for (psrc = name; *psrc != NUL && *psrc != TAB; ++psrc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 if (*psrc == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 *pdest++ = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 *pdest++ = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576 else if (*psrc != '&')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578 *pdest++ = *psrc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 else if (*(psrc + 1) == '&')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 *pdest++ = *psrc++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 else if (use_mnemonic)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 *pdest++ = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589 *pdest = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 CONVERT_TO_UTF8_FREE(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593 return buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
597 menu_item_new(vimmenu_T *menu, GtkWidget *parent_widget)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599 GtkWidget *box;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 char_u *text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 int use_mnemonic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 /* It would be neat to have image menu items, but that would require major
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 * changes to Vim's menu system. Not to mention that all the translations
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 * had to be updated. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 menu->id = gtk_menu_item_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
607 # if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
608 box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 20);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
609 gtk_box_set_homogeneous(GTK_BOX(box), FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
610 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 box = gtk_hbox_new(FALSE, 20);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
612 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 use_mnemonic = (p_wak[0] != 'n' || !GTK_IS_MENU_BAR(parent_widget));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 text = translate_mnemonic_tag(menu->name, use_mnemonic);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 menu->label = gtk_label_new_with_mnemonic((const char *)text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 vim_free(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 gtk_box_pack_start(GTK_BOX(box), menu->label, FALSE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 if (menu->actext != NULL && menu->actext[0] != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 text = CONVERT_TO_UTF8(menu->actext);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 gtk_box_pack_end(GTK_BOX(box),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 gtk_label_new((const char *)text),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 FALSE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 CONVERT_TO_UTF8_FREE(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
631 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 gtk_container_add(GTK_CONTAINER(menu->id), box);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
634 gtk_widget_show_all(menu->id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 gui_mch_add_menu(vimmenu_T *menu, int idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 vimmenu_T *parent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 GtkWidget *parent_widget;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 if (menu->name[0] == ']' || menu_is_popup(menu->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 menu->submenu_id = gtk_menu_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 parent = menu->parent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 if ((parent != NULL && parent->submenu_id == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 || !menu_is_menubar(menu->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 parent_widget = (parent != NULL) ? parent->submenu_id : gui.menubar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 menu_item_new(menu, parent_widget);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 /* since the tearoff should always appear first, increment idx */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 if (parent != NULL && !menu_is_popup(parent->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 ++idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 gtk_menu_shell_insert(GTK_MENU_SHELL(parent_widget), menu->id, idx);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 menu->submenu_id = gtk_menu_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 gtk_menu_set_accel_group(GTK_MENU(menu->submenu_id), gui.accel_group);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu->id), menu->submenu_id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
669 # if !GTK_CHECK_VERSION(3,4,0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 menu->tearoff_handle = gtk_tearoff_menu_item_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 if (vim_strchr(p_go, GO_TEAROFF) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 gtk_widget_show(menu->tearoff_handle);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
673 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
674 gtk_menu_shell_prepend(GTK_MENU_SHELL(menu->submenu_id),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
675 menu->tearoff_handle);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
676 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 gtk_menu_prepend(GTK_MENU(menu->submenu_id), menu->tearoff_handle);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
678 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
679 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
683 menu_item_activate(GtkWidget *widget UNUSED, gpointer data)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 gui_menu_cb((vimmenu_T *)data);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 gui_mch_add_menu_item(vimmenu_T *menu, int idx)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 vimmenu_T *parent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 parent = menu->parent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 # ifdef FEAT_TOOLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 if (menu_is_toolbar(parent->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 GtkToolbar *toolbar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 toolbar = GTK_TOOLBAR(gui.toolbar);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 menu->submenu_id = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 if (menu_is_separator(menu->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
705 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
706 GtkToolItem *item = gtk_separator_tool_item_new();
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
707 gtk_separator_tool_item_set_draw(GTK_SEPARATOR_TOOL_ITEM(item),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
708 TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
709 gtk_tool_item_set_expand(GTK_TOOL_ITEM(item), FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
710 gtk_widget_show(GTK_WIDGET(item));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
711
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
712 gtk_toolbar_insert(toolbar, item, idx);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
713 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 gtk_toolbar_insert_space(toolbar, idx);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
715 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 menu->id = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 char_u *text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 char_u *tooltip;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 text = CONVERT_TO_UTF8(menu->dname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 tooltip = CONVERT_TO_UTF8(menu->strings[MENU_INDEX_TIP]);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
725 if (tooltip != NULL && !utf_valid_string(tooltip, NULL))
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
726 /* Invalid text, can happen when 'encoding' is changed. Avoid
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
727 * a nasty GTK error message, skip the tooltip. */
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
728 CONVERT_TO_UTF8_FREE(tooltip);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
730 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
731 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
732 GtkWidget *icon;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
733 GtkToolItem *item;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
734
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
735 icon = create_menu_icon(menu,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
736 gtk_toolbar_get_icon_size(toolbar));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
737 item = gtk_tool_button_new(icon, (const gchar *)text);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
738 gtk_tool_item_set_tooltip_text(item, (const gchar *)tooltip);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
739 g_signal_connect(G_OBJECT(item), "clicked",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
740 G_CALLBACK(&menu_item_activate), menu);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
741 gtk_widget_show_all(GTK_WIDGET(item));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
742
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
743 gtk_toolbar_insert(toolbar, item, idx);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
744
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
745 menu->id = GTK_WIDGET(item);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
746 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
747 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
748 menu->id = gtk_toolbar_insert_item(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
749 toolbar,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 (const char *)text,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 (const char *)tooltip,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
753 create_menu_icon(menu, gtk_toolbar_get_icon_size(toolbar)),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 G_CALLBACK(&menu_item_activate),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
755 menu,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 idx);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
757 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758
856
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
759 if (gtk_socket_id != 0)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
760 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
761 g_signal_connect(G_OBJECT(menu->id), "focus-in-event",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
762 G_CALLBACK(toolbar_button_focus_in_event), NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
763 # else
856
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
764 gtk_signal_connect(GTK_OBJECT(menu->id), "focus_in_event",
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
765 GTK_SIGNAL_FUNC(toolbar_button_focus_in_event), NULL);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
766 # endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 419
diff changeset
767
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 CONVERT_TO_UTF8_FREE(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 CONVERT_TO_UTF8_FREE(tooltip);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 # endif /* FEAT_TOOLBAR */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 /* No parent, must be a non-menubar menu */
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 836
diff changeset
776 if (parent == NULL || parent->submenu_id == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
777 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
779 /* Make place for the possible tearoff handle item. Not in the popup
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
780 * menu, it doesn't have a tearoff item. */
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 836
diff changeset
781 if (!menu_is_popup(parent->name))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
782 ++idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
783
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 if (menu_is_separator(menu->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786 /* Separator: Just add it */
9035
08854bb267b2 commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
787 # if GTK_CHECK_VERSION(3,0,0)
08854bb267b2 commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
788 menu->id = gtk_separator_menu_item_new();
08854bb267b2 commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
789 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
790 menu->id = gtk_menu_item_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
791 gtk_widget_set_sensitive(menu->id, FALSE);
9035
08854bb267b2 commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
792 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 gtk_widget_show(menu->id);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
794 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
795 gtk_menu_shell_insert(GTK_MENU_SHELL(parent->submenu_id),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
796 menu->id, idx);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
797 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 gtk_menu_insert(GTK_MENU(parent->submenu_id), menu->id, idx);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
799 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 /* Add textual menu item. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 menu_item_new(menu, parent->submenu_id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806 gtk_widget_show(menu->id);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
807 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
808 gtk_menu_shell_insert(GTK_MENU_SHELL(parent->submenu_id),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
809 menu->id, idx);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
810 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 gtk_menu_insert(GTK_MENU(parent->submenu_id), menu->id, idx);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
812 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 if (menu->id != NULL)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
815 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
816 g_signal_connect(G_OBJECT(menu->id), "activate",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
817 G_CALLBACK(menu_item_activate), menu);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
818 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 gtk_signal_connect(GTK_OBJECT(menu->id), "activate",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 GTK_SIGNAL_FUNC(menu_item_activate), menu);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
821 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 #endif /* FEAT_MENU */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 gui_mch_set_text_area_pos(int x, int y, int w, int h)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 gtk_form_move_resize(GTK_FORM(gui.formwin), gui.drawarea, x, y, w, h);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 #if defined(FEAT_MENU) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 /*
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1025
diff changeset
836 * Enable or disable accelerators for the toplevel menus.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 gui_gtk_set_mnemonics(int enable)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 vimmenu_T *menu;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 char_u *name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 for (menu = root_menu; menu != NULL; menu = menu->next)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 if (menu->id == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
848
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 name = translate_mnemonic_tag(menu->name, enable);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 gtk_label_set_text_with_mnemonic(GTK_LABEL(menu->label),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851 (const char *)name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 vim_free(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
856 # if !GTK_CHECK_VERSION(3,4,0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
857 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
858 recurse_tearoffs(vimmenu_T *menu, int val)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
859 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
860 for (; menu != NULL; menu = menu->next)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
861 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 if (menu->submenu_id != NULL && menu->tearoff_handle != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 && menu->name[0] != ']' && !menu_is_popup(menu->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
864 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
865 if (val)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866 gtk_widget_show(menu->tearoff_handle);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 gtk_widget_hide(menu->tearoff_handle);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 recurse_tearoffs(menu->children, val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
873 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
874
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
875 # if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
876 void
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
877 gui_mch_toggle_tearoffs(int enable UNUSED)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
878 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
879 /* Do nothing */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
880 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
881 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 gui_mch_toggle_tearoffs(int enable)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 recurse_tearoffs(root_menu, enable);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
886 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
887 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
888 #endif /* FEAT_MENU */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
890 #if defined(FEAT_TOOLBAR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
891 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
892 get_menu_position(vimmenu_T *menu)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
893 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894 vimmenu_T *node;
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
895 int idx = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 for (node = menu->parent->children; node != menu; node = node->next)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 g_return_val_if_fail(node != NULL, -1);
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
900 ++idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
903 return idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 }
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
905 #endif /* FEAT_TOOLBAR */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
907
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 #if defined(FEAT_TOOLBAR) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 gui_mch_menu_set_tip(vimmenu_T *menu)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 if (menu->id != NULL && menu->parent != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 && gui.toolbar != NULL && menu_is_toolbar(menu->parent->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
915 char_u *tooltip;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917 tooltip = CONVERT_TO_UTF8(menu->strings[MENU_INDEX_TIP]);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
918 if (tooltip != NULL && utf_valid_string(tooltip, NULL))
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
919 # if GTK_CHECK_VERSION(3,0,0)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
920 /* Only set the tooltip when it's valid utf-8. */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
921 gtk_widget_set_tooltip_text(menu->id, (const gchar *)tooltip);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
922 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
923 /* Only set the tooltip when it's valid utf-8. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
924 gtk_tooltips_set_tip(GTK_TOOLBAR(gui.toolbar)->tooltips,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
925 menu->id, (const char *)tooltip, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
926 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 CONVERT_TO_UTF8_FREE(tooltip);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 #endif /* FEAT_TOOLBAR */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
933 #if defined(FEAT_MENU) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
935 * Destroy the machine specific menu widget.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938 gui_mch_destroy_menu(vimmenu_T *menu)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 {
5092
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
940 /* Don't let gtk_container_remove automatically destroy menu->id. */
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
941 if (menu->id != NULL)
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
942 g_object_ref(menu->id);
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
943
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
944 /* Workaround for a spurious gtk warning in Ubuntu: "Trying to remove
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
945 * a child that doesn't believe we're it's parent."
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
946 * Remove widget from gui.menubar before destroying it. */
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
947 if (menu->id != NULL && gui.menubar != NULL
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
948 && gtk_widget_get_parent(menu->id) == gui.menubar)
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
949 gtk_container_remove(GTK_CONTAINER(gui.menubar), menu->id);
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
950
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
951 # ifdef FEAT_TOOLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
952 if (menu->parent != NULL && menu_is_toolbar(menu->parent->name))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954 if (menu_is_separator(menu->name))
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
955 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
956 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
957 GtkToolItem *item = NULL;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
958
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
959 item = gtk_toolbar_get_nth_item(GTK_TOOLBAR(gui.toolbar),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
960 get_menu_position(menu));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
961 if (item != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
962 gtk_container_remove(GTK_CONTAINER(gui.toolbar),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
963 GTK_WIDGET(item));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
964 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
965 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 gtk_toolbar_remove_space(GTK_TOOLBAR(gui.toolbar),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 get_menu_position(menu));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
968 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
969 else if (menu->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970 gtk_widget_destroy(menu->id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 # endif /* FEAT_TOOLBAR */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 if (menu->submenu_id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 gtk_widget_destroy(menu->submenu_id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978 if (menu->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 gtk_widget_destroy(menu->id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
981
5092
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
982 if (menu->id != NULL)
1ed945570d47 updated for version 7.3.1289
Bram Moolenaar <bram@vim.org>
parents: 3871
diff changeset
983 g_object_unref(menu->id);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984 menu->submenu_id = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 menu->id = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
986 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
987 #endif /* FEAT_MENU */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 * Scrollbar stuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
995 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
996 if (sb->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998 GtkAdjustment *adjustment;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 adjustment = gtk_range_get_adjustment(GTK_RANGE(sb->id));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1002 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1003 gtk_adjustment_set_lower(adjustment, 0.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1004 gtk_adjustment_set_value(adjustment, val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1005 gtk_adjustment_set_upper(adjustment, max + 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1006 gtk_adjustment_set_page_size(adjustment, size);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1007 gtk_adjustment_set_page_increment(adjustment,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1008 size < 3L ? 1L : size - 2L);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1009 gtk_adjustment_set_step_increment(adjustment, 1.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1010 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011 adjustment->lower = 0.0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 adjustment->value = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 adjustment->upper = max + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014 adjustment->page_size = size;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1015 adjustment->page_increment = size < 3L ? 1L : size - 2L;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016 adjustment->step_increment = 1.0;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1017 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1019 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1020 g_signal_handler_block(G_OBJECT(adjustment),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1021 (gulong)sb->handler_id);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1022 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1023 g_signal_handler_block(GTK_OBJECT(adjustment),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1024 (gulong)sb->handler_id);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1025 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1026
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1027 #if !GTK_CHECK_VERSION(3,18,0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 gtk_adjustment_changed(adjustment);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1029 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1030
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1031 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1032 g_signal_handler_unblock(G_OBJECT(adjustment),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1033 (gulong)sb->handler_id);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1034 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 g_signal_handler_unblock(GTK_OBJECT(adjustment),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 (gulong)sb->handler_id);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1037 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1041 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042 gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 if (sb->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 gtk_form_move_resize(GTK_FORM(gui.formwin), sb->id, x, y, w, h);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 * Take action upon scrollbar dragging.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1051 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1052 adjustment_value_changed(GtkAdjustment *adjustment, gpointer data)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1054 scrollbar_T *sb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055 long value;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 int dragging = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 #ifdef FEAT_XIM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 /* cancel any preediting */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 if (im_is_preediting())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 xim_reset();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 sb = gui_find_scrollbar((long)data);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1065 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1066 value = gtk_adjustment_get_value(adjustment);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1067 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 value = (long)adjustment->value;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1069 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1070 #if !GTK_CHECK_VERSION(3,0,0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 * The dragging argument must be right for the scrollbar to work with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 * closed folds. This isn't documented, hopefully this will keep on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 * working in later GTK versions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 * FIXME: Well, it doesn't work in GTK2. :)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 * HACK: Get the mouse pointer position, if it appears to be on an arrow
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078 * button set "dragging" to FALSE. This assumes square buttons!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1079 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1080 if (sb != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1081 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 dragging = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 if (sb->wp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 int x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 int y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 GdkModifierType state;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 int width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 int height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 /* vertical scrollbar: need to set "dragging" properly in case
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 * there are closed folds. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 gdk_window_get_pointer(sb->id->window, &x, &y, &state);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 gdk_window_get_size(sb->id->window, &width, &height);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 if (x >= 0 && x < width && y >= 0 && y < height)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 if (y < width)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 /* up arrow: move one (closed fold) line up */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 dragging = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1102 value = sb->wp->w_topline - 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1104 else if (y > height - width)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 /* down arrow: move one (closed fold) line down */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 dragging = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 value = sb->wp->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1113 #endif /* !GTK_CHECK_VERSION(3,0,0) */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114 gui_drag_scrollbar(sb, value, dragging);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 /* SBAR_VERT or SBAR_HORIZ */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1119 gui_mch_create_scrollbar(scrollbar_T *sb, int orient)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121 if (orient == SBAR_HORIZ)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1122 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1123 sb->id = gtk_scrollbar_new(GTK_ORIENTATION_HORIZONTAL, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1124 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125 sb->id = gtk_hscrollbar_new(NULL);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1126 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 else if (orient == SBAR_VERT)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1128 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1129 sb->id = gtk_scrollbar_new(GTK_ORIENTATION_VERTICAL, NULL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1130 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131 sb->id = gtk_vscrollbar_new(NULL);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1132 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1133
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1134 if (sb->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 GtkAdjustment *adjustment;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1138 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1139 gtk_widget_set_can_focus(sb->id, FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1140 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1141 GTK_WIDGET_UNSET_FLAGS(sb->id, GTK_CAN_FOCUS);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1142 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 gtk_form_put(GTK_FORM(gui.formwin), sb->id, 0, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 adjustment = gtk_range_get_adjustment(GTK_RANGE(sb->id));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1147 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1148 sb->handler_id = g_signal_connect(
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1149 G_OBJECT(adjustment), "value-changed",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1150 G_CALLBACK(adjustment_value_changed),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1151 GINT_TO_POINTER(sb->ident));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1152 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 sb->handler_id = gtk_signal_connect(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 GTK_OBJECT(adjustment), "value_changed",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 GTK_SIGNAL_FUNC(adjustment_value_changed),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 GINT_TO_POINTER(sb->ident));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1157 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158 gui_mch_update();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1159 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 #if defined(FEAT_WINDOWS) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1164 gui_mch_destroy_scrollbar(scrollbar_T *sb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1166 if (sb->id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1167 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1168 gtk_widget_destroy(sb->id);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1169 sb->id = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 gui_mch_update();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 #if defined(FEAT_BROWSE) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 * Implementation of the file selector related stuff
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 */
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1179
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1180 #ifndef USE_FILE_CHOOSER
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1182 browse_ok_cb(GtkWidget *widget UNUSED, gpointer cbdata)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 gui_T *vw = (gui_T *)cbdata;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 if (vw->browse_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187 g_free(vw->browse_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 vw->browse_fname = (char_u *)g_strdup(gtk_file_selection_get_filename(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 GTK_FILE_SELECTION(vw->filedlg)));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 gtk_widget_hide(vw->filedlg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1195 browse_cancel_cb(GtkWidget *widget UNUSED, gpointer cbdata)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1196 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 gui_T *vw = (gui_T *)cbdata;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 if (vw->browse_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1200 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 g_free(vw->browse_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 vw->browse_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 gtk_widget_hide(vw->filedlg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 static gboolean
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1208 browse_destroy_cb(GtkWidget *widget UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 if (gui.browse_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 g_free(gui.browse_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 gui.browse_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 gui.filedlg = NULL;
2301
6f63294a1781 Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
1216 gtk_main_quit();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 }
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1219 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 * Put up a file requester.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 * Returns the selected name in allocated memory, or NULL for Cancel.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 * saving, select file to write
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 * title title for the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 * dflt default name
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 * ext not used (extension added)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 * initdir initial directory, NULL for current dir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 * filter not used (file name filter)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 char_u *
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1232 gui_mch_browse(int saving UNUSED,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 char_u *title,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 char_u *dflt,
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1235 char_u *ext UNUSED,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 char_u *initdir,
3664
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1237 char_u *filter)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 {
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1239 #ifdef USE_FILE_CHOOSER
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1240 GtkWidget *fc;
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1241 #endif
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1242 char_u dirbuf[MAXPATHL];
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1243 guint log_handler;
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1244 const gchar *domain = "Gtk";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 title = CONVERT_TO_UTF8(title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247
1003
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1248 /* GTK has a bug, it only works with an absolute path. */
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1249 if (initdir == NULL || *initdir == NUL)
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1250 mch_dirname(dirbuf, MAXPATHL);
1003
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1251 else if (vim_FullName(initdir, dirbuf, MAXPATHL - 2, FALSE) == FAIL)
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1252 dirbuf[0] = NUL;
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1253 /* Always need a trailing slash for a directory. */
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1254 add_pathsep(dirbuf);
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1255
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1256 /* If our pointer is currently hidden, then we should show it. */
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1257 gui_mch_mousehide(FALSE);
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1258
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1259 /* Hack: The GTK file dialog warns when it can't access a new file, this
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1260 * makes it shut up. http://bugzilla.gnome.org/show_bug.cgi?id=664587 */
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1261 log_handler = g_log_set_handler(domain, G_LOG_LEVEL_WARNING,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1262 recent_func_log_func, NULL);
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1263
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1264 #ifdef USE_FILE_CHOOSER
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1265 /* We create the dialog each time, so that the button text can be "Open"
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1266 * or "Save" according to the action. */
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1267 fc = gtk_file_chooser_dialog_new((const gchar *)title,
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1268 GTK_WINDOW(gui.mainwin),
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1269 saving ? GTK_FILE_CHOOSER_ACTION_SAVE
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1270 : GTK_FILE_CHOOSER_ACTION_OPEN,
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1271 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1272 _("_Cancel"), GTK_RESPONSE_CANCEL,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1273 saving ? _("_Save") : _("_Open"), GTK_RESPONSE_ACCEPT,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1274 # else
1025
b6627f01c67d updated for version 7.0-151
vimboss
parents: 1003
diff changeset
1275 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1276 saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1277 # endif
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1278 NULL);
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1279 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1280 (const gchar *)dirbuf);
3664
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1281
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1282 if (filter != NULL && *filter != NUL)
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1283 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1284 int i = 0;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1285 char_u *patt;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1286 char_u *p = filter;
3871
337a4368fd2b updated for version 7.3.692
Bram Moolenaar <bram@vim.org>
parents: 3666
diff changeset
1287 GtkFileFilter *gfilter;
3664
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1288
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1289 gfilter = gtk_file_filter_new();
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1290 patt = alloc(STRLEN(filter));
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1291 while (p != NULL && *p != NUL)
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1292 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1293 if (*p == '\n' || *p == ';' || *p == '\t')
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1294 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1295 STRNCPY(patt, filter, i);
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1296 patt[i] = '\0';
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1297 if (*p == '\t')
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1298 gtk_file_filter_set_name(gfilter, (gchar *)patt);
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1299 else
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1300 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1301 gtk_file_filter_add_pattern(gfilter, (gchar *)patt);
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1302 if (*p == '\n')
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1303 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1304 gtk_file_chooser_add_filter((GtkFileChooser *)fc,
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1305 gfilter);
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1306 if (*(p + 1) != NUL)
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1307 gfilter = gtk_file_filter_new();
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1308 }
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1309 }
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1310 filter = ++p;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1311 i = 0;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1312 }
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1313 else
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1314 {
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1315 p++;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1316 i++;
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1317 }
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1318 }
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1319 vim_free(patt);
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1320 }
2301
6f63294a1781 Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
1321 if (saving && dflt != NULL && *dflt != NUL)
6f63294a1781 Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
1322 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(fc), (char *)dflt);
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1323
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1324 gui.browse_fname = NULL;
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1325 if (gtk_dialog_run(GTK_DIALOG(fc)) == GTK_RESPONSE_ACCEPT)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 {
856
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
1327 char *filename;
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
1328
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
1329 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fc));
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
1330 gui.browse_fname = (char_u *)g_strdup(filename);
8cd729851562 updated for version 7.0g
vimboss
parents: 840
diff changeset
1331 g_free(filename);
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1332 }
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1333 gtk_widget_destroy(GTK_WIDGET(fc));
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1334
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1335 #else /* !USE_FILE_CHOOSER */
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1336
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1337 if (gui.filedlg == NULL)
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1338 {
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1339 GtkFileSelection *fs; /* shortcut */
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1340
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 gui.filedlg = gtk_file_selection_new((const gchar *)title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342 gtk_window_set_modal(GTK_WINDOW(gui.filedlg), TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1343 gtk_window_set_transient_for(GTK_WINDOW(gui.filedlg),
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1344 GTK_WINDOW(gui.mainwin));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1345 fs = GTK_FILE_SELECTION(gui.filedlg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1346
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1347 gtk_container_border_width(GTK_CONTAINER(fs), 4);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1348
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1349 gtk_signal_connect(GTK_OBJECT(fs->ok_button),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1350 "clicked", GTK_SIGNAL_FUNC(browse_ok_cb), &gui);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351 gtk_signal_connect(GTK_OBJECT(fs->cancel_button),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 "clicked", GTK_SIGNAL_FUNC(browse_cancel_cb), &gui);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 /* gtk_signal_connect() doesn't work for destroy, it causes a hang */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1354 gtk_signal_connect_object(GTK_OBJECT(gui.filedlg),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1355 "destroy", GTK_SIGNAL_FUNC(browse_destroy_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1356 GTK_OBJECT(gui.filedlg));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1358 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 gtk_window_set_title(GTK_WINDOW(gui.filedlg), (const gchar *)title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360
1003
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1361 /* Concatenate "initdir" and "dflt". */
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1362 if (dflt != NULL && *dflt != NUL
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1363 && STRLEN(dirbuf) + 2 + STRLEN(dflt) < MAXPATHL)
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1364 STRCAT(dirbuf, dflt);
a1c1f001b99d updated for version 7.0-129
vimboss
parents: 944
diff changeset
1365
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366 gtk_file_selection_set_filename(GTK_FILE_SELECTION(gui.filedlg),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1367 (const gchar *)dirbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1368
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1369 gtk_widget_show(gui.filedlg);
2301
6f63294a1781 Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
1370 gtk_main();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1371 #endif /* !USE_FILE_CHOOSER */
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
1372 g_log_remove_handler(domain, log_handler);
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1373
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1374 CONVERT_TO_UTF8_FREE(title);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1375 if (gui.browse_fname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1376 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1377
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1378 /* shorten the file name if possible */
1411
0e6b369b9760 updated for version 7.1-126
vimboss
parents: 1355
diff changeset
1379 return vim_strsave(shorten_fname1(gui.browse_fname));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1382 /*
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1383 * Put up a directory selector
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1384 * Returns the selected name in allocated memory, or NULL for Cancel.
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1385 * title title for the window
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1386 * dflt default name
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1387 * initdir initial directory, NULL for current dir
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1388 */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1389 char_u *
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1390 gui_mch_browsedir(
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1391 char_u *title,
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1392 char_u *initdir)
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1393 {
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1394 # if defined(GTK_FILE_CHOOSER) /* Only in GTK 2.4 and later. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1395 char_u dirbuf[MAXPATHL];
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1396 char_u *p;
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1397 GtkWidget *dirdlg; /* file selection dialog */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1398 char_u *dirname = NULL;
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1399
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1400 title = CONVERT_TO_UTF8(title);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1401
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1402 dirdlg = gtk_file_chooser_dialog_new(
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1403 (const gchar *)title,
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1404 GTK_WINDOW(gui.mainwin),
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1405 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1406 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1407 _("_Cancel"), GTK_RESPONSE_CANCEL,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1408 _("_OK"), GTK_RESPONSE_ACCEPT,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1409 # else
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1410 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1411 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1412 # endif
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1413 NULL);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1414
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1415 CONVERT_TO_UTF8_FREE(title);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1416
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1417 /* if our pointer is currently hidden, then we should show it. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1418 gui_mch_mousehide(FALSE);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1419
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1420 /* GTK appears to insist on an absolute path. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1421 if (initdir == NULL || *initdir == NUL
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1422 || vim_FullName(initdir, dirbuf, MAXPATHL - 10, FALSE) == FAIL)
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1423 mch_dirname(dirbuf, MAXPATHL - 10);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1424
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1425 /* Always need a trailing slash for a directory.
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1426 * Also add a dummy file name, so that we get to the directory. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1427 add_pathsep(dirbuf);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1428 STRCAT(dirbuf, "@zd(*&1|");
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1429 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dirdlg),
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1430 (const gchar *)dirbuf);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1431
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1432 /* Run the dialog. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1433 if (gtk_dialog_run(GTK_DIALOG(dirdlg)) == GTK_RESPONSE_ACCEPT)
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1434 dirname = (char_u *)gtk_file_chooser_get_filename(
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1435 GTK_FILE_CHOOSER(dirdlg));
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1436 gtk_widget_destroy(dirdlg);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1437 if (dirname == NULL)
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1438 return NULL;
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1439
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1440 /* shorten the file name if possible */
1411
0e6b369b9760 updated for version 7.1-126
vimboss
parents: 1355
diff changeset
1441 p = vim_strsave(shorten_fname1(dirname));
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1442 g_free(dirname);
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1443 return p;
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1444
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1445 # else /* !defined(GTK_FILE_CHOOSER) */
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1446 /* For GTK 2.2 and earlier: fall back to ordinary file selector. */
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1447 return gui_mch_browse(0, title, NULL, NULL, initdir, NULL);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1448 # endif /* !defined(GTK_FILE_CHOOSER) */
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1449 }
ac33b7c03fac updated for version 7.0018
vimboss
parents: 26
diff changeset
1450
270
a20218704019 updated for version 7.0072
vimboss
parents: 133
diff changeset
1451
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 #endif /* FEAT_BROWSE */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
1454 #if defined(FEAT_GUI_DIALOG) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 static GtkWidget *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 create_message_dialog(int type, char_u *title, char_u *message)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 GtkWidget *dialog;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 GtkMessageType message_type;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 switch (type)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 case VIM_ERROR: message_type = GTK_MESSAGE_ERROR; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 case VIM_WARNING: message_type = GTK_MESSAGE_WARNING; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 case VIM_QUESTION: message_type = GTK_MESSAGE_QUESTION; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1467 default: message_type = GTK_MESSAGE_INFO; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1470 message = CONVERT_TO_UTF8(message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 dialog = gtk_message_dialog_new(GTK_WINDOW(gui.mainwin),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 GTK_DIALOG_DESTROY_WITH_PARENT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 message_type,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 GTK_BUTTONS_NONE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475 "%s", (const char *)message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 CONVERT_TO_UTF8_FREE(message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478 if (title != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1480 title = CONVERT_TO_UTF8(title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1481 gtk_window_set_title(GTK_WINDOW(dialog), (const char *)title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1482 CONVERT_TO_UTF8_FREE(title);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1483 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1484 else if (type == VIM_GENERIC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1486 gtk_window_set_title(GTK_WINDOW(dialog), "VIM");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489 return dialog;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 * Split up button_string into individual button labels by inserting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494 * NUL bytes. Also replace the Vim-style mnemonic accelerator prefix
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495 * '&' with '_'. button_string must point to allocated memory!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 * Return an allocated array of pointers into button_string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 static char **
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499 split_button_string(char_u *button_string, int *n_buttons)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1500 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1501 char **array;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1502 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1503 unsigned int count = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505 for (p = button_string; *p != NUL; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 if (*p == DLG_BUTTON_SEP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 ++count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 array = (char **)alloc((count + 1) * sizeof(char *));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 if (array != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 array[count++] = (char *)button_string;
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1515 for (p = button_string; *p != NUL; )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1517 if (*p == DLG_BUTTON_SEP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1518 {
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1519 *p++ = NUL;
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1520 array[count++] = (char *)p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1521 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 else if (*p == DLG_HOTKEY_CHAR)
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1523 *p++ = '_';
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1524 else
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
1525 mb_ptr_adv(p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1527 array[count] = NULL; /* currently not relied upon, but doesn't hurt */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530 *n_buttons = count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 return array;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 static char **
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1535 split_button_translation(const char *message)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 char **buttons = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 char_u *str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 int n_buttons = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 int n_expected = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 for (str = (char_u *)message; *str != NUL; ++str)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 if (*str == DLG_BUTTON_SEP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544 ++n_expected;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 str = (char_u *)_(message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 if (str != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 if (output_conv.vc_type != CONV_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 str = string_convert(&output_conv, str, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1551 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 str = vim_strsave(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554 if (str != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555 buttons = split_button_string(str, &n_buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 * Uh-oh... this should never ever happen. But we don't wanna crash
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 * if the translation is broken, thus fall back to the untranslated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560 * buttons string in case of emergency.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1562 if (buttons == NULL || n_buttons != n_expected)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 vim_free(buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 vim_free(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566 buttons = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 str = vim_strsave((char_u *)message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1568
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 if (str != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1570 buttons = split_button_string(str, &n_buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1571 if (buttons == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1572 vim_free(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1573 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 return buttons;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1576 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1578 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1579 button_equal(const char *a, const char *b)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1581 while (*a != '\0' && *b != '\0')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1582 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583 if (*a == '_' && *++a == '\0')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1584 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1585 if (*b == '_' && *++b == '\0')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1586 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1587
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1588 if (g_unichar_tolower(g_utf8_get_char(a))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1589 != g_unichar_tolower(g_utf8_get_char(b)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1592 a = g_utf8_next_char(a);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 b = g_utf8_next_char(b);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1596 return (*a == '\0' && *b == '\0');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1597 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 dialog_add_buttons(GtkDialog *dialog, char_u *button_string)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602 char **ok;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1603 char **ync; /* "yes no cancel" */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604 char **buttons;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 int n_buttons = 0;
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
1606 int idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1608 button_string = vim_strsave(button_string); /* must be writable */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1609 if (button_string == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1610 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1611
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1612 /* Check 'v' flag in 'guioptions': vertical button placement. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1613 if (vim_strchr(p_go, GO_VERTICAL) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1614 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1615 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1616 /* Add GTK+ 3 code if necessary. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1617 /* N.B. GTK+ 3 doesn't allow you to access vbox and action_area via
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1618 * the C API. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1619 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1620 GtkWidget *vbutton_box;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1622 vbutton_box = gtk_vbutton_box_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1623 gtk_widget_show(vbutton_box);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1624 gtk_box_pack_end(GTK_BOX(GTK_DIALOG(dialog)->vbox),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625 vbutton_box, TRUE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1626 /* Overrule the "action_area" value, hopefully this works... */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 GTK_DIALOG(dialog)->action_area = vbutton_box;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1628 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1629 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1630
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1631 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 * Yes this is ugly, I don't particularly like it either. But doing it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1633 * this way has the compelling advantage that translations need not to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1634 * be touched at all. See below what 'ok' and 'ync' are used for.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1635 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1636 ok = split_button_translation(N_("&Ok"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1637 ync = split_button_translation(N_("&Yes\n&No\n&Cancel"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1638 buttons = split_button_string(button_string, &n_buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1639
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1640 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1641 * Yes, the buttons are in reversed order to match the GNOME 2 desktop
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1642 * environment. Don't hit me -- it's all about consistency.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1643 * Well, apparently somebody changed his mind: with GTK 2.2.4 it works the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1644 * other way around...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1645 */
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
1646 for (idx = 1; idx <= n_buttons; ++idx)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1647 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1648 char *label;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1649 char_u *label8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1650
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
1651 label = buttons[idx - 1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1652 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1653 * Perform some guesswork to find appropriate stock items for the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1654 * buttons. We have to compare with a sample of the translated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1655 * button string to get things right. Yes, this is hackish :/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1656 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1657 * But even the common button labels aren't necessarily translated,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1658 * since anyone can create their own dialogs using Vim functions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1659 * Thus we have to check for those too.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1660 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1661 if (ok != NULL && ync != NULL) /* almost impossible to fail */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1662 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1663 # if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1664 if (button_equal(label, ok[0])) label = _("OK");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1665 else if (button_equal(label, ync[0])) label = _("Yes");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1666 else if (button_equal(label, ync[1])) label = _("No");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1667 else if (button_equal(label, ync[2])) label = _("Cancel");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1668 else if (button_equal(label, "Ok")) label = _("OK");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1669 else if (button_equal(label, "Yes")) label = _("Yes");
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1670 else if (button_equal(label, "No")) label = _("No");
8279
738c2929d6ad commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents: 8218
diff changeset
1671 else if (button_equal(label, "Cancel")) label = _("Cancel");
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1672 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1673 if (button_equal(label, ok[0])) label = GTK_STOCK_OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674 else if (button_equal(label, ync[0])) label = GTK_STOCK_YES;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1675 else if (button_equal(label, ync[1])) label = GTK_STOCK_NO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1676 else if (button_equal(label, ync[2])) label = GTK_STOCK_CANCEL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1677 else if (button_equal(label, "Ok")) label = GTK_STOCK_OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 else if (button_equal(label, "Yes")) label = GTK_STOCK_YES;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1679 else if (button_equal(label, "No")) label = GTK_STOCK_NO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680 else if (button_equal(label, "Cancel")) label = GTK_STOCK_CANCEL;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1681 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1682 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683 label8 = CONVERT_TO_UTF8((char_u *)label);
944
b2dcb8457067 updated for version 7.0-070
vimboss
parents: 867
diff changeset
1684 gtk_dialog_add_button(dialog, (const gchar *)label8, idx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1685 CONVERT_TO_UTF8_FREE(label8);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1686 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688 if (ok != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1689 vim_free(*ok);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1690 if (ync != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1691 vim_free(*ync);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1692 vim_free(ok);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1693 vim_free(ync);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 vim_free(buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695 vim_free(button_string);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1696 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1697
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1698 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1699 * Allow mnemonic accelerators to be activated without pressing <Alt>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1700 * I'm not sure if it's a wise idea to do this. However, the old GTK+ 1.2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1701 * GUI used to work this way, and I consider the impact on UI consistency
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702 * low enough to justify implementing this as a special Vim feature.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 typedef struct _DialogInfo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1705 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 int ignore_enter; /* no default button, ignore "Enter" */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 int noalt; /* accept accelerators without Alt */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 GtkDialog *dialog; /* Widget of the dialog */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 } DialogInfo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1711 static gboolean
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1712 dialog_key_press_event_cb(GtkWidget *widget, GdkEventKey *event, gpointer data)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1713 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 DialogInfo *di = (DialogInfo *)data;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1715
1355
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1716 /* Ignore hitting Enter (or Space) when there is no default button. */
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1717 if (di->ignore_enter && (event->keyval == GDK_Return
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1718 || event->keyval == ' '))
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1719 return TRUE;
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1720 else /* A different key was pressed, return to normal behavior */
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1721 di->ignore_enter = FALSE;
888c0645d64f updated for version 7.1-069
vimboss
parents: 1286
diff changeset
1722
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 /* Close the dialog when hitting "Esc". */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724 if (event->keyval == GDK_Escape)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1725 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1726 gtk_dialog_response(di->dialog, GTK_RESPONSE_REJECT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730 if (di->noalt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 && (event->state & gtk_accelerator_get_default_mod_mask()) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1733 return gtk_window_mnemonic_activate(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1734 GTK_WINDOW(widget), event->keyval,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1735 gtk_window_get_mnemonic_modifier(GTK_WINDOW(widget)));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1736 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 return FALSE; /* continue emission */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1741 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1742 gui_mch_dialog(int type, /* type of dialog */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1743 char_u *title, /* title of dialog */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1744 char_u *message, /* message text */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1745 char_u *buttons, /* names of buttons */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1746 int def_but, /* default button */
2684
951641b8784d updated for version 7.3.102
Bram Moolenaar <bram@vim.org>
parents: 2656
diff changeset
1747 char_u *textfield, /* text for textfield or NULL */
951641b8784d updated for version 7.3.102
Bram Moolenaar <bram@vim.org>
parents: 2656
diff changeset
1748 int ex_cmd UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1749 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1750 GtkWidget *dialog;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1751 GtkWidget *entry = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1752 char_u *text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1753 int response;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1754 DialogInfo dialoginfo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1755
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1756 dialog = create_message_dialog(type, title, message);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1757 dialoginfo.dialog = GTK_DIALOG(dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 dialog_add_buttons(GTK_DIALOG(dialog), buttons);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 if (textfield != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1762 GtkWidget *alignment;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1763
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1764 entry = gtk_entry_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1765 gtk_widget_show(entry);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766
2649
b2789846ed39 updated for version 7.3.069
Bram Moolenaar <bram@vim.org>
parents: 2301
diff changeset
1767 /* Make Enter work like pressing OK. */
3664
0e06193d4bd7 updated for version 7.3.592
Bram Moolenaar <bram@vim.org>
parents: 3564
diff changeset
1768 gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
2649
b2789846ed39 updated for version 7.3.069
Bram Moolenaar <bram@vim.org>
parents: 2301
diff changeset
1769
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 text = CONVERT_TO_UTF8(textfield);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 gtk_entry_set_text(GTK_ENTRY(entry), (const char *)text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 CONVERT_TO_UTF8_FREE(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1774 # if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1775 gtk_widget_set_halign(GTK_WIDGET(entry), GTK_ALIGN_CENTER);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1776 gtk_widget_set_valign(GTK_WIDGET(entry), GTK_ALIGN_CENTER);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1777 gtk_widget_set_hexpand(GTK_WIDGET(entry), TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1778 gtk_widget_set_vexpand(GTK_WIDGET(entry), TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1779
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1780 alignment = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1781 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 alignment = gtk_alignment_new((float)0.5, (float)0.5,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 (float)1.0, (float)1.0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1784 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 gtk_container_add(GTK_CONTAINER(alignment), entry);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786 gtk_container_set_border_width(GTK_CONTAINER(alignment), 5);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 gtk_widget_show(alignment);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1789 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1790 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1791 GtkWidget * const vbox
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1792 = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1793 gtk_box_pack_start(GTK_BOX(vbox),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1794 alignment, TRUE, FALSE, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1795 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1796 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798 alignment, TRUE, FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1799 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1800 dialoginfo.noalt = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1801 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1803 dialoginfo.noalt = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805 /* Allow activation of mnemonic accelerators without pressing <Alt> when
864
bc620d6bdf06 updated for version 7.0g03
vimboss
parents: 856
diff changeset
1806 * there is no textfield. Handle pressing Esc. */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1807 g_signal_connect(G_OBJECT(dialog), "key_press_event",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 G_CALLBACK(&dialog_key_press_event_cb), &dialoginfo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1810 if (def_but > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1811 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1812 gtk_dialog_set_default_response(GTK_DIALOG(dialog), def_but);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1813 dialoginfo.ignore_enter = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1814 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1815 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1816 /* No default button, ignore pressing Enter. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1817 dialoginfo.ignore_enter = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1818
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1819 /* Show the mouse pointer if it's currently hidden. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820 gui_mch_mousehide(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822 response = gtk_dialog_run(GTK_DIALOG(dialog));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1823
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1824 /* GTK_RESPONSE_NONE means the dialog was programmatically destroyed. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 if (response != GTK_RESPONSE_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 {
314
529f887b5cb7 updated for version 7.0082
vimboss
parents: 270
diff changeset
1827 if (response == GTK_RESPONSE_ACCEPT) /* Enter pressed */
529f887b5cb7 updated for version 7.0082
vimboss
parents: 270
diff changeset
1828 response = def_but;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1829 if (textfield != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 text = (char_u *)gtk_entry_get_text(GTK_ENTRY(entry));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832 text = CONVERT_FROM_UTF8(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1833
419
f713fc55bf7b updated for version 7.0109
vimboss
parents: 401
diff changeset
1834 vim_strncpy(textfield, text, IOSIZE - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1836 CONVERT_FROM_UTF8_FREE(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1837 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 gtk_widget_destroy(dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1841 return response > 0 ? response : 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1843
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
1844 #endif /* FEAT_GUI_DIALOG */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1845
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1846
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1847 #if defined(FEAT_MENU) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1848
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1849 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1850 gui_mch_show_popupmenu(vimmenu_T *menu)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1851 {
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
1852 # if defined(FEAT_XIM)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1854 * Append a submenu for selecting an input method. This is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1855 * currently the only way to switch input methods at runtime.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856 */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1857 # if !GTK_CHECK_VERSION(3,10,0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858 if (xic != NULL && g_object_get_data(G_OBJECT(menu->submenu_id),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1859 "vim-has-im-menu") == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1860 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1861 GtkWidget *menuitem;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 GtkWidget *submenu;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1863 char_u *name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1864
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865 menuitem = gtk_separator_menu_item_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866 gtk_widget_show(menuitem);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867 gtk_menu_shell_append(GTK_MENU_SHELL(menu->submenu_id), menuitem);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869 name = (char_u *)_("Input _Methods");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 name = CONVERT_TO_UTF8(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 menuitem = gtk_menu_item_new_with_mnemonic((const char *)name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 CONVERT_TO_UTF8_FREE(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873 gtk_widget_show(menuitem);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1874
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 submenu = gtk_menu_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 gtk_menu_shell_append(GTK_MENU_SHELL(menu->submenu_id), menuitem);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879 gtk_im_multicontext_append_menuitems(GTK_IM_MULTICONTEXT(xic),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1880 GTK_MENU_SHELL(submenu));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881 g_object_set_data(G_OBJECT(menu->submenu_id),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1882 "vim-has-im-menu", GINT_TO_POINTER(TRUE));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1883 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1884 # endif
2275
e4d849f4df03 Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents: 2103
diff changeset
1885 # endif /* FEAT_XIM */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1886
10390
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1887 # if GTK_CHECK_VERSION(3,22,2)
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1888 {
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1889 GdkEventButton trigger;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1890
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1891 /* A pseudo event to have gtk_menu_popup_at_pointer() work. Since the
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1892 * function calculates the popup menu position on the basis of the
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1893 * actual pointer position when it is invoked, the fields x, y, x_root
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1894 * and y_root are set to zero for convenience. */
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1895 trigger.type = GDK_BUTTON_PRESS;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1896 trigger.window = gtk_widget_get_window(gui.drawarea);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1897 trigger.send_event = FALSE;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1898 trigger.time = gui.event_time;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1899 trigger.x = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1900 trigger.y = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1901 trigger.axes = NULL;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1902 trigger.state = 0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1903 trigger.button = 3;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1904 trigger.device = NULL;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1905 trigger.x_root = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1906 trigger.y_root = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1907
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1908 gtk_menu_popup_at_pointer(GTK_MENU(menu->submenu_id),
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1909 (GdkEvent *)&trigger);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1910 }
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1911 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1912 gtk_menu_popup(GTK_MENU(menu->submenu_id),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913 NULL, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1914 (GtkMenuPositionFunc)NULL, NULL,
2923
7653420fdc45 updated for version 7.3.234
Bram Moolenaar <bram@vim.org>
parents: 2684
diff changeset
1915 3U, gui.event_time);
10390
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1916 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1918
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1919 /* Ugly global variable to pass "mouse_pos" flag from gui_make_popup() to
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1920 * popup_menu_position_func(). */
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1921 static int popup_mouse_pos;
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1922
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1923 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1924 * Menu position callback; used by gui_make_popup() to place the menu
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1925 * at the current text cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1926 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1927 * Note: The push_in output argument seems to affect scrolling of huge
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1928 * menus that don't fit on the screen. Leave it at the default for now.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1929 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1930 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1931 popup_menu_position_func(GtkMenu *menu UNUSED,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1932 gint *x, gint *y,
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1933 gboolean *push_in UNUSED,
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
1934 gpointer user_data UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1935 {
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1936 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1937 gdk_window_get_origin(gtk_widget_get_window(gui.drawarea), x, y);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1938 # else
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1939 gdk_window_get_origin(gui.drawarea->window, x, y);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1940 # endif
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1941
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1942 if (popup_mouse_pos)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1943 {
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1944 int mx, my;
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1945
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1946 gui_mch_getmouse(&mx, &my);
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1947 *x += mx;
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1948 *y += my;
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1949 }
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1950 # if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1951 else if (curwin != NULL && gui.drawarea != NULL &&
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1952 gtk_widget_get_window(gui.drawarea) != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1953 # else
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1954 else if (curwin != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1955 # endif
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1956 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 /* Find the cursor position in the current window */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 *x += FILL_X(W_WINCOL(curwin) + curwin->w_wcol + 1) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 *y += FILL_Y(W_WINROW(curwin) + curwin->w_wrow + 1) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1963 void
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1964 gui_make_popup(char_u *path_name, int mouse_pos)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 vimmenu_T *menu;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1967
401
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1968 popup_mouse_pos = mouse_pos;
4a1ead01d30b updated for version 7.0105
vimboss
parents: 344
diff changeset
1969
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970 menu = gui_find_menu(path_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 if (menu != NULL && menu->submenu_id != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 {
10390
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1974 # if GTK_CHECK_VERSION(3,22,2)
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1975 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1976 GdkEventButton trigger;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1977
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1978 /* A pseudo event to have gtk_menu_popup_at_*() functions work. Since
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1979 * the position where the menu pops up is automatically adjusted by
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1980 * the functions, none of the fields x, y, x_root and y_root has to be
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1981 * set to a specific value here; therefore, they are set to zero for
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1982 * convenience.*/
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1983 trigger.type = GDK_BUTTON_PRESS;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1984 trigger.window = win;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1985 trigger.send_event = FALSE;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1986 trigger.time = GDK_CURRENT_TIME;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1987 trigger.x = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1988 trigger.y = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1989 trigger.axes = NULL;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1990 trigger.state = 0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1991 trigger.button = 0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1992 trigger.device = NULL;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1993 trigger.x_root = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1994 trigger.y_root = 0.0;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1995
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1996 if (mouse_pos)
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1997 gtk_menu_popup_at_pointer(GTK_MENU(menu->submenu_id),
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1998 (GdkEvent *)&trigger);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
1999 else
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2000 {
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2001 gint origin_x, origin_y;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2002 GdkRectangle rect = { 0, 0, 0, 0 };
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2003
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2004 gdk_window_get_origin(win, &origin_x, &origin_y);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2005 popup_menu_position_func(NULL, &rect.x, &rect.y, NULL, NULL);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2006
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2007 rect.x -= origin_x;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2008 rect.y -= origin_y;
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2009
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2010 gtk_menu_popup_at_rect(GTK_MENU(menu->submenu_id),
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2011 win,
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2012 &rect,
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2013 GDK_GRAVITY_SOUTH_EAST,
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2014 GDK_GRAVITY_NORTH_WEST,
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2015 (GdkEvent *)&trigger);
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2016 }
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2017 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2018 gtk_menu_popup(GTK_MENU(menu->submenu_id),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2019 NULL, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 &popup_menu_position_func, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2021 0U, (guint32)GDK_CURRENT_TIME);
10390
6c8a4d21b873 commit https://github.com/vim/vim/commit/a859f04b4db651860c07db3587f29906517c552b
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2022 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 #endif /* FEAT_MENU */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2027
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2030 * We don't create it twice.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2032
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2033 typedef struct _SharedFindReplace
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2034 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2035 GtkWidget *dialog; /* the main dialog widget */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2036 GtkWidget *wword; /* 'Whole word only' check button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2037 GtkWidget *mcase; /* 'Match case' check button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2038 GtkWidget *up; /* search direction 'Up' radio button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2039 GtkWidget *down; /* search direction 'Down' radio button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040 GtkWidget *what; /* 'Find what' entry text widget */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 GtkWidget *with; /* 'Replace with' entry text widget */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 GtkWidget *find; /* 'Find Next' action button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 GtkWidget *replace; /* 'Replace With' action button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2044 GtkWidget *all; /* 'Replace All' action button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 } SharedFindReplace;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2047 static SharedFindReplace find_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2048 static SharedFindReplace repl_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2049
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2050 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2051 find_key_press_event(
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2052 GtkWidget *widget UNUSED,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2053 GdkEventKey *event,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2054 SharedFindReplace *frdp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2056 /* If the user is holding one of the key modifiers we will just bail out,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2057 * thus preserving the possibility of normal focus traversal.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2058 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2059 if (event->state & (GDK_CONTROL_MASK | GDK_SHIFT_MASK))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2060 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2061
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 /* the Escape key synthesizes a cancellation action */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2063 if (event->keyval == GDK_Escape)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2064 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2065 gtk_widget_hide(frdp->dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2066
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2068 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2069
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1025
diff changeset
2070 /* It would be delightful if it where possible to do search history
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2071 * operations on the K_UP and K_DOWN keys here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2072 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2074 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2076
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2077 static GtkWidget *
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2078 #if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2079 create_image_button(const char *stock_id UNUSED,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2080 const char *label)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2081 #else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2082 create_image_button(const char *stock_id,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2083 const char *label)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2084 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2085 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2086 char_u *text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2087 GtkWidget *box;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2088 GtkWidget *alignment;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2089 GtkWidget *button;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2091 text = CONVERT_TO_UTF8((char_u *)label);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2092
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2093 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2094 box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 3);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2095 gtk_box_set_homogeneous(GTK_BOX(box), FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2096 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2097 box = gtk_hbox_new(FALSE, 3);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2098 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2099 #if !GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2100 if (stock_id != NULL)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2101 gtk_box_pack_start(GTK_BOX(box),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2102 gtk_image_new_from_stock(stock_id, GTK_ICON_SIZE_BUTTON),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2103 FALSE, FALSE, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2104 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2105 gtk_box_pack_start(GTK_BOX(box),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106 gtk_label_new((const char *)text),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2107 FALSE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2108
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2109 CONVERT_TO_UTF8_FREE(text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2110
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2111 #if GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2112 gtk_widget_set_halign(GTK_WIDGET(box), GTK_ALIGN_CENTER);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2113 gtk_widget_set_valign(GTK_WIDGET(box), GTK_ALIGN_CENTER);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2114 gtk_widget_set_hexpand(GTK_WIDGET(box), TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2115 gtk_widget_set_vexpand(GTK_WIDGET(box), TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2116
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2117 alignment = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2118 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2119 alignment = gtk_alignment_new((float)0.5, (float)0.5,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2120 (float)0.0, (float)0.0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2121 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2122 gtk_container_add(GTK_CONTAINER(alignment), box);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2123 gtk_widget_show_all(alignment);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2124
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2125 button = gtk_button_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126 gtk_container_add(GTK_CONTAINER(button), alignment);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2127
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 return button;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2129 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2130
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2131 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132 * This is currently only used by find_replace_dialog_create(), and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2133 * I'd really like to keep it at that. In other words: don't spread
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2134 * this nasty hack all over the code. Think twice.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2136 static const char *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2137 convert_localized_message(char_u **buffer, const char *message)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2138 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2139 if (output_conv.vc_type == CONV_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2140 return message;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2141
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2142 vim_free(*buffer);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 *buffer = string_convert(&output_conv, (char_u *)message, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2145 return (const char *)*buffer;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2146 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2148 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 find_replace_dialog_create(char_u *arg, int do_replace)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2151 GtkWidget *hbox; /* main top down box */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2152 GtkWidget *actionarea;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2153 GtkWidget *table;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2154 GtkWidget *tmp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2155 GtkWidget *vbox;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2156 gboolean sensitive;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2157 SharedFindReplace *frdp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 char_u *entry_text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2159 int wword = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2160 int mcase = !p_ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 char_u *conv_buffer = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162 # define CONV(message) convert_localized_message(&conv_buffer, (message))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2163
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 frdp = (do_replace) ? (&repl_widgets) : (&find_widgets);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166 /* Get the search string to use. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 entry_text = get_find_dialog_text(arg, &wword, &mcase);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2168
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2169 if (entry_text != NULL && output_conv.vc_type != CONV_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2170 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171 char_u *old_text = entry_text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2172 entry_text = string_convert(&output_conv, entry_text, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 vim_free(old_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2175
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 * If the dialog already exists, just raise it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 if (frdp->dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181 if (entry_text != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 gtk_entry_set_text(GTK_ENTRY(frdp->what), (char *)entry_text);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2184 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2185 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frdp->wword),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2186 (gboolean)wword);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2187 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frdp->mcase),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2188 (gboolean)mcase);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2189 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2190 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(frdp->wword),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 (gboolean)wword);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(frdp->mcase),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193 (gboolean)mcase);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2194 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196 gtk_window_present(GTK_WINDOW(frdp->dialog));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2197 vim_free(entry_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2199 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 frdp->dialog = gtk_dialog_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2202 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2203 /* Nothing equivalent to gtk_dialog_set_has_separator() in GTK+ 3. */
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2204 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2205 gtk_dialog_set_has_separator(GTK_DIALOG(frdp->dialog), FALSE);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2206 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 gtk_window_set_transient_for(GTK_WINDOW(frdp->dialog), GTK_WINDOW(gui.mainwin));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208 gtk_window_set_destroy_with_parent(GTK_WINDOW(frdp->dialog), TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2209
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 if (do_replace)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 gtk_window_set_title(GTK_WINDOW(frdp->dialog),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2213 CONV(_("VIM - Search and Replace...")));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2216 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217 gtk_window_set_title(GTK_WINDOW(frdp->dialog),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 CONV(_("VIM - Search...")));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2221 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2222 hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2223 gtk_box_set_homogeneous(GTK_BOX(hbox), FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2224 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 hbox = gtk_hbox_new(FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2226 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227 gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2228 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2229 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2230 GtkWidget * const dialog_vbox
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2231 = gtk_dialog_get_content_area(GTK_DIALOG(frdp->dialog));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2232 gtk_container_add(GTK_CONTAINER(dialog_vbox), hbox);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2233 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2234 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(frdp->dialog)->vbox), hbox);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2236 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2237
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 if (do_replace)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2239 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2240 table = gtk_grid_new();
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2241 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 table = gtk_table_new(1024, 4, FALSE);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2243 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 else
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2245 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2246 table = gtk_grid_new();
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2247 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 table = gtk_table_new(1024, 3, FALSE);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2249 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250 gtk_box_pack_start(GTK_BOX(hbox), table, TRUE, TRUE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2251 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2252 gtk_container_set_border_width(GTK_CONTAINER(table), 4);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2253 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 gtk_container_border_width(GTK_CONTAINER(table), 4);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2255 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 tmp = gtk_label_new(CONV(_("Find what:")));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2258 #if GTK_CHECK_VERSION(3,16,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2259 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2260 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2261 #elif GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2262 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2263 GValue align_val = G_VALUE_INIT;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2264
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2265 g_value_init(&align_val, G_TYPE_FLOAT);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2266
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2267 g_value_set_float(&align_val, 0.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2268 g_object_set_property(G_OBJECT(tmp), "xalign", &align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2269
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2270 g_value_set_float(&align_val, 0.5);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2271 g_object_set_property(G_OBJECT(tmp), "yalign", &align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2272
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2273 g_value_unset(&align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2274 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2275 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2276 gtk_misc_set_alignment(GTK_MISC(tmp), (gfloat)0.0, (gfloat)0.5);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2277 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2278 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2279 gtk_grid_attach(GTK_GRID(table), tmp, 0, 0, 2, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2280 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 0, 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2283 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284 frdp->what = gtk_entry_new();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 sensitive = (entry_text != NULL && entry_text[0] != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 if (entry_text != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2287 gtk_entry_set_text(GTK_ENTRY(frdp->what), (char *)entry_text);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2288 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2289 g_signal_connect(G_OBJECT(frdp->what), "changed",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2290 G_CALLBACK(entry_changed_cb), frdp->dialog);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2291 g_signal_connect_after(G_OBJECT(frdp->what), "key-press-event",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2292 G_CALLBACK(find_key_press_event),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2293 (gpointer) frdp);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2294 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2295 gtk_signal_connect(GTK_OBJECT(frdp->what), "changed",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2296 GTK_SIGNAL_FUNC(entry_changed_cb), frdp->dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297 gtk_signal_connect_after(GTK_OBJECT(frdp->what), "key_press_event",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 GTK_SIGNAL_FUNC(find_key_press_event),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2299 (gpointer) frdp);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2300 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2301 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2302 gtk_grid_attach(GTK_GRID(table), frdp->what, 2, 0, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2303 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304 gtk_table_attach(GTK_TABLE(table), frdp->what, 1, 1024, 0, 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305 GTK_EXPAND | GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2306 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2308 if (do_replace)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 tmp = gtk_label_new(CONV(_("Replace with:")));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2311 #if GTK_CHECK_VERSION(3,16,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2312 gtk_label_set_xalign(GTK_LABEL(tmp), 0.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2313 gtk_label_set_yalign(GTK_LABEL(tmp), 0.5);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2314 #elif GTK_CHECK_VERSION(3,14,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2315 {
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2316 GValue align_val = G_VALUE_INIT;
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2317
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2318 g_value_init(&align_val, G_TYPE_FLOAT);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2319
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2320 g_value_set_float(&align_val, 0.0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2321 g_object_set_property(G_OBJECT(tmp), "xalign", &align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2322
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2323 g_value_set_float(&align_val, 0.5);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2324 g_object_set_property(G_OBJECT(tmp), "yalign", &align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2325
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2326 g_value_unset(&align_val);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2327 }
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2328 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329 gtk_misc_set_alignment(GTK_MISC(tmp), (gfloat)0.0, (gfloat)0.5);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2330 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2331 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2332 gtk_grid_attach(GTK_GRID(table), tmp, 0, 1, 2, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2333 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2334 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2336 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337 frdp->with = gtk_entry_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2338 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2339 g_signal_connect(G_OBJECT(frdp->with), "activate",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2340 G_CALLBACK(find_replace_cb),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2341 GINT_TO_POINTER(FRD_R_FINDNEXT));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2342 g_signal_connect_after(G_OBJECT(frdp->with), "key-press-event",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2343 G_CALLBACK(find_key_press_event),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2344 (gpointer) frdp);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2345 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2346 gtk_signal_connect(GTK_OBJECT(frdp->with), "activate",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2347 GTK_SIGNAL_FUNC(find_replace_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2348 GINT_TO_POINTER(FRD_R_FINDNEXT));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2349 gtk_signal_connect_after(GTK_OBJECT(frdp->with), "key_press_event",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2350 GTK_SIGNAL_FUNC(find_key_press_event),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2351 (gpointer) frdp);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2352 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2353 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2354 gtk_grid_attach(GTK_GRID(table), frdp->with, 2, 1, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2355 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 gtk_table_attach(GTK_TABLE(table), frdp->with, 1, 1024, 1, 2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2357 GTK_EXPAND | GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2358 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2359
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2360 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2361 * Make the entry activation only change the input focus onto the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2362 * with item.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2363 */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2364 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2365 g_signal_connect(G_OBJECT(frdp->what), "activate",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2366 G_CALLBACK(entry_activate_cb), frdp->with);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2367 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2368 gtk_signal_connect(GTK_OBJECT(frdp->what), "activate",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2369 GTK_SIGNAL_FUNC(entry_activate_cb), frdp->with);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2370 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2371 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2372 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2373 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2374 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2375 * Make the entry activation do the search.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2376 */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2377 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2378 g_signal_connect(G_OBJECT(frdp->what), "activate",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2379 G_CALLBACK(find_replace_cb),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2380 GINT_TO_POINTER(FRD_FINDNEXT));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2381 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 gtk_signal_connect(GTK_OBJECT(frdp->what), "activate",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 GTK_SIGNAL_FUNC(find_replace_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384 GINT_TO_POINTER(FRD_FINDNEXT));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2385 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 /* whole word only button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 frdp->wword = gtk_check_button_new_with_label(CONV(_("Match whole word only")));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2390 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2391 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frdp->wword),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2392 (gboolean)wword);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2393 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2394 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(frdp->wword),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2395 (gboolean)wword);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2396 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2397 if (do_replace)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2398 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2399 gtk_grid_attach(GTK_GRID(table), frdp->wword, 0, 2, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2400 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2401 gtk_table_attach(GTK_TABLE(table), frdp->wword, 0, 1023, 2, 3,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2402 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2403 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2404 else
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2405 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2406 gtk_grid_attach(GTK_GRID(table), frdp->wword, 0, 3, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2407 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2408 gtk_table_attach(GTK_TABLE(table), frdp->wword, 0, 1023, 1, 2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2409 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2410 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2412 /* match case button */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2413 frdp->mcase = gtk_check_button_new_with_label(CONV(_("Match case")));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2414 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2415 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frdp->mcase),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2416 (gboolean)mcase);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2417 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2418 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(frdp->mcase),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2419 (gboolean)mcase);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2420 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2421 if (do_replace)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2422 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2423 gtk_grid_attach(GTK_GRID(table), frdp->mcase, 0, 3, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2424 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2425 gtk_table_attach(GTK_TABLE(table), frdp->mcase, 0, 1023, 3, 4,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2427 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2428 else
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2429 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2430 gtk_grid_attach(GTK_GRID(table), frdp->mcase, 0, 4, 5, 1);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2431 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 gtk_table_attach(GTK_TABLE(table), frdp->mcase, 0, 1023, 2, 3,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2433 GTK_FILL, GTK_EXPAND, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2434 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2435
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2436 tmp = gtk_frame_new(CONV(_("Direction")));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2437 if (do_replace)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2438 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2439 gtk_grid_attach(GTK_GRID(table), tmp, 5, 2, 2, 4);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2440 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2441 gtk_table_attach(GTK_TABLE(table), tmp, 1023, 1024, 2, 4,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2442 GTK_FILL, GTK_FILL, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2443 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2444 else
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2445 #if GTK_CHECK_VERSION(3,4,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2446 gtk_grid_attach(GTK_GRID(table), tmp, 5, 2, 1, 3);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2447 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2448 gtk_table_attach(GTK_TABLE(table), tmp, 1023, 1024, 1, 3,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 GTK_FILL, GTK_FILL, 2, 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2450 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2451 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2452 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2453 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2454 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 vbox = gtk_vbox_new(FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2456 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2457 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2458 gtk_container_set_border_width(GTK_CONTAINER(vbox), 0);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2459 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460 gtk_container_border_width(GTK_CONTAINER(vbox), 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2461 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2462 gtk_container_add(GTK_CONTAINER(tmp), vbox);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 /* 'Up' and 'Down' buttons */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 frdp->up = gtk_radio_button_new_with_label(NULL, CONV(_("Up")));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466 gtk_box_pack_start(GTK_BOX(vbox), frdp->up, TRUE, TRUE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2467 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2468 frdp->down = gtk_radio_button_new_with_label(
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2469 gtk_radio_button_get_group(GTK_RADIO_BUTTON(frdp->up)),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2470 CONV(_("Down")));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2471 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 frdp->down = gtk_radio_button_new_with_label(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473 gtk_radio_button_group(GTK_RADIO_BUTTON(frdp->up)),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474 CONV(_("Down")));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2475 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2476 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2477 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frdp->down), TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2478 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(frdp->down), TRUE);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2480 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 gtk_container_set_border_width(GTK_CONTAINER(vbox), 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482 gtk_box_pack_start(GTK_BOX(vbox), frdp->down, TRUE, TRUE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2484 /* vbox to hold the action buttons */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2485 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2486 actionarea = gtk_button_box_new(GTK_ORIENTATION_VERTICAL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2487 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2488 actionarea = gtk_vbutton_box_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2489 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2490 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2491 gtk_container_set_border_width(GTK_CONTAINER(actionarea), 2);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2492 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2493 gtk_container_border_width(GTK_CONTAINER(actionarea), 2);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2494 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2495 gtk_box_pack_end(GTK_BOX(hbox), actionarea, FALSE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2496
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2497 /* 'Find Next' button */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2498 #if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2499 frdp->find = create_image_button(NULL, _("Find Next"));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2500 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2501 frdp->find = create_image_button(GTK_STOCK_FIND, _("Find Next"));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2502 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2503 gtk_widget_set_sensitive(frdp->find, sensitive);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2504
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2505 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2506 g_signal_connect(G_OBJECT(frdp->find), "clicked",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2507 G_CALLBACK(find_replace_cb),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2508 (do_replace) ? GINT_TO_POINTER(FRD_R_FINDNEXT)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2509 : GINT_TO_POINTER(FRD_FINDNEXT));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2510 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2511 gtk_signal_connect(GTK_OBJECT(frdp->find), "clicked",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2512 GTK_SIGNAL_FUNC(find_replace_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2513 (do_replace) ? GINT_TO_POINTER(FRD_R_FINDNEXT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2514 : GINT_TO_POINTER(FRD_FINDNEXT));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2515 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2517 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2518 gtk_widget_set_can_default(frdp->find, TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2519 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2520 GTK_WIDGET_SET_FLAGS(frdp->find, GTK_CAN_DEFAULT);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2521 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2522 gtk_box_pack_start(GTK_BOX(actionarea), frdp->find, FALSE, FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523 gtk_widget_grab_default(frdp->find);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2524
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 if (do_replace)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527 /* 'Replace' button */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2528 #if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2529 frdp->replace = create_image_button(NULL, _("Replace"));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2530 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2531 frdp->replace = create_image_button(GTK_STOCK_CONVERT, _("Replace"));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2532 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2533 gtk_widget_set_sensitive(frdp->replace, sensitive);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2534 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2535 gtk_widget_set_can_default(frdp->find, TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2536 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2537 GTK_WIDGET_SET_FLAGS(frdp->replace, GTK_CAN_DEFAULT);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2538 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 gtk_box_pack_start(GTK_BOX(actionarea), frdp->replace, FALSE, FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2540 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2541 g_signal_connect(G_OBJECT(frdp->replace), "clicked",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2542 G_CALLBACK(find_replace_cb),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2543 GINT_TO_POINTER(FRD_REPLACE));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2544 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 gtk_signal_connect(GTK_OBJECT(frdp->replace), "clicked",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 GTK_SIGNAL_FUNC(find_replace_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 GINT_TO_POINTER(FRD_REPLACE));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2548 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 /* 'Replace All' button */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2551 #if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2552 frdp->all = create_image_button(NULL, _("Replace All"));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2553 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 frdp->all = create_image_button(GTK_STOCK_CONVERT, _("Replace All"));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2555 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 gtk_widget_set_sensitive(frdp->all, sensitive);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2557 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2558 gtk_widget_set_can_default(frdp->all, TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2559 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560 GTK_WIDGET_SET_FLAGS(frdp->all, GTK_CAN_DEFAULT);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2561 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562 gtk_box_pack_start(GTK_BOX(actionarea), frdp->all, FALSE, FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2563 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2564 g_signal_connect(G_OBJECT(frdp->all), "clicked",
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2565 G_CALLBACK(find_replace_cb),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2566 GINT_TO_POINTER(FRD_REPLACEALL));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2567 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 gtk_signal_connect(GTK_OBJECT(frdp->all), "clicked",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 GTK_SIGNAL_FUNC(find_replace_cb),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2570 GINT_TO_POINTER(FRD_REPLACEALL));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2571 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 /* 'Cancel' button */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2575 #if GTK_CHECK_VERSION(3,10,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2576 tmp = gtk_button_new_with_mnemonic(_("_Close"));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2577 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2578 tmp = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2579 #endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2580 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2581 gtk_widget_set_can_default(tmp, TRUE);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2582 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 GTK_WIDGET_SET_FLAGS(tmp, GTK_CAN_DEFAULT);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2584 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 gtk_box_pack_end(GTK_BOX(actionarea), tmp, FALSE, FALSE, 0);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2586 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2587 g_signal_connect_swapped(G_OBJECT(tmp),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2588 "clicked", G_CALLBACK(gtk_widget_hide),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2589 G_OBJECT(frdp->dialog));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2590 g_signal_connect_swapped(G_OBJECT(frdp->dialog),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2591 "delete-event", G_CALLBACK(gtk_widget_hide_on_delete),
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2592 G_OBJECT(frdp->dialog));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2593 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2594 gtk_signal_connect_object(GTK_OBJECT(tmp),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2595 "clicked", GTK_SIGNAL_FUNC(gtk_widget_hide),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2596 GTK_OBJECT(frdp->dialog));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 gtk_signal_connect_object(GTK_OBJECT(frdp->dialog),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2598 "delete_event", GTK_SIGNAL_FUNC(gtk_widget_hide_on_delete),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2599 GTK_OBJECT(frdp->dialog));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2600 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2602 #if GTK_CHECK_VERSION(3,2,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2603 tmp = gtk_separator_new(GTK_ORIENTATION_VERTICAL);
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2604 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2605 tmp = gtk_vseparator_new();
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2606 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607 gtk_box_pack_end(GTK_BOX(hbox), tmp, FALSE, FALSE, 10);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 /* Suppress automatic show of the unused action area */
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2610 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2611 # if !GTK_CHECK_VERSION(3,12,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2612 gtk_widget_hide(gtk_dialog_get_action_area(GTK_DIALOG(frdp->dialog)));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2613 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2614 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2615 gtk_widget_hide(GTK_DIALOG(frdp->dialog)->action_area);
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2616 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2617 gtk_widget_show_all(hbox);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 gtk_widget_show(frdp->dialog);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2619
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2620 vim_free(entry_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2621 vim_free(conv_buffer);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 #undef CONV
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2624
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2625 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2626 gui_mch_find_dialog(exarg_T *eap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2627 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2628 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2629 find_replace_dialog_create(eap->arg, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2630 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633 gui_mch_replace_dialog(exarg_T *eap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2634 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2635 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2636 find_replace_dialog_create(eap->arg, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2637 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2638
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640 * Callback for actions of the find and replace dialogs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2642 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2643 find_replace_cb(GtkWidget *widget UNUSED, gpointer data)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 int flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 char_u *find_text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 char_u *repl_text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648 gboolean direction_down;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 SharedFindReplace *sfr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2651 flags = (int)(long)data; /* avoid a lint warning here */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2652
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2653 /* Get the search/replace strings from the dialog */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2654 if (flags == FRD_FINDNEXT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2656 repl_text = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657 sfr = &find_widgets;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2658 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2661 repl_text = (char_u *)gtk_entry_get_text(GTK_ENTRY(repl_widgets.with));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2662 sfr = &repl_widgets;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2663 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665 find_text = (char_u *)gtk_entry_get_text(GTK_ENTRY(sfr->what));
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2666 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2667 direction_down = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(sfr->down));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2668 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669 direction_down = GTK_TOGGLE_BUTTON(sfr->down)->active;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2670 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2671
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2672 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2673 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(sfr->wword)))
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2674 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2675 if (GTK_TOGGLE_BUTTON(sfr->wword)->active)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2676 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 flags |= FRD_WHOLE_WORD;
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2678 #if GTK_CHECK_VERSION(3,0,0)
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2679 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(sfr->mcase)))
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2680 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 if (GTK_TOGGLE_BUTTON(sfr->mcase)->active)
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
2682 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 flags |= FRD_MATCH_CASE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2685 repl_text = CONVERT_FROM_UTF8(repl_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2686 find_text = CONVERT_FROM_UTF8(find_text);
2656
4549e0e7fbb6 updated for version 7.3.076
Bram Moolenaar <bram@vim.org>
parents: 2649
diff changeset
2687 gui_do_findrepl(flags, find_text, repl_text, direction_down);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2688 CONVERT_FROM_UTF8_FREE(repl_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 CONVERT_FROM_UTF8_FREE(find_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2690 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692 /* our usual callback function */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 static void
1884
3dd986bfef63 updated for version 7.2-181
vimboss
parents: 1693
diff changeset
2694 entry_activate_cb(GtkWidget *widget UNUSED, gpointer data)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696 gtk_widget_grab_focus(GTK_WIDGET(data));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2699 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700 * Syncing the find/replace dialogs on the fly is utterly useless crack,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701 * and causes nothing but problems. Please tell me a use case for which
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 * you'd need both a find dialog and a find/replace one at the same time,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703 * without being able to actually use them separately since they're syncing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 * all the time. I don't think it's worthwhile to fix this nonsense,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705 * particularly evil incarnation of braindeadness, whatever; I'd much rather
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2706 * see it extinguished from this planet. Thanks for listening. Sorry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2707 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 entry_changed_cb(GtkWidget * entry, GtkWidget * dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2710 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711 const gchar *entry_text;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712 gboolean nonempty;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 entry_text = gtk_entry_get_text(GTK_ENTRY(entry));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 if (!entry_text)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717 return; /* shouldn't happen */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 nonempty = (entry_text[0] != '\0');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2720
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 if (dialog == find_widgets.dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 gtk_widget_set_sensitive(find_widgets.find, nonempty);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 if (dialog == repl_widgets.dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728 gtk_widget_set_sensitive(repl_widgets.find, nonempty);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729 gtk_widget_set_sensitive(repl_widgets.replace, nonempty);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 gtk_widget_set_sensitive(repl_widgets.all, nonempty);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2735 * ":helpfind"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2736 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2737 void
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7380
diff changeset
2738 ex_helpfind(exarg_T *eap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 /* This will fail when menus are not loaded. Well, it's only for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2741 * backwards compatibility anyway. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 do_cmdline_cmd((char_u *)"emenu ToolBar.FindHelp");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 }
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2744
3564
8d1b63e6d317 updated for version 7.3.542
Bram Moolenaar <bram@vim.org>
parents: 3484
diff changeset
2745 #if defined(FEAT_BROWSE) || defined(PROTO)
3484
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2746 static void
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2747 recent_func_log_func(const gchar *log_domain UNUSED,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2748 GLogLevelFlags log_level UNUSED,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2749 const gchar *message UNUSED,
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2750 gpointer user_data UNUSED)
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2751 {
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2752 /* We just want to suppress the warnings. */
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2753 /* http://bugzilla.gnome.org/show_bug.cgi?id=664587 */
982f84487daf updated for version 7.3.506
Bram Moolenaar <bram@vim.org>
parents: 2923
diff changeset
2754 }
3564
8d1b63e6d317 updated for version 7.3.542
Bram Moolenaar <bram@vim.org>
parents: 3484
diff changeset
2755 #endif