~ubuntu-branches/debian/stretch/cheese/stretch

« back to all changes in this revision

Viewing changes to libcheese/cheese-gconf.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
/*
 
2
 * Copyright © 2007-2009 daniel g. siegel <dgsiegel@gnome.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, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef __CHEESE_GCONF_H__
 
21
#define __CHEESE_GCONF_H__
 
22
 
 
23
G_BEGIN_DECLS
 
24
 
 
25
#define CHEESE_TYPE_GCONF (cheese_gconf_get_type ())
 
26
#define CHEESE_GCONF(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_GCONF, CheeseGConf))
 
27
#define CHEESE_GCONF_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_GCONF, CheeseGConfClass))
 
28
#define CHEESE_IS_GCONF(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_GCONF))
 
29
#define CHEESE_IS_GCONF_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_GCONF))
 
30
#define CHEESE_GCONF_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_GCONF, CheeseGConfClass))
 
31
 
 
32
typedef struct
 
33
{
 
34
  GObject parent;
 
35
} CheeseGConf;
 
36
 
 
37
typedef struct
 
38
{
 
39
  GObjectClass parent_class;
 
40
} CheeseGConfClass;
 
41
 
 
42
enum
 
43
{
 
44
  GCONF_PROP_0,
 
45
  GCONF_PROP_COUNTDOWN,
 
46
  GCONF_PROP_CAMERA,
 
47
  GCONF_PROP_SELECTED_EFFECTS,
 
48
  GCONF_PROP_X_RESOLUTION,
 
49
  GCONF_PROP_Y_RESOLUTION,
 
50
  GCONF_PROP_BRIGHTNESS,
 
51
  GCONF_PROP_CONTRAST,
 
52
  GCONF_PROP_SATURATION,
 
53
  GCONF_PROP_HUE,
 
54
  GCONF_PROP_VIDEO_PATH,
 
55
  GCONF_PROP_PHOTO_PATH,
 
56
  GCONF_PROP_ENABLE_DELETE,
 
57
  GCONF_PROP_WIDE_MODE,
 
58
  GCONF_PROP_BURST_DELAY,
 
59
  GCONF_PROP_BURST_REPEAT
 
60
};
 
61
 
 
62
GType        cheese_gconf_get_type (void);
 
63
CheeseGConf *cheese_gconf_new ();
 
64
 
 
65
G_END_DECLS
 
66
 
 
67
#endif /* __CHEESE_GCONF_H__ */