gtk2/gtk/gtkcolorbutton.c

984 lines
29 KiB
C
Raw Normal View History

2003-07-01 19:52:07 +00:00
/*
* GTK - The GIMP Toolkit
2003-07-01 19:52:07 +00:00
* Copyright (C) 1998, 1999 Red Hat, Inc.
* All rights reserved.
*
* This Library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
2012-02-27 13:01:10 +00:00
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
2003-07-01 19:52:07 +00:00
*/
/* Color picker button for GNOME
*
* Author: Federico Mena <federico@nuclecu.unam.mx>
*
* Modified by the GTK+ Team and others 2003. See the AUTHORS
* file for a list of people on the GTK+ Team. See the ChangeLog
* files for a list of changes. These files are distributed with
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
2003-07-01 19:52:07 +00:00
*/
#define GDK_DISABLE_DEPRECATION_WARNINGS
#include "config.h"
2003-07-01 19:52:07 +00:00
#include "gtkcolorbutton.h"
2003-07-01 19:52:07 +00:00
#include "gtkbutton.h"
#include "gtkmain.h"
#include "gtkcolorchooser.h"
#include "gtkcolorchooserprivate.h"
#include "gtkcolorchooserdialog.h"
2003-07-01 19:52:07 +00:00
#include "gtkdnd.h"
#include "gtkdrawingarea.h"
#include "gtkmarshalers.h"
#include "gtkprivate.h"
2003-07-01 19:52:07 +00:00
#include "gtkintl.h"
/**
* SECTION:gtkcolorbutton
* @Short_description: A button to launch a color selection dialog
* @Title: GtkColorButton
* @See_also: #GtkColorSelectionDialog, #GtkFontButton
*
* The #GtkColorButton is a button which displays the currently selected
* color an allows to open a color selection dialog to change the color.
* It is suitable widget for selecting a color in a preference dialog.
*/
2003-07-01 19:52:07 +00:00
/* Size of checks and gray levels for alpha compositing checkerboard */
#define CHECK_SIZE 4
#define CHECK_DARK (1.0 / 3.0)
#define CHECK_LIGHT (2.0 / 3.0)
2003-07-01 19:52:07 +00:00
struct _GtkColorButtonPrivate
2003-07-01 19:52:07 +00:00
{
Use a GtkAlignment rather than a GtkDrawingArea to draw the swatch in to 2005-05-11 Owen Taylor <otaylor@redhat.com> * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea to draw the swatch in to avoid having an extraneous window. * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe color when !has_opacity. 2005-05-10 Owen Taylor <otaylor@redhat.com> * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source files for Cairo convenience functionality. * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a convenience functions to add GdkRectangle, GdkRegion to a cairo path. * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c gtk/gtkstyle.c: Use gdk_cairo_rectangle/region(). * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename gdk_drawable_create_cairo_context() to gdk_cairo_create(). * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Rename gdk_pixbuf_set_as_cairo_source() to gdk_cairo_set_source_pixbuf(). * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c: Adjust for renames. * gdk/gdk.symbols: Update. * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix coordinate system problem that was causing the wrong portions to be invalidated. * gtk/gtkcellrenderer.c (gtk_cell_renderer_render) gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render) gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render) gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render) gtk/gtkcellview.c (gtk_cell_view_expose) gtk/gtkdnd.c (gtk_drag_highlight_expose) gtk/gtkentry.c (gtk_entry_draw_text) gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization. * gtk/gtkcalendar.[ch]: Beat into something roughly resembling GTK+ style ... use instance-private data and standard names for private structure, etc. Move function docs inline. * gtk/gtkcalendar.[ch]: Switch to drawing everything in expose. Switch drawing to Cairo. * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate gtk_calendar_freeze/thaw
2005-05-11 19:16:19 +00:00
GtkWidget *draw_area; /* Widget where we draw the color sample */
2003-07-01 19:52:07 +00:00
GtkWidget *cs_dialog; /* Color selection dialog */
2003-07-01 19:52:07 +00:00
gchar *title; /* Title for the color selection window */
GdkRGBA rgba;
2003-07-01 19:52:07 +00:00
guint use_alpha : 1; /* Use alpha or not */
};
/* Properties */
enum
2003-07-01 19:52:07 +00:00
{
PROP_0,
PROP_USE_ALPHA,
PROP_TITLE,
PROP_COLOR,
PROP_ALPHA,
PROP_RGBA
2003-07-01 19:52:07 +00:00
};
/* Signals */
enum
2003-07-01 19:52:07 +00:00
{
COLOR_SET,
LAST_SIGNAL
};
/* gobject signals */
static void gtk_color_button_finalize (GObject *object);
static void gtk_color_button_set_property (GObject *object,
guint param_id,
const GValue *value,
GParamSpec *pspec);
2003-07-01 19:52:07 +00:00
static void gtk_color_button_get_property (GObject *object,
guint param_id,
GValue *value,
GParamSpec *pspec);
2003-07-01 19:52:07 +00:00
/* gtkwidget signals */
static void gtk_color_button_state_changed (GtkWidget *widget,
GtkStateType previous_state);
2003-07-01 19:52:07 +00:00
/* gtkbutton signals */
static void gtk_color_button_clicked (GtkButton *button);
/* source side drag signals */
static void gtk_color_button_drag_begin (GtkWidget *widget,
GdkDragContext *context,
gpointer data);
2003-07-01 19:52:07 +00:00
static void gtk_color_button_drag_data_get (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection_data,
guint info,
guint time,
GtkColorButton *button);
2003-07-01 19:52:07 +00:00
/* target side drag signals */
static void gtk_color_button_drag_data_received (GtkWidget *widget,
GdkDragContext *context,
gint x,
gint y,
GtkSelectionData *selection_data,
guint info,
guint32 time,
GtkColorButton *button);
2003-07-01 19:52:07 +00:00
static guint color_button_signals[LAST_SIGNAL] = { 0 };
static const GtkTargetEntry drop_types[] = { { "application/x-color", 0, 0 } };
2003-07-01 19:52:07 +00:00
static void gtk_color_button_iface_init (GtkColorChooserInterface *iface);
G_DEFINE_TYPE_WITH_CODE (GtkColorButton, gtk_color_button, GTK_TYPE_BUTTON,
G_IMPLEMENT_INTERFACE (GTK_TYPE_COLOR_CHOOSER,
gtk_color_button_iface_init))
2003-07-01 19:52:07 +00:00
static void
gtk_color_button_class_init (GtkColorButtonClass *klass)
{
GObjectClass *gobject_class;
GtkWidgetClass *widget_class;
GtkButtonClass *button_class;
gobject_class = G_OBJECT_CLASS (klass);
widget_class = GTK_WIDGET_CLASS (klass);
button_class = GTK_BUTTON_CLASS (klass);
gobject_class->get_property = gtk_color_button_get_property;
gobject_class->set_property = gtk_color_button_set_property;
gobject_class->finalize = gtk_color_button_finalize;
widget_class->state_changed = gtk_color_button_state_changed;
button_class->clicked = gtk_color_button_clicked;
klass->color_set = NULL;
/**
* GtkColorButton:use-alpha:
*
2012-02-04 00:40:36 +00:00
* If this property is set to %TRUE, the color swatch on the button is
* rendered against a checkerboard background to show its opacity and
* the opacity slider is displayed in the color selection dialog.
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
*/
g_object_class_install_property (gobject_class,
PROP_USE_ALPHA,
g_param_spec_boolean ("use-alpha", P_("Use alpha"),
2010-08-10 08:23:49 +00:00
P_("Whether to give the color an alpha value"),
2003-07-01 19:52:07 +00:00
FALSE,
GTK_PARAM_READWRITE));
2003-07-01 19:52:07 +00:00
/**
* GtkColorButton:title:
*
* The title of the color selection dialog
*
* Since: 2.4
*/
g_object_class_install_property (gobject_class,
PROP_TITLE,
g_param_spec_string ("title",
P_("Title"),
P_("The title of the color selection dialog"),
_("Pick a Color"),
GTK_PARAM_READWRITE));
2003-07-01 19:52:07 +00:00
/**
* GtkColorButton:color:
*
* The selected color.
*
* Since: 2.4
*
* Deprecated: 3.4: Use #GtkColorButton:rgba instead.
2003-07-01 19:52:07 +00:00
*/
g_object_class_install_property (gobject_class,
PROP_COLOR,
g_param_spec_boxed ("color",
P_("Current Color"),
P_("The selected color"),
2003-07-01 19:52:07 +00:00
GDK_TYPE_COLOR,
GTK_PARAM_READWRITE | G_PARAM_DEPRECATED));
2003-07-01 19:52:07 +00:00
/**
* GtkColorButton:alpha:
*
* The selected opacity value (0 fully transparent, 65535 fully opaque).
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
*/
g_object_class_install_property (gobject_class,
PROP_ALPHA,
g_param_spec_uint ("alpha",
P_("Current Alpha"),
P_("The selected opacity value (0 fully transparent, 65535 fully opaque)"),
2003-07-01 19:52:07 +00:00
0, 65535, 65535,
GTK_PARAM_READWRITE));
/**
* GtkColorButton:rgba:
*
* The RGBA color.
*
* Since: 3.0
*/
g_object_class_install_property (gobject_class,
PROP_RGBA,
g_param_spec_boxed ("rgba",
P_("Current RGBA Color"),
P_("The selected RGBA color"),
GDK_TYPE_RGBA,
GTK_PARAM_READWRITE));
2003-07-01 19:52:07 +00:00
/**
* GtkColorButton::color-set:
* @widget: the object which received the signal.
*
* The ::color-set signal is emitted when the user selects a color.
* When handling this signal, use gtk_color_button_get_rgba() to
* find out which color was just selected.
*
* Note that this signal is only emitted when the <emphasis>user</emphasis>
* changes the color. If you need to react to programmatic color changes
* as well, use the notify::color signal.
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
*/
color_button_signals[COLOR_SET] = g_signal_new (I_("color-set"),
G_TYPE_FROM_CLASS (gobject_class),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (GtkColorButtonClass, color_set),
NULL, NULL,
_gtk_marshal_VOID__VOID,
G_TYPE_NONE, 0);
2003-07-01 19:52:07 +00:00
2006-05-31 04:38:16 +00:00
g_type_class_add_private (gobject_class, sizeof (GtkColorButtonPrivate));
2003-07-01 19:52:07 +00:00
}
static gboolean
gtk_color_button_has_alpha (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
return button->priv->use_alpha && button->priv->rgba.alpha < 1;
}
2003-07-01 19:52:07 +00:00
/* Handle exposure events for the color picker's drawing area */
static gint
gtk_color_button_draw_cb (GtkWidget *widget,
2010-09-08 15:58:45 +00:00
cairo_t *cr,
gpointer data)
2003-07-01 19:52:07 +00:00
{
GtkColorButton *button = GTK_COLOR_BUTTON (data);
cairo_pattern_t *checkered;
2003-07-01 19:52:07 +00:00
if (gtk_color_button_has_alpha (button))
{
cairo_set_source_rgb (cr, CHECK_DARK, CHECK_DARK, CHECK_DARK);
cairo_paint (cr);
2003-07-01 19:52:07 +00:00
cairo_set_source_rgb (cr, CHECK_LIGHT, CHECK_LIGHT, CHECK_LIGHT);
cairo_scale (cr, CHECK_SIZE, CHECK_SIZE);
2003-07-01 19:52:07 +00:00
checkered = _gtk_color_chooser_get_checkered_pattern ();
cairo_mask (cr, checkered);
cairo_pattern_destroy (checkered);
gdk_cairo_set_source_rgba (cr, &button->priv->rgba);
}
else
{
cairo_set_source_rgb (cr,
button->priv->rgba.red,
button->priv->rgba.green,
button->priv->rgba.blue);
}
2003-07-01 19:52:07 +00:00
cairo_paint (cr);
2003-07-01 19:52:07 +00:00
if (!gtk_widget_is_sensitive (GTK_WIDGET (button)))
2003-07-01 19:52:07 +00:00
{
GtkStyleContext *context;
GdkRGBA color;
context = gtk_widget_get_style_context (widget);
gtk_style_context_get_background_color (context, GTK_STATE_FLAG_INSENSITIVE, &color);
gdk_cairo_set_source_rgba (cr, &color);
checkered = _gtk_color_chooser_get_checkered_pattern ();
cairo_mask (cr, checkered);
cairo_pattern_destroy (checkered);
2003-07-01 19:52:07 +00:00
}
return FALSE;
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_state_changed (GtkWidget *widget,
GtkStateType previous_state)
2003-07-01 19:52:07 +00:00
{
gtk_widget_queue_draw (widget);
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_drag_data_received (GtkWidget *widget,
GdkDragContext *context,
gint x,
gint y,
GtkSelectionData *selection_data,
guint info,
guint32 time,
GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
gint length;
2003-07-01 19:52:07 +00:00
guint16 *dropped;
length = gtk_selection_data_get_length (selection_data);
if (length < 0)
2003-07-01 19:52:07 +00:00
return;
/* We accept drops with the wrong format, since the KDE color
* chooser incorrectly drops application/x-color with format 8.
*/
if (length != 8)
2003-07-01 19:52:07 +00:00
{
g_warning ("%s: Received invalid color data", G_STRFUNC);
2003-07-01 19:52:07 +00:00
return;
}
dropped = (guint16 *) gtk_selection_data_get_data (selection_data);
2003-07-01 19:52:07 +00:00
button->priv->rgba.red = dropped[0] / 65535.;
button->priv->rgba.green = dropped[1] / 65535.;
button->priv->rgba.blue = dropped[2] / 65535.;
button->priv->rgba.alpha = dropped[3] / 65535.;
2003-07-01 19:52:07 +00:00
gtk_widget_queue_draw (button->priv->draw_area);
2003-07-01 19:52:07 +00:00
g_signal_emit (button, color_button_signals[COLOR_SET], 0);
2003-07-01 19:52:07 +00:00
g_object_freeze_notify (G_OBJECT (button));
g_object_notify (G_OBJECT (button), "color");
g_object_notify (G_OBJECT (button), "alpha");
g_object_notify (G_OBJECT (button), "rgba");
g_object_thaw_notify (G_OBJECT (button));
2003-07-01 19:52:07 +00:00
}
static void
set_color_icon (GdkDragContext *context,
GdkRGBA *rgba)
2003-07-01 19:52:07 +00:00
{
cairo_surface_t *surface;
cairo_t *cr;
2003-07-01 19:52:07 +00:00
surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24,
48, 32);
cr = cairo_create (surface);
2003-07-01 19:52:07 +00:00
gdk_cairo_set_source_rgba (cr, rgba);
cairo_paint (cr);
2003-07-01 19:52:07 +00:00
gtk_drag_set_icon_surface (context, surface);
cairo_destroy (cr);
cairo_surface_destroy (surface);
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_drag_begin (GtkWidget *widget,
GdkDragContext *context,
gpointer data)
2003-07-01 19:52:07 +00:00
{
GtkColorButton *button = data;
set_color_icon (context, &button->priv->rgba);
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_drag_data_get (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection_data,
guint info,
guint time,
GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
guint16 dropped[4];
dropped[0] = (guint16) (button->priv->rgba.red * 65535);
dropped[1] = (guint16) (button->priv->rgba.green * 65535);
dropped[2] = (guint16) (button->priv->rgba.blue * 65535);
dropped[3] = (guint16) (button->priv->rgba.alpha * 65535);
2003-07-01 19:52:07 +00:00
gtk_selection_data_set (selection_data,
gtk_selection_data_get_target (selection_data),
16, (guchar *)dropped, 8);
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_init (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
PangoLayout *layout;
PangoRectangle rect;
/* Create the widgets */
button->priv = G_TYPE_INSTANCE_GET_PRIVATE (button,
GTK_TYPE_COLOR_BUTTON,
GtkColorButtonPrivate);
2003-07-01 19:52:07 +00:00
button->priv->draw_area = gtk_drawing_area_new ();
layout = gtk_widget_create_pango_layout (GTK_WIDGET (button), "Black");
2003-07-01 19:52:07 +00:00
pango_layout_get_pixel_extents (layout, NULL, &rect);
g_object_unref (layout);
gtk_widget_set_size_request (button->priv->draw_area,
rect.width, rect.height);
g_signal_connect (button->priv->draw_area, "draw",
G_CALLBACK (gtk_color_button_draw_cb), button);
gtk_container_add (GTK_CONTAINER (button), button->priv->draw_area);
gtk_widget_show (button->priv->draw_area);
2003-07-01 19:52:07 +00:00
button->priv->title = g_strdup (_("Pick a Color")); /* default title */
2003-07-01 19:52:07 +00:00
/* Start with opaque black, alpha disabled */
button->priv->rgba.red = 0;
button->priv->rgba.green = 0;
button->priv->rgba.blue = 0;
button->priv->rgba.alpha = 1;
button->priv->use_alpha = FALSE;
2003-07-01 19:52:07 +00:00
gtk_drag_dest_set (GTK_WIDGET (button),
2003-07-01 19:52:07 +00:00
GTK_DEST_DEFAULT_MOTION |
GTK_DEST_DEFAULT_HIGHLIGHT |
GTK_DEST_DEFAULT_DROP,
drop_types, 1, GDK_ACTION_COPY);
gtk_drag_source_set (GTK_WIDGET (button),
2003-07-01 19:52:07 +00:00
GDK_BUTTON1_MASK|GDK_BUTTON3_MASK,
drop_types, 1,
GDK_ACTION_COPY);
g_signal_connect (button, "drag-begin",
G_CALLBACK (gtk_color_button_drag_begin), button);
g_signal_connect (button, "drag-data-received",
G_CALLBACK (gtk_color_button_drag_data_received), button);
g_signal_connect (button, "drag-data-get",
G_CALLBACK (gtk_color_button_drag_data_get), button);
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_finalize (GObject *object)
{
GtkColorButton *button = GTK_COLOR_BUTTON (object);
2003-07-01 19:52:07 +00:00
if (button->priv->cs_dialog != NULL)
gtk_widget_destroy (button->priv->cs_dialog);
button->priv->cs_dialog = NULL;
2003-07-01 19:52:07 +00:00
g_free (button->priv->title);
button->priv->title = NULL;
2003-07-01 19:52:07 +00:00
2006-05-02 23:56:43 +00:00
G_OBJECT_CLASS (gtk_color_button_parent_class)->finalize (object);
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_new:
*
* Creates a new color button.
*
* This returns a widget in the form of a small button containing
* a swatch representing the current selected color. When the button
* is clicked, a color-selection dialog will open, allowing the user
* to select a color. The swatch will be updated to reflect the new
* color when the user finishes.
2003-07-01 19:52:07 +00:00
*
* Returns: a new color button
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
*/
GtkWidget *
gtk_color_button_new (void)
{
return g_object_new (GTK_TYPE_COLOR_BUTTON, NULL);
}
/**
* gtk_color_button_new_with_color:
* @color: A #GdkColor to set the current color with
2003-07-01 19:52:07 +00:00
*
* Creates a new color button.
2003-07-01 19:52:07 +00:00
*
* Returns: a new color button
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
*
* Deprecated: 3.4: Use gtk_color_button_new_with_rgba() instead.
2003-07-01 19:52:07 +00:00
*/
GtkWidget *
Fix #105497; constify uses of GdkColor. 2004-01-26 Federico Mena Quintero <federico@ximian.com> Fix #105497; constify uses of GdkColor. * gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify. (gdk_gc_set_rgb_bg_color): Constify. (gdk_gc_set_foreground): Constify. * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify. * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify. * gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify. * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify. * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify. * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify. * gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify. * gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify. * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify. * gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify. (gdk_draw_layout_with_colors): Constify. * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify. (gdk_pixmap_colormap_create_from_xpm): Constify. (gdk_pixmap_create_from_xpm): Constify. (gdk_pixmap_colormap_create_from_xpm_d): Constify. (gdk_pixmap_create_from_xpm_d): Constify. * gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify. * gtk/gtkclist.c (gtk_clist_set_foreground): Constify. (gtk_clist_set_background): Constify. * gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify. (gtk_color_button_set_color): Constify. * gtk/gtkcolorsel.c (gtk_color_selection_set_current_color): Constify and add a check for color != NULL. (gtk_color_selection_get_current_color): Add a check for color != NULL. (gtk_color_selection_set_previous_color): Constify and add a check for color != NULL. (gtk_color_selection_get_previous_color): Add a check for color != NULL. * gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify. (gtk_ctree_node_set_background): Constify. * gtk/gtktext.c (gtk_text_insert): Constify. (insert_text_property): Constify. (text_properties_equal): Constify. (new_text_property): Constify. * gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify. (gtk_widget_modify_fg): Constify. (gtk_widget_modify_bg): Constify. (gtk_widget_modify_text): Constify. (gtk_widget_modify_base): Constify.
2004-01-26 20:21:09 +00:00
gtk_color_button_new_with_color (const GdkColor *color)
2003-07-01 19:52:07 +00:00
{
return g_object_new (GTK_TYPE_COLOR_BUTTON, "color", color, NULL);
}
2010-10-23 21:02:40 +00:00
/**
* gtk_color_button_new_with_rgba:
* @rgba: A #GdkRGBA to set the current color with
2010-10-23 21:02:40 +00:00
*
* Creates a new color button.
*
* Returns: a new color button
*
* Since: 3.0
*/
GtkWidget *
gtk_color_button_new_with_rgba (const GdkRGBA *rgba)
{
return g_object_new (GTK_TYPE_COLOR_BUTTON, "rgba", rgba, NULL);
}
2003-07-01 19:52:07 +00:00
static gboolean
dialog_destroy (GtkWidget *widget,
gpointer data)
2003-07-01 19:52:07 +00:00
{
GtkColorButton *button = GTK_COLOR_BUTTON (data);
button->priv->cs_dialog = NULL;
2003-07-01 19:52:07 +00:00
return FALSE;
}
static void
dialog_response (GtkDialog *dialog,
gint response,
gpointer data)
2003-07-01 19:52:07 +00:00
{
if (response == GTK_RESPONSE_CANCEL)
gtk_widget_hide (GTK_WIDGET (dialog));
else if (response == GTK_RESPONSE_OK)
{
GtkColorButton *button = GTK_COLOR_BUTTON (data);
gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (dialog),
&button->priv->rgba);
gtk_widget_hide (GTK_WIDGET (dialog));
gtk_widget_queue_draw (button->priv->draw_area);
g_signal_emit (button, color_button_signals[COLOR_SET], 0);
g_object_freeze_notify (G_OBJECT (button));
g_object_notify (G_OBJECT (button), "color");
g_object_notify (G_OBJECT (button), "alpha");
g_object_notify (G_OBJECT (button), "rgba");
g_object_thaw_notify (G_OBJECT (button));
}
2003-07-01 19:52:07 +00:00
}
/* Create the dialog and connects its buttons */
2003-07-01 19:52:07 +00:00
static void
ensure_dialog (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
GtkWidget *parent, *dialog;
2003-07-01 19:52:07 +00:00
if (button->priv->cs_dialog != NULL)
return;
parent = gtk_widget_get_toplevel (GTK_WIDGET (button));
button->priv->cs_dialog = dialog = gtk_color_chooser_dialog_new (button->priv->title, NULL);
2003-07-01 19:52:07 +00:00
if (gtk_widget_is_toplevel (parent) && GTK_IS_WINDOW (parent))
{
if (GTK_WINDOW (parent) != gtk_window_get_transient_for (GTK_WINDOW (dialog)))
gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (parent));
gtk_window_set_modal (GTK_WINDOW (dialog),
gtk_window_get_modal (GTK_WINDOW (parent)));
}
g_signal_connect (dialog, "response",
G_CALLBACK (dialog_response), button);
g_signal_connect (dialog, "destroy",
G_CALLBACK (dialog_destroy), button);
}
static void
gtk_color_button_clicked (GtkButton *b)
{
GtkColorButton *button = GTK_COLOR_BUTTON (b);
/* if dialog already exists, make sure it's shown and raised */
ensure_dialog (button);
2003-07-01 19:52:07 +00:00
gtk_color_chooser_set_use_alpha (GTK_COLOR_CHOOSER (button->priv->cs_dialog),
button->priv->use_alpha);
2003-07-01 19:52:07 +00:00
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (button->priv->cs_dialog),
&button->priv->rgba);
gtk_window_present (GTK_WINDOW (button->priv->cs_dialog));
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_set_color:
* @button: a #GtkColorButton
* @color: A #GdkColor to set the current color with
2003-07-01 19:52:07 +00:00
*
* Sets the current color to be @color.
*
* Since: 2.4
*
2012-02-04 00:40:36 +00:00
* Deprecated: Use gtk_color_chooser_set_rgba() instead.
*/
2003-07-01 19:52:07 +00:00
void
gtk_color_button_set_color (GtkColorButton *button,
const GdkColor *color)
2003-07-01 19:52:07 +00:00
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
g_return_if_fail (color != NULL);
2003-07-01 19:52:07 +00:00
button->priv->rgba.red = color->red / 65535.;
button->priv->rgba.green = color->green / 65535.;
button->priv->rgba.blue = color->blue / 65535.;
2003-07-01 19:52:07 +00:00
gtk_widget_queue_draw (button->priv->draw_area);
g_object_notify (G_OBJECT (button), "color");
g_object_notify (G_OBJECT (button), "rgba");
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_set_alpha:
* @button: a #GtkColorButton
* @alpha: an integer between 0 and 65535
2003-07-01 19:52:07 +00:00
*
* Sets the current opacity to be @alpha.
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_set_rgba() instead.
*/
2003-07-01 19:52:07 +00:00
void
gtk_color_button_set_alpha (GtkColorButton *button,
guint16 alpha)
2003-07-01 19:52:07 +00:00
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
2003-07-01 19:52:07 +00:00
button->priv->rgba.alpha = alpha / 65535.;
gtk_widget_queue_draw (button->priv->draw_area);
g_object_notify (G_OBJECT (button), "alpha");
g_object_notify (G_OBJECT (button), "rgba");
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_get_color:
* @button: a #GtkColorButton
* @color: (out): a #GdkColor to fill in with the current color
2003-07-01 19:52:07 +00:00
*
* Sets @color to be the current color in the #GtkColorButton widget.
*
* Since: 2.4
*
2012-02-04 00:40:36 +00:00
* Deprecated: 3.4: Use gtk_color_chooser_get_rgba() instead.
*/
2003-07-01 19:52:07 +00:00
void
gtk_color_button_get_color (GtkColorButton *button,
GdkColor *color)
2003-07-01 19:52:07 +00:00
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
color->red = (guint16) (button->priv->rgba.red * 65535);
color->green = (guint16) (button->priv->rgba.green * 65535);
color->blue = (guint16) (button->priv->rgba.blue * 65535);
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_get_alpha:
* @button: a #GtkColorButton
2003-07-01 19:52:07 +00:00
*
* Returns the current alpha value.
2003-07-01 19:52:07 +00:00
*
* Return value: an integer between 0 and 65535
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_get_rgba() instead.
*/
2003-07-01 19:52:07 +00:00
guint16
gtk_color_button_get_alpha (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
g_return_val_if_fail (GTK_IS_COLOR_BUTTON (button), 0);
return (guint16) (button->priv->rgba.alpha * 65535);
}
/**
* gtk_color_button_set_rgba: (skip)
* @button: a #GtkColorButton
* @rgba: a #GdkRGBA to set the current color with
*
* Sets the current color to be @rgba.
*
* Since: 3.0
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_set_rgba() instead.
*/
void
gtk_color_button_set_rgba (GtkColorButton *button,
const GdkRGBA *rgba)
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
g_return_if_fail (rgba != NULL);
button->priv->rgba = *rgba;
gtk_widget_queue_draw (button->priv->draw_area);
g_object_notify (G_OBJECT (button), "color");
g_object_notify (G_OBJECT (button), "alpha");
g_object_notify (G_OBJECT (button), "rgba");
}
/**
* gtk_color_button_get_rgba: (skip)
* @button: a #GtkColorButton
* @rgba: (out): a #GdkRGBA to fill in with the current color
*
* Sets @rgba to be the current color in the #GtkColorButton widget.
*
* Since: 3.0
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_get_rgba() instead.
*/
void
gtk_color_button_get_rgba (GtkColorButton *button,
GdkRGBA *rgba)
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
g_return_if_fail (rgba != NULL);
*rgba = button->priv->rgba;
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_set_use_alpha:
* @button: a #GtkColorButton
* @use_alpha: %TRUE if color button should use alpha channel, %FALSE if not
2003-07-01 19:52:07 +00:00
*
* Sets whether or not the color button should use the alpha channel.
*
* Since: 2.4
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_set_use_alpha() instead.
2003-07-01 19:52:07 +00:00
*/
void
gtk_color_button_set_use_alpha (GtkColorButton *button,
gboolean use_alpha)
2003-07-01 19:52:07 +00:00
{
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
2003-07-01 19:52:07 +00:00
use_alpha = (use_alpha != FALSE);
if (button->priv->use_alpha != use_alpha)
2003-07-01 19:52:07 +00:00
{
button->priv->use_alpha = use_alpha;
2003-07-01 19:52:07 +00:00
gtk_widget_queue_draw (button->priv->draw_area);
2003-07-01 19:52:07 +00:00
g_object_notify (G_OBJECT (button), "use-alpha");
2003-07-01 19:52:07 +00:00
}
}
/**
* gtk_color_button_get_use_alpha:
* @button: a #GtkColorButton
2003-07-01 19:52:07 +00:00
*
* Does the color selection dialog use the alpha channel ?
2003-07-01 19:52:07 +00:00
*
* Returns: %TRUE if the color sample uses alpha channel, %FALSE if not
2003-07-01 19:52:07 +00:00
*
* Since: 2.4
2012-02-04 00:40:36 +00:00
*
* Deprecated: 3.4: Use gtk_color_chooser_get_use_alpha() instead.
2003-07-01 19:52:07 +00:00
*/
gboolean
gtk_color_button_get_use_alpha (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
g_return_val_if_fail (GTK_IS_COLOR_BUTTON (button), FALSE);
2003-07-01 19:52:07 +00:00
return button->priv->use_alpha;
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_set_title:
* @button: a #GtkColorButton
* @title: String containing new window title
2003-07-01 19:52:07 +00:00
*
* Sets the title for the color selection dialog.
*
* Since: 2.4
*/
void
gtk_color_button_set_title (GtkColorButton *button,
const gchar *title)
2003-07-01 19:52:07 +00:00
{
gchar *old_title;
g_return_if_fail (GTK_IS_COLOR_BUTTON (button));
2003-07-01 19:52:07 +00:00
old_title = button->priv->title;
button->priv->title = g_strdup (title);
2003-07-01 19:52:07 +00:00
g_free (old_title);
if (button->priv->cs_dialog)
gtk_window_set_title (GTK_WINDOW (button->priv->cs_dialog),
button->priv->title);
g_object_notify (G_OBJECT (button), "title");
2003-07-01 19:52:07 +00:00
}
/**
* gtk_color_button_get_title:
* @button: a #GtkColorButton
2003-07-01 19:52:07 +00:00
*
* Gets the title of the color selection dialog.
*
* Returns: An internal string, do not free the return value
*
* Since: 2.4
*/
2011-06-06 18:13:44 +00:00
const gchar *
gtk_color_button_get_title (GtkColorButton *button)
2003-07-01 19:52:07 +00:00
{
g_return_val_if_fail (GTK_IS_COLOR_BUTTON (button), NULL);
2003-07-01 19:52:07 +00:00
return button->priv->title;
2003-07-01 19:52:07 +00:00
}
static void
gtk_color_button_set_property (GObject *object,
guint param_id,
const GValue *value,
GParamSpec *pspec)
2003-07-01 19:52:07 +00:00
{
GtkColorButton *button = GTK_COLOR_BUTTON (object);
2003-07-01 19:52:07 +00:00
switch (param_id)
2003-07-01 19:52:07 +00:00
{
case PROP_USE_ALPHA:
gtk_color_button_set_use_alpha (button, g_value_get_boolean (value));
2003-07-01 19:52:07 +00:00
break;
case PROP_TITLE:
gtk_color_button_set_title (button, g_value_get_string (value));
2003-07-01 19:52:07 +00:00
break;
case PROP_COLOR:
{
GdkColor *color;
GdkRGBA rgba;
color = g_value_get_boxed (value);
rgba.red = color->red / 65535.0;
rgba.green = color->green / 65535.0;
rgba.blue = color->blue / 65535.0;
rgba.alpha = 1.0;
gtk_color_button_set_rgba (button, &rgba);
}
2003-07-01 19:52:07 +00:00
break;
case PROP_ALPHA:
gtk_color_button_set_alpha (button, g_value_get_uint (value));
2003-07-01 19:52:07 +00:00
break;
case PROP_RGBA:
gtk_color_button_set_rgba (button, g_value_get_boxed (value));
break;
2003-07-01 19:52:07 +00:00
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
}
}
static void
gtk_color_button_get_property (GObject *object,
guint param_id,
GValue *value,
GParamSpec *pspec)
2003-07-01 19:52:07 +00:00
{
GtkColorButton *button = GTK_COLOR_BUTTON (object);
2003-07-01 19:52:07 +00:00
switch (param_id)
2003-07-01 19:52:07 +00:00
{
case PROP_USE_ALPHA:
g_value_set_boolean (value, gtk_color_button_get_use_alpha (button));
2003-07-01 19:52:07 +00:00
break;
case PROP_TITLE:
g_value_set_string (value, gtk_color_button_get_title (button));
2003-07-01 19:52:07 +00:00
break;
case PROP_COLOR:
{
GdkColor color;
GdkRGBA rgba;
gtk_color_button_get_rgba (button, &rgba);
color.red = (guint16) (rgba.red * 65535 + 0.5);
color.green = (guint16) (rgba.green * 65535 + 0.5);
color.blue = (guint16) (rgba.blue * 65535 + 0.5);
g_value_set_boxed (value, &color);
}
2003-07-01 19:52:07 +00:00
break;
case PROP_ALPHA:
g_value_set_uint (value, gtk_color_button_get_alpha (button));
2003-07-01 19:52:07 +00:00
break;
case PROP_RGBA:
{
GdkRGBA rgba;
gtk_color_button_get_rgba (button, &rgba);
g_value_set_boxed (value, &rgba);
}
break;
2003-07-01 19:52:07 +00:00
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
break;
}
}
static void
gtk_color_button_add_palette (GtkColorChooser *chooser,
GtkOrientation orientation,
gint colors_per_line,
gint n_colors,
GdkRGBA *colors)
{
GtkColorButton *button = GTK_COLOR_BUTTON (chooser);
ensure_dialog (button);
gtk_color_chooser_add_palette (GTK_COLOR_CHOOSER (button->priv->cs_dialog),
orientation, colors_per_line, n_colors, colors);
}
typedef void (* get_rgba) (GtkColorChooser *, GdkRGBA *);
typedef void (* set_rgba) (GtkColorChooser *, const GdkRGBA *);
static void
gtk_color_button_iface_init (GtkColorChooserInterface *iface)
{
iface->get_rgba = (get_rgba)gtk_color_button_get_rgba;
iface->set_rgba = (set_rgba)gtk_color_button_set_rgba;
iface->add_palette = gtk_color_button_add_palette;
}