2008-04-30 Cosimo Cecchi <cosimoc@gnome.org>
[nautilus.git] / src / nautilus-image-properties-page.h
blobded7d28300305a75a5a737dfc937be6d5b335127
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
3 /*
4 * Copyright (C) 2004 Red Hat, Inc
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Author: Alexander Larsson <alexl@redhat.com>
24 #ifndef NAUTILUS_IMAGE_PROPERTIES_PAGE_H
25 #define NAUTILUS_IMAGE_PROPERTIES_PAGE_H
27 #include <gtk/gtkvbox.h>
29 #define NAUTILUS_TYPE_IMAGE_PROPERTIES_PAGE (nautilus_image_properties_page_get_type ())
30 #define NAUTILUS_IMAGE_PROPERTIES_PAGE(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_IMAGE_PROPERTIES_PAGE, NautilusImagePropertiesPage))
31 #define NAUTILUS_IMAGE_PROPERTIES_PAGE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_IMAGE_PROPERTIES_PAGE, NautilusImagePropertiesPageClass))
32 #define NAUTILUS_IS_IMAGE_PROPERTIES_PAGE(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_IMAGE_PROPERTIES_PAGE))
33 #define NAUTILUS_IS_IMAGE_PROPERTIES_PAGE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_IMAGE_PROPERTIES_PAGE))
35 typedef struct NautilusImagePropertiesPageDetails NautilusImagePropertiesPageDetails;
37 typedef struct {
38 GtkVBox parent;
39 NautilusImagePropertiesPageDetails *details;
40 } NautilusImagePropertiesPage;
42 typedef struct {
43 GtkVBoxClass parent;
44 } NautilusImagePropertiesPageClass;
46 GType nautilus_image_properties_page_get_type (void);
47 void nautilus_image_properties_page_register (void);
49 #endif /* NAUTILUS_IMAGE_PROPERTIES_PAGE_H */