Update years in copyright notice; nfc.
[bpt/emacs.git] / src / gtkutil.h
CommitLineData
f392e843 1/* Definitions and headers for GTK widgets.
aaef169d 2 Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
f392e843
JD
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
18the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19Boston, MA 02110-1301, USA. */
f392e843
JD
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
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
JD
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. */
47enum 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. */
55typedef 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. */
66typedef struct xg_menu_cb_data_
67{
68 xg_list_node ptrs;
177c0ea7 69
f392e843
JD
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. */
78typedef struct xg_menu_item_cb_data_
79{
80 xg_list_node ptrs;
81
82 gulong highlight_id;
83 gulong unhighlight_id;
84 gulong select_id;
85 Lisp_Object help;
86 gpointer call_data;
87 xg_menu_cb_data *cl_data;
177c0ea7 88
f392e843
JD
89} xg_menu_item_cb_data;
90
91
92/* Used to specify menus and dialogs.
93 This is an adaption from lwlib for Gtk so we can use more of the same
94 code as lwlib in xmenu.c. */
95typedef struct _widget_value
96{
97 /* name of widget */
2bf436c3 98 Lisp_Object lname;
f392e843
JD
99 char *name;
100 /* value (meaning depend on widget type) */
101 char *value;
177c0ea7 102 /* keyboard equivalent. no implications for XtTranslations */
2bf436c3 103 Lisp_Object lkey;
f392e843
JD
104 char *key;
105 /* Help string or nil if none.
106 GC finds this string through the frame's menu_bar_vector
107 or through menu_items. */
108 Lisp_Object help;
109 /* true if enabled */
110 gint enabled;
111 /* true if selected */
112 gint selected;
113 /* The type of a button. */
114 enum button_type button_type;
115 /* Contents of the sub-widgets, also selected slot for checkbox */
116 struct _widget_value *contents;
117 /* data passed to callback */
118 gpointer call_data;
119 /* next one in the list */
120 struct _widget_value *next;
121
122 /* we resource the widget_value structures; this points to the next
123 one on the free list if this one has been deallocated.
124 */
125 struct _widget_value *free_list;
126} widget_value;
127
0a4f23f3
JD
128#ifdef HAVE_GTK_FILE_BOTH
129extern int use_old_gtk_file_dialog;
130#endif
131
1fcfb866 132extern widget_value *malloc_widget_value P_ ((void));
f392e843
JD
133extern void free_widget_value P_ ((widget_value *));
134
90f2e16b
JD
135extern int xg_uses_old_file_dialog P_ ((void));
136
f392e843
JD
137extern char *xg_get_file_name P_ ((FRAME_PTR f,
138 char *prompt,
139 char *default_filename,
f9d64bb3
JD
140 int mustmatch_p,
141 int only_dir_p));
f392e843
JD
142
143extern GtkWidget *xg_create_widget P_ ((char *type,
144 char *name,
145 FRAME_PTR f,
146 widget_value *val,
147 GCallback select_cb,
148 GCallback deactivate_cb,
149 GCallback hightlight_cb));
150
151extern void xg_modify_menubar_widgets P_ ((GtkWidget *menubar,
152 FRAME_PTR f,
153 widget_value *val,
154 int deep_p,
155 GCallback select_cb,
156 GCallback deactivate_cb,
157 GCallback hightlight_cb));
158
159extern int xg_update_frame_menubar P_ ((FRAME_PTR f));
160
da18b5ac 161extern int xg_have_tear_offs P_ ((void));
f392e843 162
810f2256 163extern int xg_get_scroll_id_for_window P_ ((Display *dpy, Window wid));
257f40f2 164
f392e843
JD
165extern void xg_create_scroll_bar P_ ((FRAME_PTR f,
166 struct scroll_bar *bar,
167 GCallback scroll_callback,
168 char *scroll_bar_name));
169extern void xg_show_scroll_bar P_ ((int scrollbar_id));
170extern void xg_remove_scroll_bar P_ ((FRAME_PTR f, int scrollbar_id));
171
172extern void xg_update_scrollbar_pos P_ ((FRAME_PTR f,
173 int scrollbar_id,
174 int top,
175 int left,
176 int width,
1ca69aa4 177 int height));
f392e843
JD
178
179extern void xg_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *bar,
180 int portion,
181 int position,
182 int whole));
183
184
185extern void update_frame_tool_bar P_ ((FRAME_PTR f));
186extern void free_frame_tool_bar P_ ((FRAME_PTR f));
187
188extern void xg_resize_widgets P_ ((FRAME_PTR f,
189 int pixelwidth,
190 int pixelheight));
191extern void xg_frame_set_char_size P_ ((FRAME_PTR f, int cols, int rows));
810f2256
JD
192extern GtkWidget * xg_win_to_widget P_ ((Display *dpy, Window wdesc));
193
194extern int xg_display_open P_ ((char *display_name, Display **dpy));
195extern void xg_display_close P_ ((Display *dpy));
196extern GdkCursor * xg_create_default_cursor P_ ((Display *dpy));
197
f392e843
JD
198extern int xg_create_frame_widgets P_ ((FRAME_PTR f));
199extern void x_wm_set_size_hint P_ ((FRAME_PTR f,
200 long flags,
201 int user_position));
202extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg));
203
5dec4320
JD
204extern void xg_set_frame_icon P_ ((FRAME_PTR f,
205 Pixmap icon_pixmap,
206 Pixmap icon_mask));
5d91377a 207
f392e843 208/* Mark all callback data that are Lisp_object:s during GC. */
1fcfb866 209extern void xg_mark_data P_ ((void));
f392e843
JD
210
211/* Initialize GTK specific parts. */
1fcfb866 212extern void xg_initialize P_ ((void));
f392e843
JD
213
214/* Setting scrollbar values invokes the callback. Use this variable
215 to indicate that the callback should do nothing. */
216extern int xg_ignore_gtk_scrollbar;
217
f392e843
JD
218#endif /* USE_GTK */
219#endif /* GTKUTIL_H */
ab5796a9
MB
220
221/* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72
222 (do not change this comment) */