~ubuntu-branches/ubuntu/intrepid/brasero/intrepid

« back to all changes in this revision

Viewing changes to src/baobab-cell-renderer-progress.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-07-03 23:03:40 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080703230340-zs4qp4ig3sud5aw3
Tags: 0.7.91-0ubuntu1
* New upstream release (LP: #239524)
  - Fixed odd burning speeds (LP: #178482) (LP: #177124)
  - Cancel dialog buttons' wording is confusing (LP: #195083)
  - Support for DL DVDs (LP: #202206)
  - Brasero does not recognize .bin in the same directory
    when .cue is selected (LP: #202546)
  - Brasero does not save user settings (LP: #220352)
  - Can't set tmp dir and can't burn image if size > available
    on /tmp (LP: #226209)
  - Migrate from GnomeVFS to GIO (LP: #198771)
  - Preview disabled calls a video window (LP: #198497)
  - Brasero crashes in strlen () when debug mode is on (LP: #225405)
* debian/control.in:
  - Remove Build depend on libgnomevfs2-dev (>= 2.14.2),
    libnautilus-burn-dev (>= 2.16.0), libnotify-dev
  - Bump Build depend libglib2.0-dev to (>= 2.15.6)
  - Bump Build depend libgstreamer0.10-dev to (>= 0.10.15)
  - Bump Build depend libtotem-plparser-dev to (>= 2.22.0)
  - Add Build depend on gnome-doc-utils (>= 0.3.2) and
    liblaunchpad-integration-dev
  - Bump Standards-Version to 3.8.0
* debian/patches/007-fix-desktop-file-mime-typo.patch:
  - Dropped, merged upstream
* debian/patches/010_lpi.patch:
  - Add launchpad-integration
* debian/patches/012_gnome-doc-utils.make.patch
  - Add missing gnome-doc-utils.make to fix FTBFS
* debian/rules:
  - Add --disable-scrollkeeper
* Modify Maintainer value to match the DebianMaintainerField
  specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* baobab-cell-renderer-progress.h
 
2
 *
 
3
 * Copyright (C) 2006 Paolo Borelli
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Library General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library 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.  See the GNU
 
13
 * Library General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Library General Public
 
16
 * License along with this library; if not, write to the
 
17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
18
 * Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
#ifndef __BAOBAB_CELL_RENDERER_PROGRESS_H__
 
22
#define __BAOBAB_CELL_RENDERER_PROGRESS_H__
 
23
 
 
24
#include <gtk/gtkcellrenderer.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define BAOBAB_TYPE_CELL_RENDERER_PROGRESS (baobab_cell_renderer_progress_get_type ())
 
29
#define BAOBAB_CELL_RENDERER_PROGRESS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BAOBAB_TYPE_CELL_RENDERER_PROGRESS, BaobabCellRendererProgress))
 
30
#define BAOBAB_CELL_RENDERER_PROGRESS_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), BAOBAB_TYPE_CELL_RENDERER_PROGRESS, BaobabCellRendererProgressClass))
 
31
#define BAOBAB_IS_CELL_RENDERER_PROGRESS(obj)     (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BAOBAB_TYPE_CELL_RENDERER_PROGRESS))
 
32
#define BAOBAB_IS_CELL_RENDERER_PROGRESS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), BAOBAB_TYPE_CELL_RENDERER_PROGRESS))
 
33
#define BAOBAB_CELL_RENDERER_PROGRESS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), BAOBAB_TYPE_CELL_RENDERER_PROGRESS, BaobabCellRendererProgressClass))
 
34
 
 
35
typedef struct _BaobabCellRendererProgress         BaobabCellRendererProgress;
 
36
typedef struct _BaobabCellRendererProgressClass    BaobabCellRendererProgressClass;
 
37
typedef struct _BaobabCellRendererProgressPrivate  BaobabCellRendererProgressPrivate;
 
38
 
 
39
struct _BaobabCellRendererProgress
 
40
{
 
41
  GtkCellRenderer parent_instance;
 
42
  
 
43
  /*< private >*/
 
44
  BaobabCellRendererProgressPrivate *priv;
 
45
};
 
46
 
 
47
struct _BaobabCellRendererProgressClass
 
48
{
 
49
  GtkCellRendererClass parent_class;
 
50
};
 
51
 
 
52
GType            baobab_cell_renderer_progress_get_type (void) G_GNUC_CONST;
 
53
GtkCellRenderer* baobab_cell_renderer_progress_new      (void);
 
54
 
 
55
G_END_DECLS
 
56
 
 
57
#endif  /* __BAOBAB_CELL_RENDERER_PROGRESS_H__ */