~ubuntu-branches/debian/sid/cheese/sid

« back to all changes in this revision

Viewing changes to libcheese/cheese-gconf.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2011-07-17 21:04:16 UTC
  • mfrom: (15.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20110717210416-nt5qi659qei7a2yy
Tags: 3.0.1-2
* debian/control.in:
  - Change gir1.2-cheese-3.0 Section to libs
  - Make library packages depend against cheese-common package
  - Make cheese package recommends against hicolor-icon-theme
  - Move gst Dependency to libcheese package
* debian/patches/0002-fix-linking.patch: Add missing library to fix linking
* debian/watch:
  - Switch to .bz2 tarballs.
  - Bump version to 3

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__ */