1 /* Definitions and headers for GTK widgets.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 /* Minimum and maximum values used for GTK scroll bars */
32 #define XG_SB_MAX 10000000
33 #define XG_SB_RANGE (XG_SB_MAX-XG_SB_MIN)
35 /* Key for data that is valid for menus and scroll bars in a frame */
36 #define XG_FRAME_DATA "emacs_frame"
38 /* Key for data that menu items hold. */
39 #define XG_ITEM_DATA "emacs_menuitem"
42 /* Button types in menus. */
50 /* This is a list node in a generic list implementation. */
51 typedef struct xg_list_node_
53 struct xg_list_node_
*prev
;
54 struct xg_list_node_
*next
;
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
62 typedef struct xg_menu_cb_data_
67 Lisp_Object menu_bar_vector
;
68 int menu_bar_items_used
;
69 GCallback highlight_cb
;
73 /* This structure holds callback information for each individual menu item. */
74 typedef struct xg_menu_item_cb_data_
81 xg_menu_cb_data
*cl_data
;
83 } xg_menu_item_cb_data
;
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
94 /* value (meaning depend on widget type) */
96 /* keyboard equivalent. no implications for XtTranslations */
99 /* Help string or nil if none.
100 GC finds this string through the frame's menu_bar_vector
101 or through menu_items. */
103 /* true if enabled */
105 /* true if 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 */
113 /* next one in the list */
114 struct _widget_value
*next
;
116 /* we resource the widget_value structures; this points to the next
117 one on the free list if this one has been deallocated.
119 struct _widget_value
*free_list
;
122 #ifdef HAVE_GTK_FILE_BOTH
123 extern int use_old_gtk_file_dialog
;
126 extern widget_value
*malloc_widget_value
P_ ((void));
127 extern void free_widget_value
P_ ((widget_value
*));
129 extern int xg_uses_old_file_dialog
P_ ((void));
131 extern char *xg_get_file_name
P_ ((FRAME_PTR f
,
133 char *default_filename
,
137 extern char *xg_get_font_name
P_ ((FRAME_PTR f
, char *));
139 extern GtkWidget
*xg_create_widget
P_ ((char *type
,
144 GCallback deactivate_cb
,
145 GCallback hightlight_cb
));
147 extern void xg_modify_menubar_widgets
P_ ((GtkWidget
*menubar
,
152 GCallback deactivate_cb
,
153 GCallback hightlight_cb
));
155 extern int xg_update_frame_menubar
P_ ((FRAME_PTR f
));
157 extern int xg_event_is_for_menubar
P_ ((FRAME_PTR f
, XEvent
*event
));
159 extern int xg_have_tear_offs
P_ ((void));
161 extern int xg_get_scroll_id_for_window
P_ ((Display
*dpy
, Window wid
));
163 extern void xg_create_scroll_bar
P_ ((FRAME_PTR f
,
164 struct scroll_bar
*bar
,
165 GCallback scroll_callback
,
166 GCallback end_callback
,
167 char *scroll_bar_name
));
168 extern void xg_show_scroll_bar
P_ ((int scrollbar_id
));
169 extern void xg_remove_scroll_bar
P_ ((FRAME_PTR f
, int scrollbar_id
));
171 extern void xg_update_scrollbar_pos
P_ ((FRAME_PTR f
,
178 extern void xg_set_toolkit_scroll_bar_thumb
P_ ((struct scroll_bar
*bar
,
182 extern int xg_event_is_for_scrollbar
P_ ((FRAME_PTR f
, XEvent
*event
));
184 extern void update_frame_tool_bar
P_ ((FRAME_PTR f
));
185 extern void free_frame_tool_bar
P_ ((FRAME_PTR f
));
187 extern void xg_frame_resized
P_ ((FRAME_PTR f
,
190 extern void xg_frame_set_char_size
P_ ((FRAME_PTR f
, int cols
, int rows
));
191 extern GtkWidget
* xg_win_to_widget
P_ ((Display
*dpy
, Window wdesc
));
193 extern int xg_display_open
P_ ((char *display_name
, Display
**dpy
));
194 extern void xg_display_close
P_ ((Display
*dpy
));
195 extern GdkCursor
* xg_create_default_cursor
P_ ((Display
*dpy
));
197 extern int xg_create_frame_widgets
P_ ((FRAME_PTR f
));
198 extern void x_wm_set_size_hint
P_ ((FRAME_PTR f
,
201 extern void xg_set_background_color
P_ ((FRAME_PTR f
, unsigned long bg
));
203 extern void xg_set_frame_icon
P_ ((FRAME_PTR f
,
207 /* Mark all callback data that are Lisp_object:s during GC. */
208 extern void xg_mark_data
P_ ((void));
210 /* Initialize GTK specific parts. */
211 extern void xg_initialize
P_ ((void));
213 /* Setting scrollbar values invokes the callback. Use this variable
214 to indicate that the callback should do nothing. */
215 extern int xg_ignore_gtk_scrollbar
;
218 #endif /* GTKUTIL_H */
220 /* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72
221 (do not change this comment) */