*** empty log message ***
[bpt/emacs.git] / src / gtkutil.h
CommitLineData
f392e843 1/* Definitions and headers for GTK widgets.
0b5538bd 2 Copyright (C) 2003, 2004, 2005 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
135extern char *xg_get_file_name P_ ((FRAME_PTR f,
136 char *prompt,
137 char *default_filename,
f9d64bb3
JD
138 int mustmatch_p,
139 int only_dir_p));
f392e843
JD
140
141extern 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
149extern 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
157extern int xg_update_frame_menubar P_ ((FRAME_PTR f));
158
da18b5ac 159extern int xg_have_tear_offs P_ ((void));
f392e843 160
810f2256 161extern int xg_get_scroll_id_for_window P_ ((Display *dpy, Window wid));
257f40f2 162
f392e843
JD
163extern void xg_create_scroll_bar P_ ((FRAME_PTR f,
164 struct scroll_bar *bar,
165 GCallback scroll_callback,
166 char *scroll_bar_name));
167extern void xg_show_scroll_bar P_ ((int scrollbar_id));
168extern void xg_remove_scroll_bar P_ ((FRAME_PTR f, int scrollbar_id));
169
170extern void xg_update_scrollbar_pos P_ ((FRAME_PTR f,
171 int scrollbar_id,
172 int top,
173 int left,
174 int width,
1ca69aa4 175 int height));
f392e843
JD
176
177extern void xg_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *bar,
178 int portion,
179 int position,
180 int whole));
181
182
183extern void update_frame_tool_bar P_ ((FRAME_PTR f));
184extern void free_frame_tool_bar P_ ((FRAME_PTR f));
185
186extern void xg_resize_widgets P_ ((FRAME_PTR f,
187 int pixelwidth,
188 int pixelheight));
189extern void xg_frame_set_char_size P_ ((FRAME_PTR f, int cols, int rows));
810f2256
JD
190extern GtkWidget * xg_win_to_widget P_ ((Display *dpy, Window wdesc));
191
192extern int xg_display_open P_ ((char *display_name, Display **dpy));
193extern void xg_display_close P_ ((Display *dpy));
194extern GdkCursor * xg_create_default_cursor P_ ((Display *dpy));
195
f392e843
JD
196extern int xg_create_frame_widgets P_ ((FRAME_PTR f));
197extern void x_wm_set_size_hint P_ ((FRAME_PTR f,
198 long flags,
199 int user_position));
200extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg));
201
202/* Mark all callback data that are Lisp_object:s during GC. */
1fcfb866 203extern void xg_mark_data P_ ((void));
f392e843
JD
204
205/* Initialize GTK specific parts. */
1fcfb866 206extern void xg_initialize P_ ((void));
f392e843
JD
207
208/* Setting scrollbar values invokes the callback. Use this variable
209 to indicate that the callback should do nothing. */
210extern int xg_ignore_gtk_scrollbar;
211
f392e843
JD
212#endif /* USE_GTK */
213#endif /* GTKUTIL_H */
ab5796a9
MB
214
215/* arch-tag: 0757f3dc-00c7-4cee-9e4c-282cf1d34c72
216 (do not change this comment) */