~ubuntu-branches/debian/jessie/cheese/jessie

« back to all changes in this revision

Viewing changes to src/cheese-effect-chooser.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2010-05-04 17:37:18 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100504173718-k2rx3nryi4vd0xyx
Tags: 2.30.1-1
* New upstream release.
  - HAL dependency has been dropped. Use (g)udev for v4l capability probing
    on Linux. Closes: #573774
  - Split code into separate libraries.
* debian/control.in
  - Drop Build-Depends on libhal-dev.
  - Drop Build-Depends on libebook1.2-dev.
  - Bump Build-Depends on libgtk2.0-dev to (>= 2.19.1).
  - Bump Build-Depends on libgstreamer*-dev to (>= 0.10.23).
  - Add Build-Depends on libcanberra-gtk-dev.
  - Add Build-Depends on libxtst-dev.
  - Add Build-Depends on libgudev-1.0-dev on Linux.
  - Bump Standards-Version to 3.8.4. No further changes.
* Switch to source format 3.0 (quilt)
  - Add debian/source/format.
* debian/rules
  - Drop lpia specific configure flags, lpia is dead.
* Update package layout (based on work by Ubuntu)
  - Move data files into new cheese-common package.
  - Keep binary along with its desktop and dbus service file in the cheese
    package.
  - Add libcheese-gtk18 and libcheese-gtk-dev package for the new
    libcheese-gtk library. Use a symbols file for improved shlibs
    dependencies.
  - Add Conflicts/Replaces to cheese-common to ensure proper upgrades from
    previous versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright © 2007,2008 daniel g. siegel <dgsiegel@gnome.org>
 
2
 * Copyright © 2007-2009 daniel g. siegel <dgsiegel@gnome.org>
3
3
 * Copyright © 2007,2008 Jaap Haitsma <jaap@haitsma.org>
4
4
 *
5
5
 * Licensed under the GNU General Public License Version 2
22
22
#define __CHEESE_EFFECT_CHOOSER_H__
23
23
 
24
24
#include <gtk/gtk.h>
25
 
#include "cheese-webcam.h"
 
25
#include <cheese-camera.h>
26
26
 
27
27
G_BEGIN_DECLS
28
28
 
50
50
GType      cheese_effect_chooser_get_type (void);
51
51
GtkWidget *cheese_effect_chooser_new (char *selected_effects);
52
52
 
53
 
CheeseWebcamEffect cheese_effect_chooser_get_selection (CheeseEffectChooser *effect_chooser);
 
53
CheeseCameraEffect cheese_effect_chooser_get_selection (CheeseEffectChooser *effect_chooser);
54
54
char *             cheese_effect_chooser_get_selection_string (CheeseEffectChooser *effect_chooser);
55
55
void               cheese_effect_chooser_unselect_all (CheeseEffectChooser *effect_chooser);
56
56