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

« back to all changes in this revision

Viewing changes to libcheese/cheese-avatar-widget.h

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2014-04-02 21:39:33 UTC
  • mfrom: (1.5.1) (15.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20140402213933-r0w3gna0pv7q7085
Tags: 3.12.0-1
* New upstream release.
* Revert changes done in 3.10.1-3
  - i.e. lower gnome-desktop build-dependency again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2009 Bastien Nocera <hadess@hadess.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_AVATAR_WIDGET_H_
 
21
#define _CHEESE_AVATAR_WIDGET_H_
 
22
 
 
23
#include <glib-object.h>
 
24
#include <gtk/gtk.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define CHEESE_TYPE_AVATAR_WIDGET (cheese_avatar_widget_get_type ())
 
29
#define CHEESE_AVATAR_WIDGET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_AVATAR_WIDGET, \
 
30
                                                                           CheeseAvatarWidget))
 
31
#define CHEESE_AVATAR_WIDGET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_AVATAR_WIDGET, \
 
32
                                                                        CheeseAvatarWidgetClass))
 
33
#define CHEESE_IS_AVATAR_WIDGET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_AVATAR_WIDGET))
 
34
#define CHEESE_IS_AVATAR_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_AVATAR_WIDGET))
 
35
#define CHEESE_AVATAR_WIDGET_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_AVATAR_WIDGET, \
 
36
                                                                          CheeseAvatarWidgetClass))
 
37
 
 
38
typedef struct _CheeseAvatarWidgetPrivate CheeseAvatarWidgetPrivate;
 
39
typedef struct _CheeseAvatarWidgetClass CheeseAvatarWidgetClass;
 
40
typedef struct _CheeseAvatarWidget CheeseAvatarWidget;
 
41
 
 
42
/**
 
43
 * CheeseAvatarWidgetClass:
 
44
 *
 
45
 * Use the accessor functions below.
 
46
 */
 
47
struct _CheeseAvatarWidgetClass
 
48
{
 
49
  /*< private >*/
 
50
  GtkBinClass parent_class;
 
51
};
 
52
 
 
53
/**
 
54
 * CheeseAvatarWidget:
 
55
 *
 
56
 * Use the accessor functions below.
 
57
 */
 
58
struct _CheeseAvatarWidget
 
59
{
 
60
  /*< private >*/
 
61
  GtkBin parent_instance;
 
62
  CheeseAvatarWidgetPrivate *priv;
 
63
};
 
64
 
 
65
GType cheese_avatar_widget_get_type (void) G_GNUC_CONST;
 
66
 
 
67
GtkWidget *cheese_avatar_widget_new (void);
 
68
GdkPixbuf *cheese_avatar_widget_get_picture (CheeseAvatarWidget *widget);
 
69
 
 
70
G_END_DECLS
 
71
 
 
72
#endif /* _CHEESE_AVATAR_WIDGET_H_ */