Mercurial > emacs
annotate src/gtkutil.h @ 91207:c814dfe04708
(w32font.o): Depend on w32font.h.
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Sat, 08 Dec 2007 01:48:02 +0000 |
| parents | f55f9811f5d7 |
| children | 606f2d163a64 |
| rev | line source |
|---|---|
| 49323 | 1 /* Definitions and headers for GTK widgets. |
| 75348 | 2 Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
| 49323 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
|
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
8 the Free Software Foundation; either version 3, or (at your option) |
| 49323 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 64084 | 18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 Boston, MA 02110-1301, USA. */ | |
| 49323 | 20 |
| 21 #ifndef GTKUTIL_H | |
| 22 #define GTKUTIL_H | |
| 23 | |
| 24 | |
| 25 #ifdef USE_GTK | |
| 26 | |
| 27 #include <gtk/gtk.h> | |
| 28 #include "frame.h" | |
| 29 | |
| 30 /* Minimum and maximum values used for GTK scroll bars */ | |
| 31 | |
|
50270
fa50953c02dc
Finally (?) fix flicker in scroll bar.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
50188
diff
changeset
|
32 #define XG_SB_MIN 1 |
| 49323 | 33 #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
|
34 #define XG_SB_RANGE (XG_SB_MAX-XG_SB_MIN) |
| 49323 | 35 |
| 36 /* Key for data that is valid for menus in a frame */ | |
| 37 #define XG_FRAME_DATA "emacs_frame" | |
| 38 | |
| 39 /* Key for data that is the last scrollbar value */ | |
| 40 #define XG_LAST_SB_DATA "emacs_last_sb_value" | |
| 41 | |
| 42 /* Key for data that menu items hold. */ | |
| 43 #define XG_ITEM_DATA "emacs_menuitem" | |
| 44 | |
| 45 | |
| 46 /* Button types in menus. */ | |
| 47 enum button_type | |
| 48 { | |
| 49 BUTTON_TYPE_NONE, | |
| 50 BUTTON_TYPE_TOGGLE, | |
| 51 BUTTON_TYPE_RADIO | |
| 52 }; | |
| 53 | |
| 54 /* This is a list node in a generic list implementation. */ | |
| 55 typedef struct xg_list_node_ | |
| 56 { | |
| 57 struct xg_list_node_ *prev; | |
| 58 struct xg_list_node_ *next; | |
| 59 } xg_list_node; | |
| 60 | |
| 61 /* This structure is the callback data that is shared for menu items. | |
| 62 We need to keep it separate from the frame structure due to | |
| 63 detachable menus. The data in the frame structure is only valid while | |
| 64 the menu is popped up. This structure is kept around as long as | |
| 65 the menu is. */ | |
| 66 typedef struct xg_menu_cb_data_ | |
| 67 { | |
| 68 xg_list_node ptrs; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
69 |
| 49323 | 70 FRAME_PTR f; |
| 71 Lisp_Object menu_bar_vector; | |
| 72 int menu_bar_items_used; | |
| 73 GCallback highlight_cb; | |
| 74 int ref_count; | |
| 75 } xg_menu_cb_data; | |
| 76 | |
| 77 /* This structure holds callback information for each individual menu item. */ | |
| 78 typedef struct xg_menu_item_cb_data_ | |
| 79 { | |
| 80 xg_list_node ptrs; | |
| 81 | |
| 82 gulong select_id; | |
| 83 Lisp_Object help; | |
| 84 gpointer call_data; | |
| 85 xg_menu_cb_data *cl_data; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
86 |
| 49323 | 87 } xg_menu_item_cb_data; |
| 88 | |
| 89 | |
| 90 /* Used to specify menus and dialogs. | |
| 91 This is an adaption from lwlib for Gtk so we can use more of the same | |
| 92 code as lwlib in xmenu.c. */ | |
| 93 typedef struct _widget_value | |
| 94 { | |
| 95 /* 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
|
96 Lisp_Object lname; |
| 49323 | 97 char *name; |
| 98 /* value (meaning depend on widget type) */ | |
| 99 char *value; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49434
diff
changeset
|
100 /* 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
|
101 Lisp_Object lkey; |
| 49323 | 102 char *key; |
| 103 /* Help string or nil if none. | |
| 104 GC finds this string through the frame's menu_bar_vector | |
| 105 or through menu_items. */ | |
| 106 Lisp_Object help; | |
| 107 /* true if enabled */ | |
| 108 gint enabled; | |
| 109 /* true if selected */ | |
| 110 gint selected; | |
| 111 /* The type of a button. */ | |
| 112 enum button_type button_type; | |
| 113 /* Contents of the sub-widgets, also selected slot for checkbox */ | |
| 114 struct _widget_value *contents; | |
| 115 /* data passed to callback */ | |
| 116 gpointer call_data; | |
| 117 /* next one in the list */ | |
| 118 struct _widget_value *next; | |
| 119 | |
| 120 /* we resource the widget_value structures; this points to the next | |
| 121 one on the free list if this one has been deallocated. | |
| 122 */ | |
| 123 struct _widget_value *free_list; | |
| 124 } widget_value; | |
| 125 | |
|
57941
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
126 #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
|
127 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
|
128 #endif |
|
68ea73fe257b
* gtkutil.h: Declare use_old_gtk_file_dialog.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
129 |
|
49434
a4d0ee33dcce
Fix input methods for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
49323
diff
changeset
|
130 extern widget_value *malloc_widget_value P_ ((void)); |
| 49323 | 131 extern void free_widget_value P_ ((widget_value *)); |
| 132 | |
|
67761
5b8799d65159
* xfns.c (Fx_uses_old_gtk_dialog): New function.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
65005
diff
changeset
|
133 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
|
134 |
| 49323 | 135 extern char *xg_get_file_name P_ ((FRAME_PTR f, |
| 136 char *prompt, | |
| 137 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
|
138 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
|
139 int only_dir_p)); |
| 49323 | 140 |
| 141 extern GtkWidget *xg_create_widget P_ ((char *type, | |
| 142 char *name, | |
| 143 FRAME_PTR f, | |
| 144 widget_value *val, | |
| 145 GCallback select_cb, | |
| 146 GCallback deactivate_cb, | |
| 147 GCallback hightlight_cb)); | |
| 148 | |
| 149 extern void xg_modify_menubar_widgets P_ ((GtkWidget *menubar, | |
| 150 FRAME_PTR f, | |
| 151 widget_value *val, | |
| 152 int deep_p, | |
| 153 GCallback select_cb, | |
| 154 GCallback deactivate_cb, | |
| 155 GCallback hightlight_cb)); | |
| 156 | |
| 157 extern int xg_update_frame_menubar P_ ((FRAME_PTR f)); | |
| 158 | |
|
52981
54482f5ea7be
Remove tear off capability for GTK popup menus.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
159 extern int xg_have_tear_offs P_ ((void)); |
| 49323 | 160 |
|
53069
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
161 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
|
162 |
| 49323 | 163 extern void xg_create_scroll_bar P_ ((FRAME_PTR f, |
| 164 struct scroll_bar *bar, | |
| 165 GCallback scroll_callback, | |
| 166 char *scroll_bar_name)); | |
| 167 extern void xg_show_scroll_bar P_ ((int scrollbar_id)); | |
| 168 extern void xg_remove_scroll_bar P_ ((FRAME_PTR f, int scrollbar_id)); | |
| 169 | |
| 170 extern void xg_update_scrollbar_pos P_ ((FRAME_PTR f, | |
| 171 int scrollbar_id, | |
| 172 int top, | |
| 173 int left, | |
| 174 int width, | |
|
57596
94778fc7dc76
* gtkutil.h (xg_frame_cleared): Removed.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
56846
diff
changeset
|
175 int height)); |
| 49323 | 176 |
| 177 extern void xg_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *bar, | |
| 178 int portion, | |
| 179 int position, | |
| 180 int whole)); | |
| 181 | |
| 182 | |
| 183 extern void update_frame_tool_bar P_ ((FRAME_PTR f)); | |
| 184 extern void free_frame_tool_bar P_ ((FRAME_PTR f)); | |
| 185 | |
| 186 extern void xg_resize_widgets P_ ((FRAME_PTR f, | |
| 187 int pixelwidth, | |
| 188 int pixelheight)); | |
| 189 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
|
190 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
|
191 |
|
1218a42792ea
Implement multiple display handling for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52981
diff
changeset
|
192 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
|
193 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
|
194 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
|
195 |
| 49323 | 196 extern int xg_create_frame_widgets P_ ((FRAME_PTR f)); |
| 197 extern void x_wm_set_size_hint P_ ((FRAME_PTR f, | |
| 198 long flags, | |
| 199 int user_position)); | |
| 200 extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg)); | |
| 201 | |
|
65005
5a24bf173f5c
* gtkutil.h (xg_set_frame_icon): Declare it.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
64935
diff
changeset
|
202 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
|
203 Pixmap icon_pixmap, |
|
5a24bf173f5c
* gtkutil.h (xg_set_frame_icon): Declare it.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
64935
diff
changeset
|
204 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
|
205 |
| 49323 | 206 /* 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
|
207 extern void xg_mark_data P_ ((void)); |
| 49323 | 208 |
| 209 /* Initialize GTK specific parts. */ | |
|
49434
a4d0ee33dcce
Fix input methods for GTK.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
49323
diff
changeset
|
210 extern void xg_initialize P_ ((void)); |
| 49323 | 211 |
| 212 /* Setting scrollbar values invokes the callback. Use this variable | |
| 213 to indicate that the callback should do nothing. */ | |
| 214 extern int xg_ignore_gtk_scrollbar; | |
| 215 | |
| 216 #endif /* USE_GTK */ | |
| 217 #endif /* GTKUTIL_H */ | |
| 52401 | 218 |
| 219 /* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72 | |
| 220 (do not change this comment) */ |
