~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

Viewing changes to panels/user-accounts/um-crop-area.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
Import upstream version 14.04.0

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 _UM_CROP_AREA_H_
 
21
#define _UM_CROP_AREA_H_
 
22
 
 
23
#include <glib-object.h>
 
24
#include <gtk/gtk.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define UM_TYPE_CROP_AREA (um_crop_area_get_type ())
 
29
#define UM_CROP_AREA(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), UM_TYPE_CROP_AREA, \
 
30
                                                                           UmCropArea))
 
31
#define UM_CROP_AREA_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), UM_TYPE_CROP_AREA, \
 
32
                                                                        UmCropAreaClass))
 
33
#define UM_IS_CROP_AREA(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UM_TYPE_CROP_AREA))
 
34
#define UM_IS_CROP_AREA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UM_TYPE_CROP_AREA))
 
35
#define UM_CROP_AREA_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), UM_TYPE_CROP_AREA, \
 
36
                                                                          UmCropAreaClass))
 
37
 
 
38
typedef struct _UmCropAreaClass UmCropAreaClass;
 
39
typedef struct _UmCropArea UmCropArea;
 
40
typedef struct _UmCropAreaPrivate UmCropAreaPrivate;
 
41
 
 
42
struct _UmCropAreaClass {
 
43
        GtkDrawingAreaClass parent_class;
 
44
};
 
45
 
 
46
struct _UmCropArea {
 
47
        GtkDrawingArea parent_instance;
 
48
        UmCropAreaPrivate *priv;
 
49
};
 
50
 
 
51
GType      um_crop_area_get_type             (void) G_GNUC_CONST;
 
52
 
 
53
GtkWidget *um_crop_area_new                  (void);
 
54
GdkPixbuf *um_crop_area_get_picture          (UmCropArea *area);
 
55
void       um_crop_area_set_picture          (UmCropArea *area,
 
56
                                              GdkPixbuf  *pixbuf);
 
57
void       um_crop_area_set_min_size         (UmCropArea *area,
 
58
                                              gint        width,
 
59
                                              gint        height);
 
60
void       um_crop_area_set_constrain_aspect (UmCropArea *area,
 
61
                                              gboolean    constrain);
 
62
 
 
63
G_END_DECLS
 
64
 
 
65
#endif /* _UM_CROP_AREA_H_ */