/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2000-2002 Ximian Inc. * * Authors: Not Zed * Jeffrey Stedfast * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * 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, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include "libedataserver/e-sexp.h" #include "filter-colour.h" #define d(x) static int colour_eq (FilterElement *fe, FilterElement *cm); static void xml_create (FilterElement *fe, xmlNodePtr node); static xmlNodePtr xml_encode (FilterElement *fe); static int xml_decode (FilterElement *fe, xmlNodePtr node); static GtkWidget *get_widget (FilterElement *fe); static void build_code (FilterElement *fe, GString *out, struct _FilterPart *ff); static void format_sexp (FilterElement *, GString *); static void filter_colour_class_init (FilterColourClass *klass); static void filter_colour_init (FilterColour *fc); static void filter_colour_finalise (GObject *obj); static FilterElementClass *parent_class; GType filter_colour_get_type (void) { static GType type = 0; if (!type) { static const GTypeInfo info = { sizeof (FilterColourClass), NULL, /* base_class_init */ NULL, /* base_class_finalize */ (GClassInitFunc) filter_colour_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (FilterColour), 0, /* n_preallocs */ (GInstanceInitFunc) filter_colour_init, }; type = g_type_register_static (FILTER_TYPE_ELEMENT, "FilterColour", &info, 0); } return type; } static void filter_colour_class_init (FilterColourClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); FilterElementClass *fe_class = FILTER_ELEMENT_CLASS (klass); parent_class = g_type_class_ref (FILTER_TYPE_ELEMENT); object_class->finalize = filter_colour_finalise; /* override methods */ fe_class->eq = colour_eq; fe_class->xml_create = xml_create; fe_class->xml_encode = xml_encode; fe_class->xml_decode = xml_decode; fe_class->get_widget = get_widget; fe_class->build_code = build_code; fe_class->format_sexp = format_sexp; } static void filter_colour_init (FilterColour *fc) { ; } static void filter_colour_finalise (GObject *obj) { G_OBJECT_CLASS (parent_class)->finalize (obj); } /** * filter_colour_new: * * Create a new FilterColour object. * * Return value: A new #FilterColour object. **/ FilterColour * filter_colour_new (void) { return (FilterColour *) g_object_new (FILTER_TYPE_COLOUR, NULL, NULL); } static int colour_eq (FilterElement *fe, FilterElement *cm) { FilterColour *fc = (FilterColour *) fe; FilterColour *cc = (FilterColour *) cm; return FILTER_ELEMENT_CLASS (parent_class)->eq (fe, cm) && gdk_color_equal (&fc->color, &cc->color); } static void xml_create (FilterElement *fe, xmlNodePtr node) { /* parent implementation */ FILTER_ELEMENT_CLASS (parent_class)->xml_create (fe, node); } static xmlNodePtr xml_encode (FilterElement *fe) { FilterColour *fc = (FilterColour *)fe; xmlNodePtr value; gchar spec[16]; g_snprintf (spec, sizeof (spec), "#%04x%04x%04x", fc->color.red, fc->color.green, fc->color.blue); value = xmlNewNode(NULL, (const unsigned char *)"value"); xmlSetProp(value, (const unsigned char *)"type", (const unsigned char *)"colour"); xmlSetProp(value, (const unsigned char *)"name", (unsigned char *)fe->name); xmlSetProp(value, (const unsigned char *)"spec", (unsigned char *)spec); return value; } static int xml_decode (FilterElement *fe, xmlNodePtr node) { FilterColour *fc = (FilterColour *)fe; xmlChar *prop; xmlFree (fe->name); fe->name = (char *)xmlGetProp(node, (const unsigned char *)"name"); prop = xmlGetProp(node, (const unsigned char *)"spec"); if (prop != NULL) { gdk_color_parse((char *)prop, &fc->color); xmlFree (prop); } else { /* try reading the old RGB properties */ prop = xmlGetProp(node, (const unsigned char *)"red"); sscanf((char *)prop, "%" G_GINT16_MODIFIER "x", &fc->color.red); xmlFree (prop); prop = xmlGetProp(node, (const unsigned char *)"green"); sscanf((char *)prop, "%" G_GINT16_MODIFIER "x", &fc->color.green); xmlFree (prop); prop = xmlGetProp(node, (const unsigned char *)"blue"); sscanf((char *)prop, "%" G_GINT16_MODIFIER "x", &fc->color.blue); xmlFree (prop); } return 0; } static void set_color (GtkColorButton *color_button, FilterColour *fc) { gtk_color_button_get_color (color_button, &fc->color); } static GtkWidget * get_widget (FilterElement *fe) { FilterColour *fc = (FilterColour *) fe; GtkWidget *color_button; color_button = gtk_color_button_new_with_color (&fc->color); gtk_widget_show (color_button); g_signal_connect ( G_OBJECT (color_button), "color_set", G_CALLBACK (set_color), fe); return color_button; } static void build_code (FilterElement *fe, GString *out, struct _FilterPart *ff) { return; } static void format_sexp (FilterElement *fe, GString *out) { FilterColour *fc = (FilterColour *)fe; gchar spec[16]; g_snprintf (spec, sizeof (spec), "#%04x%04x%04x", fc->color.red, fc->color.green, fc->color.blue); e_sexp_encode_string (out, spec); }