Mercurial > emacs
annotate src/gtkutil.h @ 110717:60a469b3a72c
* lisp/gnus/gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 02 Oct 2010 19:07:11 -0700 |
parents | be18c3b67d66 |
children | 417b1e4d63cd |
rev | line source |
---|---|
49323 | 1 /* Definitions and headers for GTK widgets. |
106815 | 2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
79759 | 3 Free Software Foundation, Inc. |
49323 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92367
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
49323 | 8 it under the terms of the GNU General Public License as published by |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92367
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92367
diff
changeset
|
10 (at your option) any later version. |
49323 | 11 |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92367
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
49323 | 19 |
20 #ifndef GTKUTIL_H | |
21 #define GTKUTIL_H | |
22 | |
23 | |
24 #ifdef USE_GTK | |
25 | |
26 #include <gtk/gtk.h> | |
27 #include "frame.h" | |
28 | |
29 /* Minimum and maximum values used for GTK scroll bars */ | |
30 | |
50270
fa50953c02dc
Finally (?) fix flicker in scroll bar.
Jan Djärv <jan.h.d@swipnet.se>
parents:
50188
diff
changeset
|
31 #define XG_SB_MIN 1 |
49323 | 32 #define XG_SB_MAX 10000000 |
50270
fa50953c02dc
Finally (?) fix flicker in scroll bar.
Jan Djärv <jan.h.d@swipnet.se>
parents:
50188
diff
changeset
|
33 #define XG_SB_RANGE (XG_SB_MAX-XG_SB_MIN) |
49323 | 34 |
106559
bac7488df503
Bug 5177: Scroll bar thumb did not move when scrolling with mouse wheel.
Jan Djärv <jan.h.d@swipnet.se>
parents:
105880
diff
changeset
|
35 /* Key for data that is valid for menus and scroll bars in a frame */ |
49323 | 36 #define XG_FRAME_DATA "emacs_frame" |
37 | |
38 /* Key for data that menu items hold. */ | |
39 #define XG_ITEM_DATA "emacs_menuitem" | |
40 | |
41 /* This is a list node in a generic list implementation. */ | |
42 typedef struct xg_list_node_ | |
43 { | |
44 struct xg_list_node_ *prev; | |
45 struct xg_list_node_ *next; | |
46 } xg_list_node; | |
47 | |
48 /* This structure is the callback data that is shared for menu items. | |
49 We need to keep it separate from the frame structure due to | |
50 detachable menus. The data in the frame structure is only valid while | |
51 the menu is popped up. This structure is kept around as long as | |
52 the menu is. */ | |
53 typedef struct xg_menu_cb_data_ | |
54 { | |
55 xg_list_node ptrs; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
56 |
49323 | 57 FRAME_PTR f; |
58 Lisp_Object menu_bar_vector; | |
59 int menu_bar_items_used; | |
60 GCallback highlight_cb; | |
61 int ref_count; | |
62 } xg_menu_cb_data; | |
63 | |
64 /* This structure holds callback information for each individual menu item. */ | |
65 typedef struct xg_menu_item_cb_data_ | |
66 { | |
67 xg_list_node ptrs; | |
68 | |
69 gulong select_id; | |
70 Lisp_Object help; | |
71 gpointer call_data; | |
72 xg_menu_cb_data *cl_data; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
73 |
49323 | 74 } xg_menu_item_cb_data; |
75 | |
76 | |
109067
b5f73bf59a4f
Use non-deprecated Gtk+ functions, add changes for Gtk+3 with GSEAL_ENABLE.
Jan D <jan.h.d@swipnet.se>
parents:
109037
diff
changeset
|
77 #ifdef HAVE_GTK_FILE_SELECTION_NEW |
57941
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
78 extern int use_old_gtk_file_dialog; |
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
79 #endif |
109748
e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
Jan D <jan.h.d@swipnet.se>
parents:
109726
diff
changeset
|
80 struct _widget_value; |
57941
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
81 |
109748
e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
Jan D <jan.h.d@swipnet.se>
parents:
109726
diff
changeset
|
82 extern struct _widget_value *malloc_widget_value (void); |
e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
Jan D <jan.h.d@swipnet.se>
parents:
109726
diff
changeset
|
83 extern void free_widget_value (struct _widget_value *); |
49323 | 84 |
109099 | 85 extern int xg_uses_old_file_dialog (void); |
67761
5b8799d65159
* xfns.c (Fx_uses_old_gtk_dialog): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
65005
diff
changeset
|
86 |
109099 | 87 extern char *xg_get_file_name (FRAME_PTR f, |
88 char *prompt, | |
89 char *default_filename, | |
90 int mustmatch_p, | |
91 int only_dir_p); | |
49323 | 92 |
109726
64732fa6188a
Use const char* instead of char*.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109717
diff
changeset
|
93 extern char *xg_get_font_name (FRAME_PTR f, const char *); |
95793
7cd28948bba9
(xg_get_font_name): Insert prototype,
Chong Yidong <cyd@stupidchicken.com>
parents:
94994
diff
changeset
|
94 |
109717
8949aad5e992
Use const char* instead of char*.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109604
diff
changeset
|
95 extern GtkWidget *xg_create_widget (const char *type, |
8949aad5e992
Use const char* instead of char*.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109604
diff
changeset
|
96 const char *name, |
109099 | 97 FRAME_PTR f, |
109748
e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
Jan D <jan.h.d@swipnet.se>
parents:
109726
diff
changeset
|
98 struct _widget_value *val, |
109099 | 99 GCallback select_cb, |
100 GCallback deactivate_cb, | |
101 GCallback hightlight_cb); | |
49323 | 102 |
109099 | 103 extern void xg_modify_menubar_widgets (GtkWidget *menubar, |
104 FRAME_PTR f, | |
109748
e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
Jan D <jan.h.d@swipnet.se>
parents:
109726
diff
changeset
|
105 struct _widget_value *val, |
109099 | 106 int deep_p, |
107 GCallback select_cb, | |
108 GCallback deactivate_cb, | |
109 GCallback hightlight_cb); | |
49323 | 110 |
109099 | 111 extern int xg_update_frame_menubar (FRAME_PTR f); |
49323 | 112 |
109445
051595eb9b58
Merge changes from emacs-23 branch.
Chong Yidong <cyd@stupidchicken.com>
diff
changeset
|
113 extern int xg_event_is_for_menubar (FRAME_PTR f, XEvent *event); |
109327
60266cf487b0
Fix menus as per bug 6499 and 6608.
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
114 |
109099 | 115 extern int xg_have_tear_offs (void); |
49323 | 116 |
109099 | 117 extern int xg_get_scroll_id_for_window (Display *dpy, Window wid); |
50064
40170697bff1
Implement Ctrl-Mouse-2 (split vertically) for toolkit scrollbars
Jan Djärv <jan.h.d@swipnet.se>
parents:
49600
diff
changeset
|
118 |
109099 | 119 extern void xg_create_scroll_bar (FRAME_PTR f, |
120 struct scroll_bar *bar, | |
121 GCallback scroll_callback, | |
122 GCallback end_callback, | |
109717
8949aad5e992
Use const char* instead of char*.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109604
diff
changeset
|
123 const char *scroll_bar_name); |
109099 | 124 extern void xg_remove_scroll_bar (FRAME_PTR f, int scrollbar_id); |
49323 | 125 |
109099 | 126 extern void xg_update_scrollbar_pos (FRAME_PTR f, |
127 int scrollbar_id, | |
128 int top, | |
129 int left, | |
130 int width, | |
131 int height); | |
49323 | 132 |
109099 | 133 extern void xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, |
134 int portion, | |
135 int position, | |
136 int whole); | |
137 extern int xg_event_is_for_scrollbar (FRAME_PTR f, XEvent *event); | |
49323 | 138 |
109099 | 139 extern void update_frame_tool_bar (FRAME_PTR f); |
140 extern void free_frame_tool_bar (FRAME_PTR f); | |
109581
06384b3caebf
Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
Jan D. <jan.h.d@swipnet.se>
parents:
109445
diff
changeset
|
141 extern int xg_change_toolbar_position (FRAME_PTR f, Lisp_Object pos); |
49323 | 142 |
109099 | 143 extern void xg_frame_resized (FRAME_PTR f, |
144 int pixelwidth, | |
145 int pixelheight); | |
146 extern void xg_frame_set_char_size (FRAME_PTR f, int cols, int rows); | |
147 extern GtkWidget * xg_win_to_widget (Display *dpy, Window wdesc); | |
53069
1218a42792ea
Implement multiple display handling for GTK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
148 |
109099 | 149 extern void xg_display_open (char *display_name, Display **dpy); |
150 extern void xg_display_close (Display *dpy); | |
151 extern GdkCursor * xg_create_default_cursor (Display *dpy); | |
53069
1218a42792ea
Implement multiple display handling for GTK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
152 |
109099 | 153 extern int xg_create_frame_widgets (FRAME_PTR f); |
109604
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
154 extern void xg_free_frame_widgets (FRAME_PTR f); |
109099 | 155 extern void x_wm_set_size_hint (FRAME_PTR f, |
156 long flags, | |
157 int user_position); | |
158 extern void xg_set_background_color (FRAME_PTR f, unsigned long bg); | |
109749
be18c3b67d66
Take colors for region face (selected text) from the Gtk+ theme.
Jan D <jan.h.d@swipnet.se>
parents:
109748
diff
changeset
|
159 extern int xg_check_special_colors (struct frame *f, |
be18c3b67d66
Take colors for region face (selected text) from the Gtk+ theme.
Jan D <jan.h.d@swipnet.se>
parents:
109748
diff
changeset
|
160 const char *color_name, |
be18c3b67d66
Take colors for region face (selected text) from the Gtk+ theme.
Jan D <jan.h.d@swipnet.se>
parents:
109748
diff
changeset
|
161 XColor *color); |
49323 | 162 |
109099 | 163 extern void xg_set_frame_icon (FRAME_PTR f, |
164 Pixmap icon_pixmap, | |
165 Pixmap icon_mask); | |
64935
0095a3f61578
* gtkutil.h (xg_get_pixbuf_from_pix_and_mask): Declare.
Jan Djärv <jan.h.d@swipnet.se>
parents:
64770
diff
changeset
|
166 |
109604
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
167 extern int xg_prepare_tooltip (FRAME_PTR f, |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
168 Lisp_Object string, |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
169 int *width, |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
170 int *height); |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
171 extern void xg_show_tooltip (FRAME_PTR f, int root_x, int root_y); |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
172 extern int xg_hide_tooltip (FRAME_PTR f); |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
173 |
43eca6c9f493
Use Gtk+ tooltips by default for Gtk+ Emacs.
Jan D <jan.h.d@swipnet.se>
parents:
109581
diff
changeset
|
174 |
49323 | 175 /* Mark all callback data that are Lisp_object:s during GC. */ |
109099 | 176 extern void xg_mark_data (void); |
49323 | 177 |
178 /* Initialize GTK specific parts. */ | |
109099 | 179 extern void xg_initialize (void); |
49323 | 180 |
181 /* Setting scrollbar values invokes the callback. Use this variable | |
182 to indicate that the callback should do nothing. */ | |
183 extern int xg_ignore_gtk_scrollbar; | |
184 | |
185 #endif /* USE_GTK */ | |
186 #endif /* GTKUTIL_H */ | |
52401 | 187 |
188 /* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72 | |
189 (do not change this comment) */ |