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

« back to all changes in this revision

Viewing changes to src/cheese-prefs-balance-scale.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 © 2009 Filippo Argiolas <filippo.argiolas@gmail.com>
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_BALANCE_SCALE_H_
21
 
#define _CHEESE_PREFS_BALANCE_SCALE_H_
22
 
 
23
 
#include <glib-object.h>
24
 
#include <cheese-camera.h>
25
 
#include "cheese-prefs-widget.h"
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
#define CHEESE_TYPE_PREFS_BALANCE_SCALE (cheese_prefs_balance_scale_get_type ())
30
 
#define CHEESE_PREFS_BALANCE_SCALE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_PREFS_BALANCE_SCALE, \
31
 
                                                                                CheesePrefsBalanceScale))
32
 
#define CHEESE_PREFS_BALANCE_SCALE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_PREFS_BALANCE_SCALE, \
33
 
                                                                             CheesePrefsBalanceScaleClass))
34
 
#define CHEESE_IS_PREFS_BALANCE_SCALE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_PREFS_BALANCE_SCALE))
35
 
#define CHEESE_IS_PREFS_BALANCE_SCALE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_PREFS_BALANCE_SCALE))
36
 
#define CHEESE_PREFS_BALANCE_SCALE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_PREFS_BALANCE_SCALE, \
37
 
                                                                               CheesePrefsBalanceScaleClass))
38
 
 
39
 
typedef struct _CheesePrefsBalanceScaleClass CheesePrefsBalanceScaleClass;
40
 
typedef struct _CheesePrefsBalanceScale CheesePrefsBalanceScale;
41
 
 
42
 
struct _CheesePrefsBalanceScaleClass
43
 
{
44
 
  CheesePrefsWidgetClass parent_class;
45
 
};
46
 
 
47
 
struct _CheesePrefsBalanceScale
48
 
{
49
 
  CheesePrefsWidget parent_instance;
50
 
};
51
 
 
52
 
GType                    cheese_prefs_balance_scale_get_type (void) G_GNUC_CONST;
53
 
CheesePrefsBalanceScale *cheese_prefs_balance_scale_new (GtkWidget    *scale,
54
 
                                                         CheeseCamera *camera,
55
 
                                                         const gchar  *property,
56
 
                                                         const gchar  *balance_key);
57
 
 
58
 
#endif /* _CHEESE_PREFS_BALANCE_SCALE_H_ */