/* * (GLABELS) Label and Business Card Creation program for GNOME * * merge-properties-dialog.h: document merge properties dialog module header file * * Copyright (C) 2002 Jim Evins . * * This program 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 program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __MERGE_PROPERTIES_DIALOG_H__ #define __MERGE_PROPERTIES_DIALOG_H__ #include #include "hig.h" #include "view.h" G_BEGIN_DECLS #define GL_TYPE_MERGE_PROPERTIES_DIALOG (gl_merge_properties_dialog_get_type ()) #define GL_MERGE_PROPERTIES_DIALOG(obj) (GTK_CHECK_CAST ((obj), GL_TYPE_MERGE_PROPERTIES_DIALOG, glMergePropertiesDialog)) #define GL_MERGE_PROPERTIES_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GL_TYPE_MERGE_PROPERTIES_DIALOG, glMergePropertiesDialogClass)) #define GL_IS_MERGE_PROPERTIES_DIALOG(obj) (GTK_CHECK_TYPE ((obj), GL_TYPE_MERGE_PROPERTIES_DIALOG)) #define GL_IS_MERGE_PROPERTIES_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GL_TYPE_MERGE_PROPERTIES_DIALOG)) #define GL_MERGE_PROPERTIES_DIALOG_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GL_TYPE_MERGE_PROPERTIES_DIALOG, glMergePropertiesDialogClass)) typedef struct _glMergePropertiesDialog glMergePropertiesDialog; typedef struct _glMergePropertiesDialogClass glMergePropertiesDialogClass; typedef struct _glMergePropertiesDialogPrivate glMergePropertiesDialogPrivate; struct _glMergePropertiesDialog { glHigDialog parent_instance; glMergePropertiesDialogPrivate *private; }; struct _glMergePropertiesDialogClass { glHigDialogClass parent_class; }; GType gl_merge_properties_dialog_get_type (void) G_GNUC_CONST; GtkWidget *gl_merge_properties_dialog_new (glView *view); G_END_DECLS #endif