~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/brasero-disc-copy-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-11-18 11:30:50 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20081118113050-yhrskmatlel0gzfm
Tags: upstream-0.8.3
ImportĀ upstreamĀ versionĀ 0.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include <gtk/gtkdialog.h>
34
34
 
35
 
#include "burn-session.h"
 
35
#include "brasero-burn-options.h"
36
36
#include "burn-drive.h"
37
37
 
38
38
G_BEGIN_DECLS
45
45
#define BRASERO_DISC_COPY_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), BRASERO_TYPE_DISC_COPY_DIALOG, BraseroDiscCopyDialogClass))
46
46
 
47
47
typedef struct {
48
 
        GtkDialog parent;
 
48
        BraseroBurnOptions parent;
49
49
} BraseroDiscCopyDialog;
50
50
 
51
51
typedef struct {
52
 
        GtkDialogClass parent_class;
 
52
        BraseroBurnOptionsClass parent_class;
53
53
} BraseroDiscCopyDialogClass;
54
54
 
55
55
GType brasero_disc_copy_dialog_get_type ();
57
57
GtkWidget *
58
58
brasero_disc_copy_dialog_new ();
59
59
 
60
 
BraseroBurnSession *
61
 
brasero_disc_copy_dialog_get_session (BraseroDiscCopyDialog *self);
62
 
 
63
60
gboolean
64
61
brasero_disc_copy_dialog_set_drive (BraseroDiscCopyDialog *self,
65
62
                                    BraseroDrive *drive);