Update NEWS for 3.16.0 release
[cheese.git] / libcheese / cheese-flash.h
blobe1ca6ad94d7baed92aa11732a7ff1ee5293bfd3d
1 /*
2 * Copyright © 2008 Alexander “weej” Jones <alex@weej.com>
4 * Licensed under the GNU General Public License Version 2
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.
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.
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/>.
20 #ifndef _CHEESE_FLASH_H_
21 #define _CHEESE_FLASH_H_
23 #include <gtk/gtk.h>
24 #include <glib-object.h>
26 G_BEGIN_DECLS
28 #define CHEESE_TYPE_FLASH (cheese_flash_get_type ())
29 #define CHEESE_FLASH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_FLASH, CheeseFlash))
30 #define CHEESE_FLASH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_FLASH, CheeseFlashClass))
31 #define CHEESE_IS_FLASH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_FLASH))
32 #define CHEESE_IS_FLASH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_FLASH))
33 #define CHEESE_FLASH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_FLASH, CheeseFlashClass))
35 typedef struct _CheeseFlashPrivate CheeseFlashPrivate;
36 typedef struct _CheeseFlashClass CheeseFlashClass;
37 typedef struct _CheeseFlash CheeseFlash;
39 /**
40 * CheeseFlashClass:
42 * Use the accessor functions below.
44 struct _CheeseFlashClass
46 /*< private >*/
47 GtkWindowClass parent_class;
50 /**
51 * CheeseFlash:
53 * Use the accessor functions below.
55 struct _CheeseFlash
57 /*< private >*/
58 GtkWindow parent_instance;
59 void *unused;
62 GType cheese_flash_get_type (void);
63 CheeseFlash *cheese_flash_new (GtkWidget *parent);
65 void cheese_flash_fire (CheeseFlash *flash);
67 G_END_DECLS
69 #endif /* _CHEESE_FLASH_H_ */