~ubuntu-branches/ubuntu/trusty/parole/trusty-proposed

« back to all changes in this revision

Viewing changes to parole/parole-filters.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_FILTERS_H
26
 
#define __PAROLE_FILTERS_H
27
 
 
28
 
#include <gtk/gtk.h>
29
 
 
30
 
#include <parole/parole-file.h>
31
 
 
32
 
G_BEGIN_DECLS
33
 
 
34
 
GtkFileFilter           *parole_get_supported_audio_filter      (void);
35
 
 
36
 
GtkFileFilter           *parole_get_supported_video_filter      (void);
37
 
 
38
 
GtkFileFilter           *parole_get_supported_media_filter      (void);
39
 
 
40
 
GtkFileFilter           *parole_get_supported_files_filter      (void);
41
 
 
42
 
GtkFileFilter           *parole_get_supported_playlist_filter   (void);
43
 
 
44
 
gboolean                 parole_file_filter                     (GtkFileFilter *filter,
45
 
                                                                 ParoleFile *file);
46
 
 
47
 
G_END_DECLS
48
 
 
49
 
#endif /* PAROLE_FILTERS_H */