Mercurial > emacs
annotate src/gtkutil.h @ 107521:54f3a4d055ee
Document font-use-system-font.
* cmdargs.texi (Font X): Move most content to Fonts.
* frames.texi (Fonts): New node. Document font-use-system-font.
* emacs.texi (Top):
* xresources.texi (Table of Resources):
* mule.texi (Defining Fontsets, Charsets): Update xrefs.
| author | Chong Yidong <cyd@stupidchicken.com> |
|---|---|
| date | Sat, 20 Mar 2010 13:24:06 -0400 |
| parents | 1d1d5d9bd884 |
| children | 3e9a832a5533 60266cf487b0 |
| 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 | |
| 42 /* Button types in menus. */ | |
| 43 enum button_type | |
| 44 { | |
| 45 BUTTON_TYPE_NONE, | |
| 46 BUTTON_TYPE_TOGGLE, | |
| 47 BUTTON_TYPE_RADIO | |
| 48 }; | |
| 49 | |
| 50 /* This is a list node in a generic list implementation. */ | |
| 51 typedef struct xg_list_node_ | |
| 52 { | |
| 53 struct xg_list_node_ *prev; | |
| 54 struct xg_list_node_ *next; | |
| 55 } xg_list_node; | |
| 56 | |
| 57 /* This structure is the callback data that is shared for menu items. | |
| 58 We need to keep it separate from the frame structure due to | |
| 59 detachable menus. The data in the frame structure is only valid while | |
| 60 the menu is popped up. This structure is kept around as long as | |
| 61 the menu is. */ | |
| 62 typedef struct xg_menu_cb_data_ | |
| 63 { | |
| 64 xg_list_node ptrs; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
65 |
| 49323 | 66 FRAME_PTR f; |
| 67 Lisp_Object menu_bar_vector; | |
| 68 int menu_bar_items_used; | |
| 69 GCallback highlight_cb; | |
| 70 int ref_count; | |
| 71 } xg_menu_cb_data; | |
| 72 | |
| 73 /* This structure holds callback information for each individual menu item. */ | |
| 74 typedef struct xg_menu_item_cb_data_ | |
| 75 { | |
| 76 xg_list_node ptrs; | |
| 77 | |
| 78 gulong select_id; | |
| 79 Lisp_Object help; | |
| 80 gpointer call_data; | |
| 81 xg_menu_cb_data *cl_data; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
82 |
| 49323 | 83 } xg_menu_item_cb_data; |
| 84 | |
| 85 | |
| 86 /* Used to specify menus and dialogs. | |
| 87 This is an adaption from lwlib for Gtk so we can use more of the same | |
| 88 code as lwlib in xmenu.c. */ | |
| 89 typedef struct _widget_value | |
| 90 { | |
| 91 /* name of widget */ | |
|
56846
5817080daeba
* xmenu.c (digest_single_submenu): Set lname and lkey in widget_value
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
53069
diff
changeset
|
92 Lisp_Object lname; |
| 49323 | 93 char *name; |
| 94 /* value (meaning depend on widget type) */ | |
| 95 char *value; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
96 /* keyboard equivalent. no implications for XtTranslations */ |
|
56846
5817080daeba
* xmenu.c (digest_single_submenu): Set lname and lkey in widget_value
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
53069
diff
changeset
|
97 Lisp_Object lkey; |
| 49323 | 98 char *key; |
| 99 /* Help string or nil if none. | |
| 100 GC finds this string through the frame's menu_bar_vector | |
| 101 or through menu_items. */ | |
| 102 Lisp_Object help; | |
| 103 /* true if enabled */ | |
| 104 gint enabled; | |
| 105 /* true if selected */ | |
| 106 gint selected; | |
| 107 /* The type of a button. */ | |
| 108 enum button_type button_type; | |
| 109 /* Contents of the sub-widgets, also selected slot for checkbox */ | |
| 110 struct _widget_value *contents; | |
| 111 /* data passed to callback */ | |
| 112 gpointer call_data; | |
| 113 /* next one in the list */ | |
| 114 struct _widget_value *next; | |
| 115 | |
| 116 /* we resource the widget_value structures; this points to the next | |
| 117 one on the free list if this one has been deallocated. | |
| 118 */ | |
| 119 struct _widget_value *free_list; | |
| 120 } widget_value; | |
| 121 | |
|
57941
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
122 #ifdef HAVE_GTK_FILE_BOTH |
|
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
123 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
|
124 #endif |
|
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
125 |
|
49434
a4d0ee33dcce
Fix input methods for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
49323
diff
changeset
|
126 extern widget_value *malloc_widget_value P_ ((void)); |
| 49323 | 127 extern void free_widget_value P_ ((widget_value *)); |
| 128 | |
|
67761
5b8799d65159
* xfns.c (Fx_uses_old_gtk_dialog): New function.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
65005
diff
changeset
|
129 extern int xg_uses_old_file_dialog P_ ((void)); |
|
5b8799d65159
* xfns.c (Fx_uses_old_gtk_dialog): New function.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
65005
diff
changeset
|
130 |
| 49323 | 131 extern char *xg_get_file_name P_ ((FRAME_PTR f, |
| 132 char *prompt, | |
| 133 char *default_filename, | |
|
57868
c955f6add62a
* fileio.c (Fread_file_name): Pass Qt as fifth parameter to
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57596
diff
changeset
|
134 int mustmatch_p, |
|
c955f6add62a
* fileio.c (Fread_file_name): Pass Qt as fifth parameter to
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57596
diff
changeset
|
135 int only_dir_p)); |
| 49323 | 136 |
|
95793
7cd28948bba9
(xg_get_font_name): Insert prototype,
Chong Yidong <cyd@stupidchicken.com>
parents:
94994
diff
changeset
|
137 extern char *xg_get_font_name P_ ((FRAME_PTR f, char *)); |
|
7cd28948bba9
(xg_get_font_name): Insert prototype,
Chong Yidong <cyd@stupidchicken.com>
parents:
94994
diff
changeset
|
138 |
| 49323 | 139 extern GtkWidget *xg_create_widget P_ ((char *type, |
| 140 char *name, | |
| 141 FRAME_PTR f, | |
| 142 widget_value *val, | |
| 143 GCallback select_cb, | |
| 144 GCallback deactivate_cb, | |
| 145 GCallback hightlight_cb)); | |
| 146 | |
| 147 extern void xg_modify_menubar_widgets P_ ((GtkWidget *menubar, | |
| 148 FRAME_PTR f, | |
| 149 widget_value *val, | |
| 150 int deep_p, | |
| 151 GCallback select_cb, | |
| 152 GCallback deactivate_cb, | |
| 153 GCallback hightlight_cb)); | |
| 154 | |
| 155 extern int xg_update_frame_menubar P_ ((FRAME_PTR f)); | |
| 156 | |
|
52981
54482f5ea7be
Remove tear off capability for GTK popup menus.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
157 extern int xg_have_tear_offs P_ ((void)); |
| 49323 | 158 |
|
53069
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
159 extern int xg_get_scroll_id_for_window P_ ((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
|
160 |
| 49323 | 161 extern void xg_create_scroll_bar P_ ((FRAME_PTR f, |
| 162 struct scroll_bar *bar, | |
| 163 GCallback scroll_callback, | |
|
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
|
164 GCallback end_callback, |
| 49323 | 165 char *scroll_bar_name)); |
| 166 extern void xg_show_scroll_bar P_ ((int scrollbar_id)); | |
| 167 extern void xg_remove_scroll_bar P_ ((FRAME_PTR f, int scrollbar_id)); | |
| 168 | |
| 169 extern void xg_update_scrollbar_pos P_ ((FRAME_PTR f, | |
| 170 int scrollbar_id, | |
| 171 int top, | |
| 172 int left, | |
| 173 int width, | |
|
57596
94778fc7dc76
* gtkutil.h (xg_frame_cleared): Removed.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
56846
diff
changeset
|
174 int height)); |
| 49323 | 175 |
| 176 extern void xg_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *bar, | |
| 177 int portion, | |
| 178 int position, | |
| 179 int whole)); | |
|
105880
5910e0380daf
Fix bug #4870, issues 3 and 4.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
100951
diff
changeset
|
180 extern int xg_event_is_for_scrollbar P_ ((FRAME_PTR f, XEvent *event)); |
| 49323 | 181 |
| 182 extern void update_frame_tool_bar P_ ((FRAME_PTR f)); | |
| 183 extern void free_frame_tool_bar P_ ((FRAME_PTR f)); | |
| 184 | |
|
92367
1402432968c4
(xg_frame_resized): Renamed from xg_resize_widgets.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
79759
diff
changeset
|
185 extern void xg_frame_resized P_ ((FRAME_PTR f, |
|
1402432968c4
(xg_frame_resized): Renamed from xg_resize_widgets.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
79759
diff
changeset
|
186 int pixelwidth, |
|
1402432968c4
(xg_frame_resized): Renamed from xg_resize_widgets.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
79759
diff
changeset
|
187 int pixelheight)); |
| 49323 | 188 extern void xg_frame_set_char_size P_ ((FRAME_PTR f, int cols, int rows)); |
|
53069
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
189 extern GtkWidget * xg_win_to_widget P_ ((Display *dpy, Window wdesc)); |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
190 |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
191 extern int xg_display_open P_ ((char *display_name, Display **dpy)); |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
192 extern void xg_display_close P_ ((Display *dpy)); |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
193 extern GdkCursor * xg_create_default_cursor P_ ((Display *dpy)); |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
194 |
| 49323 | 195 extern int xg_create_frame_widgets P_ ((FRAME_PTR f)); |
| 196 extern void x_wm_set_size_hint P_ ((FRAME_PTR f, | |
| 197 long flags, | |
| 198 int user_position)); | |
| 199 extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg)); | |
| 200 | |
|
65005
5a24bf173f5c
* gtkutil.h (xg_set_frame_icon): Declare it.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
64935
diff
changeset
|
201 extern void xg_set_frame_icon P_ ((FRAME_PTR f, |
|
5a24bf173f5c
* gtkutil.h (xg_set_frame_icon): Declare it.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
64935
diff
changeset
|
202 Pixmap icon_pixmap, |
|
5a24bf173f5c
* gtkutil.h (xg_set_frame_icon): Declare it.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
64935
diff
changeset
|
203 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
|
204 |
| 49323 | 205 /* Mark all callback data that are Lisp_object:s during GC. */ |
|
49434
a4d0ee33dcce
Fix input methods for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
49323
diff
changeset
|
206 extern void xg_mark_data P_ ((void)); |
| 49323 | 207 |
| 208 /* Initialize GTK specific parts. */ | |
|
49434
a4d0ee33dcce
Fix input methods for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
49323
diff
changeset
|
209 extern void xg_initialize P_ ((void)); |
| 49323 | 210 |
| 211 /* Setting scrollbar values invokes the callback. Use this variable | |
| 212 to indicate that the callback should do nothing. */ | |
| 213 extern int xg_ignore_gtk_scrollbar; | |
| 214 | |
| 215 #endif /* USE_GTK */ | |
| 216 #endif /* GTKUTIL_H */ | |
| 52401 | 217 |
| 218 /* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72 | |
| 219 (do not change this comment) */ |
