/*
* This file is a part of hildon
*
* Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
*
* Author: Kuisma Salonen <kuisma.salonen@nokia.com>
* Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
*
* 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; version 2.1 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/**
* SECTION:hildon-color-chooser
* @short_description: A widget used to select a color from an HSV colorspace.
* @see_also: #HildonColorChooserDialog
*
* HildonColorChooser is a widget that displays an HSV colorspace.
* The user can manipulate the colorspace and easily select and shade of any color
* he wants.
*
* Normally you should not need to use this widget directly. Using #HildonColorButton or
* #HildonColorChooserDialog is much more handy.
*
*/
#undef HILDON_DISABLE_DEPRECATED
#include "hildon-color-chooser.h"
#include "hildon-color-chooser-private.h"
static GtkWidgetClass* parent_class = NULL;
/* "crosshair" is hardcoded for now */
static gchar crosshair[64] = { 0, 0, 0, 2, 2, 0, 0, 0,
0, 2, 2, 3, 3, 2, 2, 0,
0, 2, 3, 0, 0, 3, 2, 0,
2, 3, 0, 0, 0, 0, 3, 2,
2, 3, 0, 0, 0, 0, 3, 2,
0, 2, 3, 0, 0, 3, 2, 0,
0, 2, 2, 3, 3, 2, 2, 0,
0, 0, 0, 2, 2, 0, 0, 0};
static void
hildon_color_chooser_init (HildonColorChooser *self);
static void
hildon_color_chooser_class_init (HildonColorChooserClass *klass);
static void
hildon_color_chooser_dispose (HildonColorChooser *self);
static