Code

Filter effects dialog:
[inkscape.git] / src / flood-context.h
index 63cabdd5b96ee17a4f067c5cb98c96e1f714b4a4..a0d9e7d44fbbc4d0c10776abc05ba90fbc2e80b2 100644 (file)
@@ -14,6 +14,9 @@
 #include <sigc++/sigc++.h>
 #include <gtk/gtk.h>
 #include "event-context.h"
+#include "helper/unit-menu.h"
+#include "helper/units.h"
+
 struct SPKnotHolder;
 
 #define SP_TYPE_FLOOD_CONTEXT            (sp_flood_context_get_type ())
@@ -47,6 +50,18 @@ struct SPFloodContextClass {
 GtkType sp_flood_context_get_type (void);
 
 GList* flood_channels_dropdown_items_list (void);
-void flood_channels_changed(GtkComboBox *cbox, GtkWidget *tbl);
+GList* flood_autogap_dropdown_items_list (void);
+void flood_channels_set_channels( gint channels );
+
+enum PaintBucketChannels {
+    FLOOD_CHANNELS_RGB,
+    FLOOD_CHANNELS_R,
+    FLOOD_CHANNELS_G,
+    FLOOD_CHANNELS_B,
+    FLOOD_CHANNELS_H,
+    FLOOD_CHANNELS_S,
+    FLOOD_CHANNELS_L,
+    FLOOD_CHANNELS_ALPHA
+};
 
 #endif