~ubuntu-branches/debian/wheezy/brasero/wheezy

« back to all changes in this revision

Viewing changes to src/brasero-drive-selection.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Pedro Fragoso, Luca Bruno, Josselin Mouette, Emilio Pozuelo Monfort
  • Date: 2009-06-24 18:59:46 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624185946-iyxkgf3gjptir5y3
Tags: 2.26.2-1
[ Pedro Fragoso ]
* Add myself to Maintainer field
  - Thanks Ondřej Surý
* New upstream version (Closes: #528945)
  - Split package into brasero, libbrasero-media0 and libbrasero-dev
  - Add Replaces to libbrasero-media0
  - Bump libgtk to 2.14.0
  - Remove libnotify Build-dep
  - Add Build-dep libnautilus-extension-dev (>= 2.22.2)
    and install it.
  - Add Build-dep to libsm-dev
  - Add Build-dep on intltool
* Install omf files to prevent crash on Help
* Move gstreamer0.10-plugins-bad to Suggests, and add
  dvdauthor and vcdimager
* Recommends gvfs (Closes: #491827)
* Pass --disable-scrollkeeper in DEB_CONFIGURE_EXTRA_FLAGS
* debian/patches/007-fix-gnome-doc-utils-path.patch:
  - Removed, not needed anymore
* debian/patches/008-fix-volume-identifier-crash.patch:
  - Removed, merged upstream
* debian/patches/011_nautilus_menu_move.patch:
 - Move CD/DVD Creator Menu to Acessories, taken from Ubuntu

[ Luca Bruno ]
* debian/control.in:
  - Add Build-Depend gtk-doc-tools 1.9.
* debian/patches/006-fix-libdvdcss.patch:
  - Removed as applied upstream.

[ Josselin Mouette ]
* New upstream release.
* Update build-dependencies.
* Move the translations and data to a new brasero-common package.
* Rewrite the descriptions.
* Add -dev depends to the development package.
* Remove inappropriate recommends in the library package.
* Let’s not forget dvd+rw-tools so that we can write DVDs too.
* Rework dependencies accordingly.
* Put the nautilus extension in brasero.
* Conflict against nautilus-cd-burner to avoid having two burning 
  extensions.
* Include clean-la.mk and gnome-version.mk; build-depend on 
  gnome-pkg-tools 0.7.
* Don’t run dh_makeshlibs on brasero and libbrasero-plugins.
* 011_nautilus_menu_move.patch: add NoDisplay=true, this icon is 
  duplicating existing functionality (brasero icon in sound&video 
  menu, and nautilus autorun).
* Update list of copyright holders.

[ Emilio Pozuelo Monfort ]
* debian/copyright: updated.

[ Josselin Mouette ]
* copyright: improve indentation, and point to versioned LGPL.
* 090_relibtoolize.patch: add a relibtoolization patch to avoid the 
  rpath crap.

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) Philippe Rouquier 2007-2008 <bonfire-app@wanadoo.fr>
5
 
 * 
6
 
 * brasero is free software.
7
 
 * 
8
 
 * You may redistribute it and/or modify it under the terms of the
9
 
 * GNU General Public License, as published by the Free Software
10
 
 * Foundation; either version 2 of the License, or (at your option)
11
 
 * any later version.
12
 
 * 
13
 
 * brasero is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
 
 * See the GNU General Public License for more details.
17
 
 * 
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with brasero.  If not, write to:
20
 
 *      The Free Software Foundation, Inc.,
21
 
 *      51 Franklin Street, Fifth Floor
22
 
 *      Boston, MA  02110-1301, USA.
23
 
 */
24
 
 
25
 
#ifndef _BRASERO_DRIVE_SELECTION_H_
26
 
#define _BRASERO_DRIVE_SELECTION_H_
27
 
 
28
 
#include <glib-object.h>
29
 
#include <gtk/gtkvbox.h>
30
 
 
31
 
#include "burn-medium-monitor.h"
32
 
#include "burn-medium.h"
33
 
#include "burn-drive.h"
34
 
 
35
 
G_BEGIN_DECLS
36
 
 
37
 
#define BRASERO_TYPE_DRIVE_SELECTION             (brasero_drive_selection_get_type ())
38
 
#define BRASERO_DRIVE_SELECTION(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), BRASERO_TYPE_DRIVE_SELECTION, BraseroDriveSelection))
39
 
#define BRASERO_DRIVE_SELECTION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), BRASERO_TYPE_DRIVE_SELECTION, BraseroDriveSelectionClass))
40
 
#define BRASERO_IS_DRIVE_SELECTION(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BRASERO_TYPE_DRIVE_SELECTION))
41
 
#define BRASERO_IS_DRIVE_SELECTION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), BRASERO_TYPE_DRIVE_SELECTION))
42
 
#define BRASERO_DRIVE_SELECTION_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), BRASERO_TYPE_DRIVE_SELECTION, BraseroDriveSelectionClass))
43
 
 
44
 
typedef struct _BraseroDriveSelectionClass BraseroDriveSelectionClass;
45
 
typedef struct _BraseroDriveSelection BraseroDriveSelection;
46
 
 
47
 
struct _BraseroDriveSelectionClass
48
 
{
49
 
        GtkVBoxClass parent_class;
50
 
 
51
 
        void    (*drive_changed)        (BraseroDriveSelection *selection,
52
 
                                         BraseroDrive *drive);
53
 
};
54
 
 
55
 
struct _BraseroDriveSelection
56
 
{
57
 
        GtkVBox parent_instance;
58
 
};
59
 
 
60
 
GType brasero_drive_selection_get_type (void) G_GNUC_CONST;
61
 
 
62
 
GtkWidget *
63
 
brasero_drive_selection_new (void);
64
 
 
65
 
void
66
 
brasero_drive_selection_lock (BraseroDriveSelection *selection,
67
 
                              gboolean locked);
68
 
 
69
 
void
70
 
brasero_drive_selection_set_drive (BraseroDriveSelection *selection,
71
 
                                   BraseroDrive *drive);
72
 
 
73
 
void
74
 
brasero_drive_selection_set_tooltip (BraseroDriveSelection *selection,
75
 
                                     const gchar *tooltip);
76
 
 
77
 
BraseroDrive *
78
 
brasero_drive_selection_get_drive (BraseroDriveSelection *selection);
79
 
 
80
 
BraseroMedium *
81
 
brasero_drive_selection_get_medium (BraseroDriveSelection *selection);
82
 
 
83
 
void
84
 
brasero_drive_selection_set_image_path (BraseroDriveSelection *selection,
85
 
                                        const gchar *path);
86
 
 
87
 
void
88
 
brasero_drive_selection_set_same_src_dest (BraseroDriveSelection *selection);
89
 
 
90
 
void
91
 
brasero_drive_selection_set_button (BraseroDriveSelection *selection,
92
 
                                    GtkWidget *button);
93
 
 
94
 
void
95
 
brasero_drive_selection_set_type_shown (BraseroDriveSelection *self,
96
 
                                        BraseroMediaType type);
97
 
 
98
 
G_END_DECLS
99
 
 
100
 
#endif /* _BRASERO_DRIVE_SELECTION_H_ */