~ubuntu-branches/ubuntu/wily/brasero/wily

« back to all changes in this revision

Viewing changes to src/burn-hal-watch.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-11-18 11:30:50 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20081118113050-hoy0pi04uv7ww9d8
Tags: 0.8.3-0ubuntu1
* New upstream release (LP: #299411)
  - allow use of remote files
  - drives are now probed asynchronously and may not popup immediatly
    but brasero starts faster
  - some parts of GUI were revisited (in particular the burn
    option dialogs)
  - command line option for video projects (LP: #273140)
  - brasero crashed with SIGSEGV in g_main_context_dispatch()
    (LP: #281599)
  - Brasero main GUI appears after closing the dialog
    when opening an ISO file using Nautilus (LP: #242022)
  - brasero delete original files in VIDEO_TS folder (LP: #280835)
  - brasero crashed with SIGSEGV in 
    brasero_mkisofs_base_write_to_files() (LP: #275312)
  - brasero crashed with SIGSEGV in 
    brasero_project_save_project_as() (LP: #275086)
  - brasero crashed with SIGSEGV in 
    IA__g_sequence_iter_get_sequence() (LP: #282622)
  - brasero crashed with SIGSEGV in brasero_medium_get_drive()
    (LP: #283197)
  - Dialog contains a lot of empty space (LP: #190192)
 * debian/patches/008-add-gettext-domain-to-desktop-file.patch:
   - Dropped, we don't need this anymore
 * debian/control:
  - Add Build-deps on libeel2-dev and libnautilus-extension-dev
 * debian/brasero.install:
  - Install nautilus extension

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) Rouquier Philippe 2008 <bonfire-app@wanadoo.fr>
 
5
 * 
 
6
 * brasero is free software: you can redistribute it and/or modify it
 
7
 * under the terms of the GNU General Public License as published by the
 
8
 * Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 * 
 
11
 * brasero is distributed in the hope that it will be useful, but
 
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
14
 * See the GNU General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License along
 
17
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef _BRASERO_HAL_WATCH_H_
 
21
#define _BRASERO_HAL_WATCH_H_
 
22
 
 
23
#include <glib-object.h>
 
24
 
 
25
#include <libhal.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define BRASERO_TYPE_HAL_WATCH             (brasero_hal_watch_get_type ())
 
30
#define BRASERO_HAL_WATCH(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), BRASERO_TYPE_HAL_WATCH, BraseroHALWatch))
 
31
#define BRASERO_HAL_WATCH_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), BRASERO_TYPE_HAL_WATCH, BraseroHALWatchClass))
 
32
#define BRASERO_IS_HAL_WATCH(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BRASERO_TYPE_HAL_WATCH))
 
33
#define BRASERO_IS_HAL_WATCH_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), BRASERO_TYPE_HAL_WATCH))
 
34
#define BRASERO_HAL_WATCH_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), BRASERO_TYPE_HAL_WATCH, BraseroHALWatchClass))
 
35
 
 
36
typedef struct _BraseroHALWatchClass BraseroHALWatchClass;
 
37
typedef struct _BraseroHALWatch BraseroHALWatch;
 
38
 
 
39
struct _BraseroHALWatchClass
 
40
{
 
41
        GObjectClass parent_class;
 
42
};
 
43
 
 
44
struct _BraseroHALWatch
 
45
{
 
46
        GObject parent_instance;
 
47
};
 
48
 
 
49
GType brasero_hal_watch_get_type (void) G_GNUC_CONST;
 
50
 
 
51
BraseroHALWatch *
 
52
brasero_hal_watch_get_default (void);
 
53
 
 
54
void
 
55
brasero_hal_watch_destroy (void);
 
56
 
 
57
LibHalContext *
 
58
brasero_hal_watch_get_ctx (BraseroHALWatch *watch);
 
59
 
 
60
G_END_DECLS
 
61
 
 
62
#endif /* _BRASERO_HAL_WATCH_H_ */