1 /*
2  *  Copyright (c) 2005-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_COMPOSITION_BASE_DIALOG_H__
20 #define __XFBURN_BURN_DATA_COMPOSITION_BASE_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 
31 G_BEGIN_DECLS
32 
33 #define XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG         (xfburn_burn_data_composition_base_dialog_get_type ())
34 #define XFBURN_BURN_DATA_COMPOSITION_BASE_DIALOG(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG, XfburnBurnDataCompositionBaseDialog))
35 #define XFBURN_BURN_DATA_COMPOSITION_BASE_DIALOG_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG, XfburnBurnDataCompositionBaseDialogClass))
36 #define XFBURN_IS_BURN_DATA_COMPOSITION_BASE_DIALOG(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG))
37 #define XFBURN_IS_BURN_DATA_COMPOSITION_BASE_DIALOG_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG))
38 #define XFBURN_BURN_DATA_COMPOSITION_BASE_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XFBURN_TYPE_BURN_DATA_COMPOSITION_BASE_DIALOG, XfburnBurnDataCompositionBaseDialogClass))
39 
40 enum {
41   XFBURN_BURN_DATA_COMPOSITION_DIALOG_CANCEL = -1,
42   XFBURN_BURN_DATA_COMPOSITION_DIALOG_BURN,
43   XFBURN_BURN_DATA_COMPOSITION_DIALOG_BLANK,
44 };
45 
46 typedef struct
47 {
48   XfceTitledDialog parent;
49 } XfburnBurnDataCompositionBaseDialog;
50 
51 typedef struct
52 {
53   XfceTitledDialogClass parent_class;
54 } XfburnBurnDataCompositionBaseDialogClass;
55 
56 GType xfburn_burn_data_composition_base_dialog_get_type (void);
57 
58 GtkWidget *xfburn_burn_data_composition_base_dialog_new (IsoImage *image);
59 
60 G_END_DECLS
61 #endif /* XFBURN_BURN_DATA_COMPOSITION_BASE_DIALOG_H */
62