/* * nautilus-image-resize-dialog.h * * Copyright (C) 2004-2005 Jürg Billeter * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * Author: Jürg Billeter * */ #ifndef NAUTILUS_IMAGE_RESIZER_H #define NAUTILUS_IMAGE_RESIZER_H #include G_BEGIN_DECLS #define NAUTILUS_TYPE_IMAGE_RESIZER (nautilus_image_resizer_get_type ()) #define NAUTILUS_IMAGE_RESIZER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NAUTILUS_TYPE_IMAGE_RESIZER, NautilusImageResizer)) #define NAUTILUS_IMAGE_RESIZER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NAUTILUS_TYPE_IMAGE_RESIZER, NautilusImageResizerClass)) #define NAUTILUS_IS_IMAGE_RESIZER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NAUTILUS_TYPE_IMAGE_RESIZER)) #define NAUTILUS_IS_IMAGE_RESIZER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NAUTILUS_TYPE_IMAGE_RESIZER)) #define NAUTILUS_IMAGE_RESIZER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NAUTILUS_TYPE_IMAGE_RESIZER, NautilusImageResizerClass)) typedef struct _NautilusImageResizer NautilusImageResizer; typedef struct _NautilusImageResizerClass NautilusImageResizerClass; struct _NautilusImageResizer { GObject parent; }; struct _NautilusImageResizerClass { GObjectClass parent_class; /* Add Signal Functions Here */ }; GType nautilus_image_resizer_get_type (); NautilusImageResizer *nautilus_image_resizer_new (GList *files); void nautilus_image_resizer_show_dialog (NautilusImageResizer *dialog); G_END_DECLS #endif /* NAUTILUS_IMAGE_RESIZER_H */