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"
41 /* Button types in menus. */
49 /* This is a list node in a generic list implementation. */
50 typedef struct xg_list_node_
52 struct xg_list_node_
*prev
;
53 struct xg_list_node_
*next
;
56 /* This structure is the callback data that is shared for menu items.
57 We need to keep it separate from the frame structure due to
58 detachable menus. The data in the frame structure is only valid while
59 the menu is popped up. This structure is kept around as long as
61 typedef struct xg_menu_cb_data_
66 Lisp_Object menu_bar_vector
;
67 int menu_bar_items_used
;
68 GCallback highlight_cb
;
72 /* This structure holds callback information for each individual menu item. */
73 typedef struct xg_menu_item_cb_data_
80 xg_menu_cb_data
*cl_data
;
82 } xg_menu_item_cb_data
;
85 /* Used to specify menus and dialogs.
86 This is an adaption from lwlib for Gtk so we can use more of the same
87 code as lwlib in xmenu.c. */
88 typedef struct _widget_value
93 /* value (meaning depend on widget type) */
95 /* keyboard equivalent. no implications for XtTranslations */
98 /* Help string or nil if none.
99 GC finds this string through the frame's menu_bar_vector
100 or through menu_items. */
102 /* true if enabled */
104 /* true if selected */
106 /* The type of a button. */
107 enum button_type button_type
;
108 /* Contents of the sub-widgets, also selected slot for checkbox */
109 struct _widget_value
*contents
;
110 /* data passed to callback */
112 /* next one in the list */
113 struct _widget_value
*next
;
115 /* we resource the widget_value structures; this points to the next
116 one on the free list if this one has been deallocated.
118 struct _widget_value
*free_list
;
121 #ifdef HAVE_GTK_FILE_SELECTION_NEW
122 extern int use_old_gtk_file_dialog
;
125 extern widget_value
*malloc_widget_value (void);
126 extern void free_widget_value (widget_value
*);
128 extern int xg_uses_old_file_dialog (void);
130 extern char *xg_get_file_name (FRAME_PTR f
,
132 char *default_filename
,
136 extern char *xg_get_font_name (FRAME_PTR f
, char *);
138 extern GtkWidget
*xg_create_widget (char *type
,
143 GCallback deactivate_cb
,
144 GCallback hightlight_cb
);
146 extern void xg_modify_menubar_widgets (GtkWidget
*menubar
,
151 GCallback deactivate_cb
,
152 GCallback hightlight_cb
);
154 extern int xg_update_frame_menubar (FRAME_PTR f
);
156 extern int xg_event_is_for_menubar (FRAME_PTR f
, XEvent
*event
);
158 extern int xg_have_tear_offs (void);
160 extern int xg_get_scroll_id_for_window (Display
*dpy
, Window wid
);
162 extern void xg_create_scroll_bar (FRAME_PTR f
,
163 struct scroll_bar
*bar
,
164 GCallback scroll_callback
,
165 GCallback end_callback
,
166 char *scroll_bar_name
);
167 extern void xg_remove_scroll_bar (FRAME_PTR f
, int scrollbar_id
);
169 extern void xg_update_scrollbar_pos (FRAME_PTR f
,
176 extern void xg_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
,
180 extern int xg_event_is_for_scrollbar (FRAME_PTR f
, XEvent
*event
);
182 extern void update_frame_tool_bar (FRAME_PTR f
);
183 extern void free_frame_tool_bar (FRAME_PTR f
);
185 extern void xg_frame_resized (FRAME_PTR f
,
188 extern void xg_frame_set_char_size (FRAME_PTR f
, int cols
, int rows
);
189 extern GtkWidget
* xg_win_to_widget (Display
*dpy
, Window wdesc
);
191 extern void xg_display_open (char *display_name
, Display
**dpy
);
192 extern void xg_display_close (Display
*dpy
);
193 extern GdkCursor
* xg_create_default_cursor (Display
*dpy
);
195 extern int xg_create_frame_widgets (FRAME_PTR f
);
196 extern void x_wm_set_size_hint (FRAME_PTR f
,
199 extern void xg_set_background_color (FRAME_PTR f
, unsigned long bg
);
201 extern void xg_set_frame_icon (FRAME_PTR f
,
205 /* Mark all callback data that are Lisp_object:s during GC. */
206 extern void xg_mark_data (void);
208 /* Initialize GTK specific parts. */
209 extern void xg_initialize (void);
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
;
216 #endif /* GTKUTIL_H */
218 /* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72
219 (do not change this comment) */