Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gimpcellrenderertoggle.h
Go to the documentation of this file.
1 /* LIBGIMP - The GIMP Library
2  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
3  *
4  * gimpcellrenderertoggle.h
5  * Copyright (C) 2003-2004 Sven Neumann <sven@gimp.org>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library 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 GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef __GIMP_CELL_RENDERER_TOGGLE_H__
24 #define __GIMP_CELL_RENDERER_TOGGLE_H__
25 
26 #include <gtk/gtk.h>
27 #include <glib-object.h>
28 
29 G_BEGIN_DECLS
30 
31 #define GIMP_TYPE_CELL_RENDERER_TOGGLE (gimp_cell_renderer_toggle_get_type ())
32 #define GIMP_CELL_RENDERER_TOGGLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CELL_RENDERER_TOGGLE, GimpCellRendererToggle))
33 #define GIMP_CELL_RENDERER_TOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CELL_RENDERER_TOGGLE, GimpCellRendererToggleClass))
34 #define GIMP_IS_CELL_RENDERER_TOGGLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CELL_RENDERER_TOGGLE))
35 #define GIMP_IS_CELL_RENDERER_TOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CELL_RENDERER_TOGGLE))
36 #define GIMP_CELL_RENDERER_TOGGLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CELL_RENDERER_TOGGLE, GimpCellRendererToggleClass))
37 
40 
42 {
43  GtkCellRendererToggle parent_instance;
44 
45  gchar *stock_id;
46  GtkIconSize stock_size;
47  GdkPixbuf *pixbuf;
48 };
49 
51 {
52  GtkCellRendererToggleClass parent_class;
53 
55  const gchar *path,
56  GdkModifierType state);
57 
58  /* Padding for future expansion */
59  void (* _gimp_reserved1) (void);
60  void (* _gimp_reserved2) (void);
61  void (* _gimp_reserved3) (void);
62  void (* _gimp_reserved4) (void);
63 };
64 
65 
66 GType gimp_cell_renderer_toggle_get_type (void) G_GNUC_CONST;
67 
68 GtkCellRenderer * gimp_cell_renderer_toggle_new (const gchar *stock_id);
69 
71  const gchar *path,
72  GdkModifierType state);
73 
74 
75 G_END_DECLS
76 
77 #endif /* __GIMP_CELL_RENDERER_TOGGLE_H__ */