~ubuntu-branches/ubuntu/precise/cheese/precise-proposed

« back to all changes in this revision

Viewing changes to src/cheese-prefs-widget.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher, Jeremy Bicha, Robert Ancell
  • Date: 2011-06-10 11:45:37 UTC
  • mfrom: (1.2.24 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610114537-p9e4zl8m0ehf2b5a
Tags: 3.0.0-0ubuntu1
* Upload to oneiric

[ Jeremy Bicha ]
* Depend on gnome-video-effects since clicking Effects when it is
  not installed results in a segmentation fault.

[ Robert Ancell]
* New upstream version
* debian/control:
  - Use standards version 3.9.1
  - Add build-depends on dh-autoreconf, valac, libclutter-1.0-dev,
    libclutter-gtk-1.0-dev, libclutter-gst-dev, libmx-dev,
    gnome-video-effects-dev, libgee-dev, gnome-common, gobject-introspection, 
    libgirepository1.0-dev, gir1.2-freedesktop, gir1.2-glib-2.0, 
    gir1.2-gstreamer-0.10, gir1.2-clutter-1.0, gir1.2-gdkpixbuf-2.0
  - Drop build-depends on libgconf2-dev, libdbus-1-dev, libdbus-glib-1-dev,
  - Bump build-depends on libglib2.0-dev, libgtk-3-dev,
    libgnome-desktop-3-dev, libgstreamer0.10-dev,
    libgstreamer-plugins-base0.10-dev, libcairo2-dev, libpango1.0-dev,
    librsvg2-dev, libcanberra-gtk3-dev
  - Add new gir1.2-cheese-3.0 package
  - libcheese-gtk18 -> libcheese-gtk19
* debian/cheese.install:
* debian/cheese-common.install:
* debian/libcheese-gtk-dev.install
  - Update for new/changed files
* debian/gir1.2-cheese-3.0.install:
  - Install typelib
* debian/patches/fix-linking.patch:
  - Fix linking issues
* debian/patches/no-gnu-gettext.patch:
  - Don't use both AM_GNU_GETTEXT and IT_PROG_INTLTOOL

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2008 James Liggett <jrliggett@cox.net>
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, see <http://www.gnu.org/licenses/>.
18
 
 */
19
 
 
20
 
#ifndef _CHEESE_PREFS_WIDGET_H_
21
 
#define _CHEESE_PREFS_WIDGET_H_
22
 
 
23
 
#include <glib-object.h>
24
 
#include <gtk/gtk.h>
25
 
#include "cheese-gconf.h"
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
#define CHEESE_TYPE_PREFS_WIDGET (cheese_prefs_widget_get_type ())
30
 
#define CHEESE_PREFS_WIDGET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_PREFS_WIDGET, \
31
 
                                                                         CheesePrefsWidget))
32
 
#define CHEESE_PREFS_WIDGET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_PREFS_WIDGET, \
33
 
                                                                      CheesePrefsWidgetClass))
34
 
#define CHEESE_IS_PREFS_WIDGET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_PREFS_WIDGET))
35
 
#define CHEESE_IS_PREFS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_PREFS_WIDGET))
36
 
#define CHEESE_PREFS_WIDGET_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_PREFS_WIDGET, \
37
 
                                                                        CheesePrefsWidgetClass))
38
 
 
39
 
typedef struct _CheesePrefsWidgetClass CheesePrefsWidgetClass;
40
 
typedef struct _CheesePrefsWidget CheesePrefsWidget;
41
 
 
42
 
struct _CheesePrefsWidgetClass
43
 
{
44
 
  GObjectClass parent_class;
45
 
 
46
 
  /* Signals */
47
 
  void (*changed)(CheesePrefsWidget *self);
48
 
 
49
 
  /* Virtual methods */
50
 
  void (*synchronize)(CheesePrefsWidget *self);
51
 
};
52
 
 
53
 
struct _CheesePrefsWidget
54
 
{
55
 
  GObject parent_instance;
56
 
 
57
 
  CheeseGConf *gconf;
58
 
};
59
 
 
60
 
GType cheese_prefs_widget_get_type (void) G_GNUC_CONST;
61
 
 
62
 
void cheese_prefs_widget_synchronize (CheesePrefsWidget *prefs_widget);
63
 
void cheese_prefs_widget_notify_changed (CheesePrefsWidget *prefs_widget);
64
 
 
65
 
G_END_DECLS
66
 
 
67
 
#endif /* _CHEESE_PREFS_WIDGET_H_ */