~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/brasero-drive-info.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:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8-*- */
2
 
/*
3
 
 * brasero
4
 
 * Copyright (C) PhiPhilippe Rouquier 2007-2008nfire-app@wanadoo.fr>
5
 
 * 
6
 
 * Brasero is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; either version 2 of the License, or
9
 
 * (at your option) any later version. * 
10
 
 * brasero is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 
 * See the GNU General Public License for more details.
14
 
 * 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with brasero.  If not, write to:
17
 
 *      The Free Software Foundation, Inc.,
18
 
 *      51 Franklin Street, Fifth Floor
19
 
 *      Boston, MA  02110-1301, USA.
20
 
 */
21
 
 
22
 
#ifndef _BRASERO_DRIVE_INFO_H_
23
 
#define _BRASERO_DRIVE_INFO_H_
24
 
 
25
 
#include <glib-object.h>
26
 
#include <gtk/gtkhbox.h>
27
 
 
28
 
#include "burn-medium.h"
29
 
 
30
 
G_BEGIN_DECLS
31
 
 
32
 
#define BRASERO_TYPE_DRIVE_INFO                 (brasero_drive_info_get_type ())
33
 
#define BRASERO_DRIVE_INFO(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), BRASERO_TYPE_DRIVE_INFO, BraseroDriveInfo))
34
 
#define BRASERO_DRIVE_INFO_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), BRASERO_TYPE_DRIVE_INFO, BraseroDriveInfoClass))
35
 
#define BRASERO_IS_DRIVE_INFO(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BRASERO_TYPE_DRIVE_INFO))
36
 
#define BRASERO_IS_DRIVE_INFO_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), BRASERO_TYPE_DRIVE_INFO))
37
 
#define BRASERO_DRIVE_INFO_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), BRASERO_TYPE_DRIVE_INFO, BraseroDriveInfoClass))
38
 
 
39
 
typedef struct _BraseroDriveInfoClass BraseroDriveInfoClass;
40
 
typedef struct _BraseroDriveInfo BraseroDriveInfo;
41
 
 
42
 
struct _BraseroDriveInfoClass
43
 
{
44
 
        GtkHBoxClass parent_class;
45
 
};
46
 
 
47
 
struct _BraseroDriveInfo
48
 
{
49
 
        GtkHBox parent_instance;
50
 
};
51
 
 
52
 
GType brasero_drive_info_get_type (void) G_GNUC_CONST;
53
 
 
54
 
GtkWidget *
55
 
brasero_drive_info_new ();
56
 
 
57
 
void
58
 
brasero_drive_info_set_medium (BraseroDriveInfo *info,
59
 
                               BraseroMedium *medium);
60
 
 
61
 
void
62
 
brasero_drive_info_set_image_path (BraseroDriveInfo *info,
63
 
                                   const gchar *path);
64
 
 
65
 
void
66
 
brasero_drive_info_set_same_src_dest (BraseroDriveInfo *info,
67
 
                                      gboolean same_src_dest);
68
 
 
69
 
G_END_DECLS
70
 
 
71
 
#endif /* _BRASERO_DRIVE_INFO_H_ */