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

« back to all changes in this revision

Viewing changes to src/brasero-project-size.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
 
/***************************************************************************
2
 
 *            brasero-project-size.h
3
 
 *
4
 
 *  jeu jui 27 11:54:52 2006
5
 
 *  Copyright  2006  Rouquier Philippe
6
 
 *  brasero-app@wanadoo.fr
7
 
 ***************************************************************************/
8
 
 
9
 
/*
10
 
 *  This program is free software; you can redistribute it and/or modify
11
 
 *  it under the terms of the GNU General Public License as published by
12
 
 *  the Free Software Foundation; either version 2 of the License, or
13
 
 *  (at your option) any later version.
14
 
 *
15
 
 *  This program is distributed in the hope that it will be useful,
16
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 *  GNU Library General Public License for more details.
19
 
 *
20
 
 *  You should have received a copy of the GNU General Public License
21
 
 *  along with this program; if not, write to the Free Software
22
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
 
 */
24
 
 
25
 
#ifndef BRASERO_PROJECT_SIZE_H
26
 
#define BRASERO_PROJECT_SIZE_H
27
 
 
28
 
#include <glib.h>
29
 
#include <glib-object.h>
30
 
 
31
 
#include <gtk/gtkwidget.h>
32
 
#include <gtk/gtkcontainer.h>
33
 
 
34
 
#include "burn-medium.h"
35
 
 
36
 
G_BEGIN_DECLS
37
 
 
38
 
#define BRASERO_TYPE_PROJECT_SIZE         (brasero_project_size_get_type ())
39
 
#define BRASERO_PROJECT_SIZE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), BRASERO_TYPE_PROJECT_SIZE, BraseroProjectSize))
40
 
#define BRASERO_PROJECT_SIZE_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), BRASERO_TYPE_PROJECT_SIZE, BraseroProjectSizeClass))
41
 
#define BRASERO_IS_PROJECT_SIZE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), BRASERO_TYPE_PROJECT_SIZE))
42
 
#define BRASERO_IS_PROJECT_SIZE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), BRASERO_TYPE_PROJECT_SIZE))
43
 
#define BRASERO_PROJECT_SIZE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), BRASERO_TYPE_PROJECT_SIZE, BraseroProjectSizeClass))
44
 
 
45
 
typedef struct _BraseroProjectSize BraseroProjectSize;
46
 
typedef struct _BraseroProjectSizePrivate BraseroProjectSizePrivate;
47
 
typedef struct _BraseroProjectSizeClass BraseroProjectSizeClass;
48
 
 
49
 
struct _BraseroProjectSize {
50
 
        GtkContainer parent;
51
 
        BraseroProjectSizePrivate *priv;
52
 
};
53
 
 
54
 
struct _BraseroProjectSizeClass {
55
 
        GtkContainerClass parent_class;
56
 
 
57
 
        void    (*disc_changed)         (BraseroProjectSize *size);
58
 
};
59
 
 
60
 
GType brasero_project_size_get_type ();
61
 
GtkWidget *brasero_project_size_new ();
62
 
 
63
 
gint
64
 
brasero_project_get_ruler_height (BraseroProjectSize *self);
65
 
 
66
 
void
67
 
brasero_project_size_set_sectors (BraseroProjectSize *self,
68
 
                                  gint64 sectors);
69
 
 
70
 
void
71
 
brasero_project_size_set_multisession (BraseroProjectSize *self,
72
 
                                       gboolean multi);
73
 
 
74
 
void
75
 
brasero_project_size_set_context (BraseroProjectSize *self,
76
 
                                  gboolean is_audio);
77
 
 
78
 
gboolean
79
 
brasero_project_size_check_status (BraseroProjectSize *self,
80
 
                                   gboolean *overburn);
81
 
 
82
 
BraseroMedium *
83
 
brasero_project_size_get_active_medium (BraseroProjectSize *self);
84
 
 
85
 
G_END_DECLS
86
 
 
87
 
#endif /* BRASERO_PROJECT_SIZE_H */