source: trunk/third/evolution/e-util/e-gtk-utils.h @ 16787

Revision 16787, 1.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16786, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2/* e-gtk-utils.c
3 *
4 * Copyright (C) 2000  Ximian, Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 *
20 * Author: Ettore Perazzoli
21 */
22
23#ifndef E_GTK_UTILS_H
24#define E_GTK_UTILS_H
25
26#include <gtk/gtkobject.h>
27#include <gtk/gtkradiobutton.h>
28
29void  e_gtk_signal_connect_full_while_alive  (GtkObject          *object,
30                                              const char         *name,
31                                              GtkSignalFunc       func,
32                                              GtkCallbackMarshal  marshal,
33                                              void               *data,
34                                              GtkDestroyNotify    destroy_func,
35                                              gboolean            object_signal,
36                                              gboolean            after,
37                                              GtkObject          *alive_object);
38
39void  e_make_widget_backing_stored  (GtkWidget *widget);
40
41#endif
Note: See TracBrowser for help on using the repository browser.