~noskcaj/ubuntu/trusty/parole/0.6.0

« back to all changes in this revision

Viewing changes to parole/parole-file.h

  • Committer: Package Import Robot
  • Author(s): Yves-Alexis Perez, Lionel Le Folgoc, Micah Gersten, Yves-Alexis Perez
  • Date: 2013-05-25 14:54:35 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130525145435-9dyr3r16kr4go8ah
Tags: 0.5.0-1
[ Lionel Le Folgoc ]
* debian/patches: add missing DEP3 headers.
* debian/control:
  - add b-dep on libxfconf-0-dev since parole now uses Xfconf
  - suggests gnome-codec-install for the missing codec feature.

[ Micah Gersten ]
* Update link to GPL license to appease lintian
  - update debian/copyright

[ Yves-Alexis Perez ]
* New upstream release.
* debian/patches:
  - 01_fix-implicit-dso-linking dropped, not needed anymore.
* debian/rules:
  - drop call to xdt-autogen, not needed anymore.
  - use parallel build.
  - use debhelper 9 / dpkg-dev 1.16.1 hardening support.
  - use multiarch paths.
* debian/control:
  - update standards version to 3.9.4.
  - update debhelper build-dep to 9
  - drop hardening-includes build-dep.
  - drop xfce4-dev-tools, libtool and gtk-doc-tools build-deps.
  - replace libxfcegui4 build-dep by libxfce4ui.
  - drop Simon and Emmanuele from uploaders, thanks to them for their work!
* debian/compat bumped to 9.
* debian/parole.install:
  - update paths for multiarch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * * Copyright (C) 2009-2011 Ali <aliov@xfce.org>
3
 
 *
4
 
 * Licensed under the GNU General Public License Version 2
5
 
 *
6
 
 * This program 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
 
 *
11
 
 * This program is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#if !defined (__PAROLE_H_INSIDE__) && !defined (PAROLE_COMPILATION)
22
 
#error "Only <parole.h> can be included directly."
23
 
#endif
24
 
 
25
 
#ifndef __PAROLE_MEDIA_FILE_H
26
 
#define __PAROLE_MEDIA_FILE_H
27
 
 
28
 
#include <glib-object.h>
29
 
 
30
 
G_BEGIN_DECLS
31
 
 
32
 
#define PAROLE_TYPE_FILE        (parole_file_get_type () )
33
 
#define PAROLE_FILE(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), PAROLE_TYPE_FILE, ParoleFile))
34
 
#define PAROLE_IS_FILE(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), PAROLE_TYPE_FILE))
35
 
 
36
 
typedef struct _ParoleFile      ParoleFile;
37
 
typedef struct _ParoleFileClass ParoleFileClass;
38
 
 
39
 
struct _ParoleFile
40
 
{
41
 
    GObject                     parent;
42
 
};
43
 
 
44
 
struct _ParoleFileClass
45
 
{
46
 
    GObjectClass                parent_class;
47
 
};
48
 
 
49
 
GType                           parole_file_get_type              (void) G_GNUC_CONST;
50
 
 
51
 
ParoleFile                     *parole_file_new                   (const gchar *filename);
52
 
 
53
 
ParoleFile                     *parole_file_new_with_display_name (const gchar *filename,
54
 
                                                                   const gchar *display_name);
55
 
 
56
 
const gchar   G_CONST_RETURN   *parole_file_get_file_name         (const ParoleFile *file) G_GNUC_PURE;
57
 
 
58
 
const gchar   G_CONST_RETURN   *parole_file_get_display_name      (const ParoleFile *file) G_GNUC_PURE;
59
 
 
60
 
const gchar   G_CONST_RETURN   *parole_file_get_uri               (const ParoleFile *file) G_GNUC_PURE;
61
 
 
62
 
const gchar   G_CONST_RETURN   *parole_file_get_content_type      (const ParoleFile *file) G_GNUC_PURE;
63
 
 
64
 
G_END_DECLS
65
 
 
66
 
#endif /* __PAROLE_MEDIA_FILE_H */