summaryrefslogtreecommitdiff
path: root/src/cheese-flash.h
diff options
context:
space:
mode:
authorErick Pérez Castellanos <erick.red@gmail.com>2012-02-24 00:58:00 -0500
committerAlexander Larsson <alexl@redhat.com>2012-03-29 18:14:09 +0200
commit5c990b42676aea13413fe55a0d7225a0119c35d2 (patch)
tree02b4c49b4c37578d7f7a65c43356adb713a3757f /src/cheese-flash.h
parenta4ac6bf202c5a2dcced69ecb03a421aa4bbc551a (diff)
downloadgnome-contacts-5c990b42676aea13413fe55a0d7225a0119c35d2.tar.gz
Adding cheese-flash effect support.
Old files from gnome-screenshot, not the ones from actual cheese since does involves more stuff. https://bugzilla.gnome.org/show_bug.cgi?id=657978
Diffstat (limited to 'src/cheese-flash.h')
-rw-r--r--src/cheese-flash.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/cheese-flash.h b/src/cheese-flash.h
new file mode 100644
index 0000000..6248aea
--- /dev/null
+++ b/src/cheese-flash.h
@@ -0,0 +1,52 @@
+/*
+ * Copyright © 2008 Alexander “weej” Jones <alex@weej.com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _CHEESE_FLASH_H_
+#define _CHEESE_FLASH_H_
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define CHEESE_TYPE_FLASH (cheese_flash_get_type ())
+#define CHEESE_FLASH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_FLASH, CheeseFlash))
+#define CHEESE_FLASH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_FLASH, CheeseFlashClass))
+#define CHEESE_IS_FLASH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHEESE_TYPE_FLASH))
+#define CHEESE_IS_FLASH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CHEESE_TYPE_FLASH))
+#define CHEESE_FLASH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CHEESE_TYPE_FLASH, CheeseFlashClass))
+
+typedef struct
+{
+ GObjectClass parent_class;
+} CheeseFlashClass;
+
+typedef struct
+{
+ GObject parent_instance;
+} CheeseFlash;
+
+GType cheese_flash_get_type (void) G_GNUC_CONST;
+CheeseFlash *cheese_flash_new (void);
+
+void cheese_flash_fire (CheeseFlash *flash,
+ GdkRectangle *rect);
+
+G_END_DECLS
+
+#endif /* _CHEESE_FLASH_H_ */