Fixes: debbugs:17865
[bpt/emacs.git] / src / gtkutil.h
CommitLineData
f392e843 1/* Definitions and headers for GTK widgets.
95df8112 2
ba318903 3Copyright (C) 2003-2014 Free Software Foundation, Inc.
f392e843
JD
4
5This file is part of GNU Emacs.
6
b9b1cc14 7GNU Emacs is free software: you can redistribute it and/or modify
f392e843 8it under the terms of the GNU General Public License as published by
b9b1cc14
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
f392e843
JD
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
b9b1cc14 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
f392e843
JD
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"
17a2cbbd 28#include "xterm.h"
f392e843
JD
29
30/* Minimum and maximum values used for GTK scroll bars */
31
7863d625 32#define XG_SB_MIN 1
f392e843 33#define XG_SB_MAX 10000000
7863d625 34#define XG_SB_RANGE (XG_SB_MAX-XG_SB_MIN)
f392e843 35
e5f0bc9a 36/* Key for data that is valid for menus and scroll bars in a frame */
f392e843
JD
37#define XG_FRAME_DATA "emacs_frame"
38
f392e843
JD
39/* Key for data that menu items hold. */
40#define XG_ITEM_DATA "emacs_menuitem"
41
f392e843
JD
42/* This is a list node in a generic list implementation. */
43typedef struct xg_list_node_
44{
45 struct xg_list_node_ *prev;
46 struct xg_list_node_ *next;
47} xg_list_node;
48
49/* This structure is the callback data that is shared for menu items.
50 We need to keep it separate from the frame structure due to
51 detachable menus. The data in the frame structure is only valid while
52 the menu is popped up. This structure is kept around as long as
53 the menu is. */
54typedef struct xg_menu_cb_data_
55{
56 xg_list_node ptrs;
177c0ea7 57
a10c8269 58 struct frame *f;
f392e843
JD
59 Lisp_Object menu_bar_vector;
60 int menu_bar_items_used;
61 GCallback highlight_cb;
62 int ref_count;
63} xg_menu_cb_data;
64
65/* This structure holds callback information for each individual menu item. */
66typedef struct xg_menu_item_cb_data_
67{
68 xg_list_node ptrs;
69
f392e843
JD
70 gulong select_id;
71 Lisp_Object help;
72 gpointer call_data;
73 xg_menu_cb_data *cl_data;
177c0ea7 74
f392e843
JD
75} xg_menu_item_cb_data;
76
42ca4633
J
77extern struct _widget_value *malloc_widget_value (void);
78extern void free_widget_value (struct _widget_value *);
383e0970 79
18e27ea8 80extern bool xg_uses_old_file_dialog (void) ATTRIBUTE_CONST;
383e0970 81
a10c8269 82extern char *xg_get_file_name (struct frame *f,
383e0970
J
83 char *prompt,
84 char *default_filename,
18e27ea8
PE
85 bool mustmatch_p,
86 bool only_dir_p);
383e0970 87
a10c8269 88extern Lisp_Object xg_get_font (struct frame *f, const char *);
383e0970 89
675e2c69
DN
90extern GtkWidget *xg_create_widget (const char *type,
91 const char *name,
a10c8269 92 struct frame *f,
42ca4633 93 struct _widget_value *val,
383e0970
J
94 GCallback select_cb,
95 GCallback deactivate_cb,
e4769531 96 GCallback highlight_cb);
383e0970
J
97
98extern void xg_modify_menubar_widgets (GtkWidget *menubar,
a10c8269 99 struct frame *f,
42ca4633 100 struct _widget_value *val,
18e27ea8 101 bool deep_p,
383e0970
J
102 GCallback select_cb,
103 GCallback deactivate_cb,
e4769531 104 GCallback highlight_cb);
383e0970 105
a10c8269 106extern void xg_update_frame_menubar (struct frame *f);
383e0970 107
b7ad2f74 108extern bool xg_event_is_for_menubar (struct frame *, const XEvent *);
fea9cabd 109
7a1b473c 110extern bool xg_have_tear_offs (struct frame *f);
383e0970 111
0eb0f318 112extern ptrdiff_t xg_get_scroll_id_for_window (Display *dpy, Window wid);
383e0970 113
a10c8269 114extern void xg_create_scroll_bar (struct frame *f,
383e0970
J
115 struct scroll_bar *bar,
116 GCallback scroll_callback,
117 GCallback end_callback,
675e2c69 118 const char *scroll_bar_name);
a10c8269 119extern void xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id);
383e0970 120
a10c8269 121extern void xg_update_scrollbar_pos (struct frame *f,
0eb0f318 122 ptrdiff_t scrollbar_id,
383e0970
J
123 int top,
124 int left,
125 int width,
126 int height);
127
128extern void xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
129 int portion,
130 int position,
131 int whole);
b7ad2f74 132extern bool xg_event_is_for_scrollbar (struct frame *, const XEvent *);
c195f2de 133extern int xg_get_default_scrollbar_width (void);
383e0970 134
a10c8269
DA
135extern void update_frame_tool_bar (struct frame *f);
136extern void free_frame_tool_bar (struct frame *f);
137extern void xg_change_toolbar_position (struct frame *f, Lisp_Object pos);
383e0970 138
a10c8269 139extern void xg_frame_resized (struct frame *f,
383e0970
J
140 int pixelwidth,
141 int pixelheight);
7303a0ae 142extern void xg_frame_set_char_size (struct frame *f, int width, int height);
383e0970
J
143extern GtkWidget * xg_win_to_widget (Display *dpy, Window wdesc);
144
145extern void xg_display_open (char *display_name, Display **dpy);
146extern void xg_display_close (Display *dpy);
147extern GdkCursor * xg_create_default_cursor (Display *dpy);
148
a10c8269
DA
149extern bool xg_create_frame_widgets (struct frame *f);
150extern void xg_free_frame_widgets (struct frame *f);
151extern void xg_set_background_color (struct frame *f, unsigned long bg);
18e27ea8
PE
152extern bool xg_check_special_colors (struct frame *f,
153 const char *color_name,
154 XColor *color);
383e0970 155
a10c8269 156extern void xg_set_frame_icon (struct frame *f,
383e0970
J
157 Pixmap icon_pixmap,
158 Pixmap icon_mask);
5d91377a 159
a10c8269 160extern bool xg_prepare_tooltip (struct frame *f,
18e27ea8
PE
161 Lisp_Object string,
162 int *width,
163 int *height);
a10c8269
DA
164extern void xg_show_tooltip (struct frame *f, int root_x, int root_y);
165extern bool xg_hide_tooltip (struct frame *f);
aa1859f5
J
166
167
f392e843 168/* Mark all callback data that are Lisp_object:s during GC. */
383e0970 169extern void xg_mark_data (void);
f392e843
JD
170
171/* Initialize GTK specific parts. */
383e0970 172extern void xg_initialize (void);
f392e843
JD
173
174/* Setting scrollbar values invokes the callback. Use this variable
175 to indicate that the callback should do nothing. */
18e27ea8 176extern bool xg_ignore_gtk_scrollbar;
f392e843 177
f392e843
JD
178#endif /* USE_GTK */
179#endif /* GTKUTIL_H */