Update Catalan translation
[cheese.git] / libcheese / cheese-flash.h
blob56a80b4ba8b181204d4564cec281b3eba3dcdea1
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 /**
29 * CheeseFlash:
31 * Use the accessor functions below.
33 struct _CheeseFlash
35 /*< private >*/
36 GtkWindow parent_instance;
37 void *unused;
40 #define CHEESE_TYPE_FLASH (cheese_flash_get_type ())
41 G_DECLARE_FINAL_TYPE (CheeseFlash, cheese_flash, CHEESE, FLASH, GtkWindow)
43 CheeseFlash *cheese_flash_new (GtkWidget *parent);
44 void cheese_flash_fire (CheeseFlash *flash);
46 G_END_DECLS
48 #endif /* CHEESE_FLASH_H_ */