/* * OWL (OpenedHand Widget Library) Colour Swatch. * * Author: Rob Bradford * * Copyright (C) 2007 OpenedHand Ltd. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef _OWL_COLOUR_SWATCH #define _OWL_COLOUR_SWATCH #include #include G_BEGIN_DECLS #define OWL_TYPE_COLOUR_SWATCH owl_colour_swatch_get_type() #define OWL_COLOUR_SWATCH(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ OWL_TYPE_COLOUR_SWATCH, OwlColourSwatch)) #define OWL_COLOUR_SWATCH_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ OWL_TYPE_COLOUR_SWATCH, OwlColourSwatchClass)) #define OWL_IS_COLOUR_SWATCH(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ OWL_TYPE_COLOUR_SWATCH)) #define OWL_IS_COLOUR_SWATCH_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ OWL_TYPE_COLOUR_SWATCH)) #define OWL_COLOUR_SWATCH_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ OWL_TYPE_COLOUR_SWATCH, OwlColourSwatchClass)) typedef struct { GtkFrame parent; } OwlColourSwatch; typedef struct { GtkFrameClass parent_class; } OwlColourSwatchClass; GType owl_colour_swatch_get_type (void); GtkWidget* owl_colour_swatch_new (void); void owl_colour_swatch_set_colour (OwlColourSwatch *self, guint32 colour); guint32 owl_colour_swatch_get_colour (OwlColourSwatch *self); G_END_DECLS #endif /* _OWL_COLOUR_SWATCH */