GCC Code Coverage Report


Directory: ./
File: panels/system/users/cc-crop-area.h
Date: 2024-05-04 07:58:27
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 2 0.0%
Branches: 0 6 0.0%

Line Branch Exec Source
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 _CC_CROP_AREA_H_
21 #define _CC_CROP_AREA_H_
22
23 #include <glib-object.h>
24 #include <gtk/gtk.h>
25
26 G_BEGIN_DECLS
27
28 #define CC_TYPE_CROP_AREA (cc_crop_area_get_type ())
29 G_DECLARE_FINAL_TYPE (CcCropArea, cc_crop_area, CC, CROP_AREA, GtkWidget)
30
31 GtkWidget * cc_crop_area_new (void);
32 GdkPaintable * cc_crop_area_get_paintable (CcCropArea *area);
33 void cc_crop_area_set_paintable (CcCropArea *area,
34 GdkPaintable *paintable);
35 void cc_crop_area_set_min_size (CcCropArea *area,
36 int width,
37 int height);
38 GdkPixbuf * cc_crop_area_create_pixbuf (CcCropArea *area);
39
40 G_END_DECLS
41
42 #endif /* _CC_CROP_AREA_H_ */
43