1 /*
2  *  Copyright (c) 2007 Jean-François Wauthy (pollux@xfce.org)
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU Library General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18 
19 #ifndef __XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG_H__
20 #define __XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG_H__
21 
22 #ifdef	HAVE_CONFIG_H
23 #include <config.h>
24 #endif /* !HAVE_CONFIG_H */
25 
26 #include <gtk/gtk.h>
27 #include <libxfce4ui/libxfce4ui.h>
28 
29 #include <libisofs.h>
30 #include "xfburn-burn-data-composition-base-dialog.h"
31 
32 G_BEGIN_DECLS
33 
34 #define XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG         (xfburn_burn_data_dvd_composition_dialog_get_type ())
35 #define XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG, XfburnBurnDataDvdCompositionDialog))
36 #define XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG, XfburnBurnDataDvdCompositionDialogClass))
37 #define XFBURN_IS_BURN_DATA_DVD_COMPOSITION_DIALOG(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG))
38 #define XFBURN_IS_BURN_DATA_DVD_COMPOSITION_DIALOG_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG))
39 #define XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XFBURN_TYPE_BURN_DATA_DVD_COMPOSITION_DIALOG, XfburnBurnDataDvdCompositionDialogClass))
40 
41 typedef struct
42 {
43   XfburnBurnDataCompositionBaseDialog parent;
44 } XfburnBurnDataDvdCompositionDialog;
45 
46 typedef struct
47 {
48   XfburnBurnDataCompositionBaseDialogClass parent_class;
49 } XfburnBurnDataDvdCompositionDialogClass;
50 
51 GType xfburn_burn_data_dvd_composition_dialog_get_type (void);
52 
53 GtkWidget *xfburn_burn_data_dvd_composition_dialog_new (IsoImage *image);
54 
55 G_END_DECLS
56 #endif /* XFBURN_BURN_DATA_DVD_COMPOSITION_DIALOG_H */
57