flood-context.h revision 70a4afb4cd8683415fa1c7fcda611b4dd81c4a56
#ifndef __SP_FLOOD_CONTEXT_H__
#define __SP_FLOOD_CONTEXT_H__
/*
* Flood fill drawing context
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* John Bintz <jcoswell@coswellproductions.org>
*
* Released under GNU GPL
*/
#include "event-context.h"
struct SPKnotHolder;
#define SP_TYPE_FLOOD_CONTEXT (sp_flood_context_get_type ())
#define SP_FLOOD_CONTEXT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SP_TYPE_FLOOD_CONTEXT, SPFloodContextClass))
#define FLOOD_COLOR_CHANNEL_R 1
#define FLOOD_COLOR_CHANNEL_G 2
#define FLOOD_COLOR_CHANNEL_B 4
#define FLOOD_COLOR_CHANNEL_A 8
};
struct SPFloodContextClass {
};
/* Standard Gtk function */
GtkType sp_flood_context_get_type (void);
GList* flood_channels_dropdown_items_list (void);
#endif