flood-context.h revision c71d51e651675234ace9c1f21934d4a6f45f7ac7
#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"
#include "helper/unit-menu.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