~walkerlee/totem/pre-interview

« back to all changes in this revision

Viewing changes to src/gd-fullscreen-filter.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-05-26 00:07:51 UTC
  • mfrom: (1.6.1) (24.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130526000751-kv8ap3x1di4qq8j2
Tags: 3.8.2-0ubuntu1
* Sync with Debian. Remaining changes: 
* debian/control.in:
  - Drop build-depends on libepc-ui-dev and libgrilo-0.2-dev (in universe)
  - Drop libxtst-dev build-depends so that the (redundant) fake key presses
    for inhibiting the screensaver are disabled (LP: #1007438)
  - Build-depend on libzeitgeist-dev
  - Suggest rather than recommend gstreamer components in universe
  - Add totem-plugins-extra
  - Add XB-Npp-Description and XB-Npp-Filename header to the 
    totem-mozilla package to improve ubufox/ubuntu plugin db integration 
  - Refer to Firefox in totem-mozilla description instead of Iceweasel
  - Don't have totem-mozilla recommend any particular browser
  - Drop obsolete python library dependencies since iplayer is no longer
    included
* debian/totem-common.install, debian/source_totem.py:
  - Install Ubuntu apport debugging hook
* debian/totem-plugins-extra.install:
  - Universe plugins split out of totem-plugins (currently only gromit)
* debian/totem-plugins.install:    
  - Skip the plugins split to -extra and add the zeitgeist plugin
* debian/rules:
  - Build with --fail-missing, to ensure we install everything. 
    + Ignore libtotem.{,l}a since we delibrately don't install these.
  - Re-enable hardening, make sure both PIE and BINDNOW are used
    by setting hardening=+all. (LP: #1039604)
* debian/patches/91_quicklist_entries.patch:
  - Add static quicklist
* debian/patches/92_gst-plugins-good.patch:
  - Build without unnecessary gstreamer1.0-bad dependency
* debian/patches/93_grilo_optional.patch:
  - Allow building without grilo while grilo MIR is still pending
* debian/patches/correct_desktop_mimetypes.patch:
  - Don't list the mimetypes after the unity lists
* debian/patches/revert_shell_menu.patch: 
  - revert the use of a shell menu until indicator-appmenu can handle
    the mixed shell/traditional menus itself
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2011 Red Hat, Inc.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by 
 
6
 * the Free Software Foundation; either version 2 of the License, or (at your
 
7
 * option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful, but
 
10
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
11
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public 
 
12
 * License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public License 
 
15
 * along with this program; if not, write to the Free Software Foundation,
 
16
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 *
 
18
 * Author: Cosimo Cecchi <cosimoc@redhat.com>
 
19
 *
 
20
 */
 
21
 
 
22
#ifndef __GD_FULLSCREEN_FILTER_H__
 
23
#define __GD_FULLSCREEN_FILTER_H__
 
24
 
 
25
#include <glib-object.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define GD_TYPE_FULLSCREEN_FILTER gd_fullscreen_filter_get_type()
 
30
 
 
31
#define GD_FULLSCREEN_FILTER(obj) \
 
32
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
 
33
   GD_TYPE_FULLSCREEN_FILTER, GdFullscreenFilter))
 
34
 
 
35
#define GD_FULLSCREEN_FILTER_CLASS(klass) \
 
36
  (G_TYPE_CHECK_CLASS_CAST ((klass), \
 
37
   GD_TYPE_FULLSCREEN_FILTER, GdFullscreenFilterClass))
 
38
 
 
39
#define GD_IS_FULLSCREEN_FILTER(obj) \
 
40
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
 
41
   GD_TYPE_FULLSCREEN_FILTER))
 
42
 
 
43
#define GD_IS_FULLSCREEN_FILTER_CLASS(klass) \
 
44
  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
 
45
   GD_TYPE_FULLSCREEN_FILTER))
 
46
 
 
47
#define GD_FULLSCREEN_FILTER_GET_CLASS(obj) \
 
48
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
 
49
   GD_TYPE_FULLSCREEN_FILTER, GdFullscreenFilterClass))
 
50
 
 
51
typedef struct _GdFullscreenFilter GdFullscreenFilter;
 
52
typedef struct _GdFullscreenFilterClass GdFullscreenFilterClass;
 
53
typedef struct _GdFullscreenFilterPrivate GdFullscreenFilterPrivate;
 
54
 
 
55
struct _GdFullscreenFilter
 
56
{
 
57
  GObject parent;
 
58
 
 
59
  GdFullscreenFilterPrivate *priv;
 
60
};
 
61
 
 
62
struct _GdFullscreenFilterClass
 
63
{
 
64
  GObjectClass parent_class;
 
65
};
 
66
 
 
67
GType gd_fullscreen_filter_get_type (void) G_GNUC_CONST;
 
68
 
 
69
GdFullscreenFilter *gd_fullscreen_filter_new (void);
 
70
void gd_fullscreen_filter_start (GdFullscreenFilter *self);
 
71
void gd_fullscreen_filter_stop (GdFullscreenFilter *self);
 
72
 
 
73
G_END_DECLS
 
74
 
 
75
#endif /* __GD_FULLSCREEN_FILTER_H__ */