2012-01-29 15:42:34 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-01-29 15:42:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-02-09 00:36:10 +00:00
|
|
|
#include "gtkcolorswatchprivate.h"
|
2012-02-04 05:02:49 +00:00
|
|
|
|
2012-02-14 17:16:56 +00:00
|
|
|
#include "gtkcolorchooserprivate.h"
|
2012-01-29 15:42:34 +00:00
|
|
|
#include "gtkdnd.h"
|
|
|
|
#include "gtkicontheme.h"
|
2012-01-30 14:56:20 +00:00
|
|
|
#include "gtkmain.h"
|
|
|
|
#include "gtkmenu.h"
|
|
|
|
#include "gtkmenuitem.h"
|
|
|
|
#include "gtkmenushell.h"
|
2012-01-29 15:42:34 +00:00
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtkintl.h"
|
2014-10-07 21:24:51 +00:00
|
|
|
#include "gtkrenderprivate.h"
|
2014-06-12 12:39:12 +00:00
|
|
|
#include "gtkwidgetprivate.h"
|
2012-12-27 17:11:12 +00:00
|
|
|
#include "a11y/gtkcolorswatchaccessibleprivate.h"
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct _GtkColorSwatchPrivate
|
|
|
|
{
|
|
|
|
GdkRGBA color;
|
|
|
|
gdouble radius[4];
|
|
|
|
gchar *icon;
|
|
|
|
guint has_color : 1;
|
2012-02-03 23:34:33 +00:00
|
|
|
guint use_alpha : 1;
|
2012-02-17 16:01:50 +00:00
|
|
|
guint selectable : 1;
|
2012-02-20 12:45:58 +00:00
|
|
|
|
|
|
|
GdkWindow *event_window;
|
2012-03-03 06:48:55 +00:00
|
|
|
|
2014-04-08 19:18:38 +00:00
|
|
|
GtkGesture *long_press_gesture;
|
|
|
|
GtkGesture *multipress_gesture;
|
2012-01-29 15:42:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_ZERO,
|
2012-02-17 16:01:50 +00:00
|
|
|
PROP_RGBA,
|
|
|
|
PROP_SELECTABLE
|
2012-01-29 15:42:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ACTIVATE,
|
|
|
|
CUSTOMIZE,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL];
|
|
|
|
|
2014-04-08 19:18:38 +00:00
|
|
|
static void hold_action (GtkGestureLongPress *gesture,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GtkColorSwatch *swatch);
|
|
|
|
static void tap_action (GtkGestureMultiPress *gesture,
|
|
|
|
gint n_press,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GtkColorSwatch *swatch);
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkColorSwatch, gtk_color_swatch, GTK_TYPE_WIDGET)
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_color_swatch_init (GtkColorSwatch *swatch)
|
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
swatch->priv = gtk_color_swatch_get_instance_private (swatch);
|
|
|
|
swatch->priv->use_alpha = TRUE;
|
|
|
|
swatch->priv->selectable = TRUE;
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
gtk_widget_set_can_focus (GTK_WIDGET (swatch), TRUE);
|
2012-02-20 12:45:58 +00:00
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (swatch), FALSE);
|
2014-04-08 19:18:38 +00:00
|
|
|
|
|
|
|
swatch->priv->long_press_gesture = gtk_gesture_long_press_new (GTK_WIDGET (swatch));
|
2014-08-11 19:48:43 +00:00
|
|
|
gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (swatch->priv->long_press_gesture),
|
|
|
|
TRUE);
|
2014-04-08 19:18:38 +00:00
|
|
|
g_signal_connect (swatch->priv->long_press_gesture, "pressed",
|
|
|
|
G_CALLBACK (hold_action), swatch);
|
|
|
|
|
|
|
|
swatch->priv->multipress_gesture = gtk_gesture_multi_press_new (GTK_WIDGET (swatch));
|
2014-08-11 19:48:43 +00:00
|
|
|
gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (swatch->priv->multipress_gesture), 0);
|
2014-04-08 19:18:38 +00:00
|
|
|
g_signal_connect (swatch->priv->multipress_gesture, "pressed",
|
|
|
|
G_CALLBACK (tap_action), swatch);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define INTENSITY(r, g, b) ((r) * 0.30 + (g) * 0.59 + (b) * 0.11)
|
2014-10-07 03:58:09 +00:00
|
|
|
#define PIXBUF_SIZE 16
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
swatch_draw (GtkWidget *widget,
|
|
|
|
cairo_t *cr)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = (GtkColorSwatch*)widget;
|
|
|
|
gdouble width, height;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkStateFlags state;
|
2012-02-08 21:30:29 +00:00
|
|
|
GtkIconTheme *theme;
|
2014-10-07 03:58:09 +00:00
|
|
|
GtkBorder border, padding;
|
|
|
|
GdkRectangle rect;
|
2012-02-08 21:30:29 +00:00
|
|
|
GtkIconInfo *icon_info = NULL;
|
2012-01-29 15:42:34 +00:00
|
|
|
|
2012-02-08 21:30:29 +00:00
|
|
|
theme = gtk_icon_theme_get_default ();
|
2012-01-29 15:42:34 +00:00
|
|
|
context = gtk_widget_get_style_context (widget);
|
2014-10-07 03:58:09 +00:00
|
|
|
state = gtk_style_context_get_state (context);
|
2012-01-29 15:42:34 +00:00
|
|
|
width = gtk_widget_get_allocated_width (widget);
|
|
|
|
height = gtk_widget_get_allocated_height (widget);
|
|
|
|
|
2014-10-07 21:24:51 +00:00
|
|
|
gtk_render_background (context, cr, 0, 0, width, height);
|
2012-01-31 07:05:37 +00:00
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
if (swatch->priv->has_color)
|
|
|
|
{
|
2012-01-31 05:58:07 +00:00
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
cairo_matrix_t matrix;
|
|
|
|
|
2014-10-07 21:24:51 +00:00
|
|
|
gtk_render_content_path (context, cr, 0, 0, width, height);
|
|
|
|
|
2012-02-03 23:34:33 +00:00
|
|
|
if (swatch->priv->use_alpha)
|
2012-01-31 07:05:37 +00:00
|
|
|
{
|
2012-02-08 21:37:25 +00:00
|
|
|
cairo_save (cr);
|
|
|
|
|
|
|
|
cairo_clip_preserve (cr);
|
|
|
|
|
2012-01-31 07:05:37 +00:00
|
|
|
cairo_set_source_rgb (cr, 0.33, 0.33, 0.33);
|
|
|
|
cairo_fill_preserve (cr);
|
2012-01-31 05:58:07 +00:00
|
|
|
|
2012-02-14 17:16:56 +00:00
|
|
|
pattern = _gtk_color_chooser_get_checkered_pattern ();
|
2012-01-31 07:05:37 +00:00
|
|
|
cairo_matrix_init_scale (&matrix, 0.125, 0.125);
|
|
|
|
cairo_pattern_set_matrix (pattern, &matrix);
|
2012-02-08 21:37:25 +00:00
|
|
|
|
|
|
|
cairo_set_source_rgb (cr, 0.66, 0.66, 0.66);
|
2012-01-31 07:05:37 +00:00
|
|
|
cairo_mask (cr, pattern);
|
|
|
|
cairo_pattern_destroy (pattern);
|
2012-01-31 05:58:07 +00:00
|
|
|
|
2012-02-08 21:37:25 +00:00
|
|
|
cairo_restore (cr);
|
|
|
|
|
2014-10-07 21:24:51 +00:00
|
|
|
gdk_cairo_set_source_rgba (cr, &swatch->priv->color);
|
2012-01-31 07:05:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-07 21:24:51 +00:00
|
|
|
cairo_set_source_rgb (cr,
|
|
|
|
swatch->priv->color.red,
|
|
|
|
swatch->priv->color.green,
|
|
|
|
swatch->priv->color.blue);
|
2012-01-31 07:05:37 +00:00
|
|
|
}
|
2012-02-08 21:37:25 +00:00
|
|
|
|
2014-10-07 21:24:51 +00:00
|
|
|
cairo_fill (cr);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 04:40:09 +00:00
|
|
|
gtk_render_frame (context, cr, 0, 0, width, height);
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
if (swatch->priv->icon)
|
|
|
|
{
|
2014-10-07 03:58:09 +00:00
|
|
|
icon_info = gtk_icon_theme_lookup_icon (theme, swatch->priv->icon, PIXBUF_SIZE,
|
2012-02-08 21:30:29 +00:00
|
|
|
GTK_ICON_LOOKUP_GENERIC_FALLBACK
|
|
|
|
| GTK_ICON_LOOKUP_USE_BUILTIN);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
2012-02-09 04:48:11 +00:00
|
|
|
else if ((state & GTK_STATE_FLAG_SELECTED) != 0)
|
2012-01-29 15:42:34 +00:00
|
|
|
{
|
2012-02-08 21:30:29 +00:00
|
|
|
GIcon *gicon;
|
|
|
|
|
2014-10-07 03:58:09 +00:00
|
|
|
gicon = g_themed_icon_new ("object-select-symbolic");
|
|
|
|
/* fallback for themes that don't have object-select-symbolic */
|
|
|
|
g_themed_icon_append_name (G_THEMED_ICON (gicon), "gtk-apply");
|
2012-02-08 21:30:29 +00:00
|
|
|
|
2014-10-07 03:58:09 +00:00
|
|
|
icon_info = gtk_icon_theme_lookup_by_gicon (theme, gicon, PIXBUF_SIZE,
|
|
|
|
GTK_ICON_LOOKUP_GENERIC_FALLBACK
|
|
|
|
| GTK_ICON_LOOKUP_USE_BUILTIN);
|
|
|
|
g_object_unref (gicon);
|
|
|
|
}
|
2012-02-08 21:30:29 +00:00
|
|
|
|
2014-10-07 03:58:09 +00:00
|
|
|
/* now draw the overlay image */
|
|
|
|
gtk_style_context_get_border (context, state, &border);
|
|
|
|
gtk_style_context_get_padding (context, state, &padding);
|
2014-10-08 11:17:55 +00:00
|
|
|
rect.width = width - (border.left + border.right + padding.left + padding.right);
|
|
|
|
rect.height = height - (border.top + border.bottom + padding.top + padding.bottom);
|
|
|
|
rect.x = border.left + padding.left;
|
|
|
|
rect.y = border.top + padding.top;
|
2014-10-07 03:58:09 +00:00
|
|
|
|
2014-10-08 11:17:55 +00:00
|
|
|
gtk_style_context_save (context);
|
2014-10-08 11:18:35 +00:00
|
|
|
gtk_style_context_add_class (context, "overlay");
|
2014-10-08 11:17:55 +00:00
|
|
|
|
2014-10-07 03:58:09 +00:00
|
|
|
gtk_render_background (context, cr, rect.x, rect.y, rect.width, rect.height);
|
|
|
|
gtk_render_frame (context, cr, rect.x, rect.y, rect.width, rect.height);
|
2012-02-08 21:30:29 +00:00
|
|
|
|
|
|
|
if (icon_info != NULL)
|
|
|
|
{
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
|
|
|
|
pixbuf = gtk_icon_info_load_symbolic_for_context (icon_info, context,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
if (pixbuf != NULL)
|
|
|
|
{
|
|
|
|
gtk_render_icon (context, cr, pixbuf,
|
2014-10-08 11:17:55 +00:00
|
|
|
rect.x + (rect.width - gdk_pixbuf_get_width (pixbuf)) / 2,
|
|
|
|
rect.y + (rect.height - gdk_pixbuf_get_height (pixbuf)) / 2);
|
2012-02-08 21:30:29 +00:00
|
|
|
g_object_unref (pixbuf);
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:35:44 +00:00
|
|
|
g_object_unref (icon_info);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 14:52:42 +00:00
|
|
|
if (gtk_widget_has_visible_focus (widget))
|
|
|
|
{
|
|
|
|
gtk_render_focus (context, cr, 0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
2014-10-12 22:15:23 +00:00
|
|
|
gtk_style_context_restore (context);
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drag_set_color_icon (GdkDragContext *context,
|
|
|
|
const GdkRGBA *color)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 48, 32);
|
|
|
|
cr = cairo_create (surface);
|
|
|
|
gdk_cairo_set_source_rgba (cr, color);
|
|
|
|
cairo_paint (cr);
|
|
|
|
|
2012-02-04 05:02:49 +00:00
|
|
|
cairo_surface_set_device_offset (surface, -4, -4);
|
2012-01-29 15:42:34 +00:00
|
|
|
gtk_drag_set_icon_surface (context, surface);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_drag_begin (GtkWidget *widget,
|
|
|
|
GdkDragContext *context)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
GdkRGBA color;
|
|
|
|
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_get_rgba (swatch, &color);
|
2012-01-29 15:42:34 +00:00
|
|
|
drag_set_color_icon (context, &color);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_drag_data_get (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
GtkSelectionData *selection_data,
|
|
|
|
guint info,
|
|
|
|
guint time)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
guint16 vals[4];
|
|
|
|
GdkRGBA color;
|
|
|
|
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_get_rgba (swatch, &color);
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
vals[0] = color.red * 0xffff;
|
|
|
|
vals[1] = color.green * 0xffff;
|
|
|
|
vals[2] = color.blue * 0xffff;
|
|
|
|
vals[3] = color.alpha * 0xffff;
|
|
|
|
|
|
|
|
gtk_selection_data_set (selection_data,
|
|
|
|
gdk_atom_intern_static_string ("application/x-color"),
|
|
|
|
16, (guchar *)vals, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_drag_data_received (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
GtkSelectionData *selection_data,
|
|
|
|
guint info,
|
|
|
|
guint time)
|
|
|
|
{
|
|
|
|
gint length;
|
|
|
|
guint16 *vals;
|
|
|
|
GdkRGBA color;
|
|
|
|
|
|
|
|
length = gtk_selection_data_get_length (selection_data);
|
|
|
|
|
|
|
|
if (length < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* We accept drops with the wrong format, since the KDE color
|
|
|
|
* chooser incorrectly drops application/x-color with format 8.
|
|
|
|
*/
|
|
|
|
if (length != 8)
|
|
|
|
{
|
|
|
|
g_warning ("Received invalid color data\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vals = (guint16 *) gtk_selection_data_get_data (selection_data);
|
|
|
|
|
|
|
|
color.red = (gdouble)vals[0] / 0xffff;
|
|
|
|
color.green = (gdouble)vals[1] / 0xffff;
|
|
|
|
color.blue = (gdouble)vals[2] / 0xffff;
|
|
|
|
color.alpha = (gdouble)vals[3] / 0xffff;
|
|
|
|
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_set_rgba (GTK_COLOR_SWATCH (widget), &color);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_get_preferred_width (GtkWidget *widget,
|
|
|
|
gint *min,
|
|
|
|
gint *nat)
|
|
|
|
{
|
2014-07-10 00:44:06 +00:00
|
|
|
gint w, h;
|
|
|
|
|
|
|
|
gtk_widget_get_size_request (widget, &w, &h);
|
|
|
|
|
|
|
|
if (w < 0)
|
|
|
|
w = 48;
|
|
|
|
|
|
|
|
*min = *nat = w;
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_get_preferred_height (GtkWidget *widget,
|
|
|
|
gint *min,
|
|
|
|
gint *nat)
|
|
|
|
{
|
2014-07-10 00:44:06 +00:00
|
|
|
gint w, h;
|
|
|
|
|
|
|
|
gtk_widget_get_size_request (widget, &w, &h);
|
|
|
|
|
|
|
|
if (h < 0)
|
|
|
|
h = 32;
|
|
|
|
|
|
|
|
*min = *nat = h;
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
swatch_key_press (GtkWidget *widget,
|
|
|
|
GdkEventKey *event)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
|
|
|
|
if (event->keyval == GDK_KEY_space ||
|
|
|
|
event->keyval == GDK_KEY_Return ||
|
|
|
|
event->keyval == GDK_KEY_ISO_Enter||
|
|
|
|
event->keyval == GDK_KEY_KP_Enter ||
|
|
|
|
event->keyval == GDK_KEY_KP_Space)
|
|
|
|
{
|
2012-02-17 16:01:50 +00:00
|
|
|
if (swatch->priv->has_color &&
|
|
|
|
swatch->priv->selectable &&
|
|
|
|
(gtk_widget_get_state_flags (widget) & GTK_STATE_FLAG_SELECTED) == 0)
|
2012-02-09 04:48:11 +00:00
|
|
|
gtk_widget_set_state_flags (widget, GTK_STATE_FLAG_SELECTED, FALSE);
|
2012-01-29 15:42:34 +00:00
|
|
|
else
|
|
|
|
g_signal_emit (swatch, signals[ACTIVATE], 0);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-01-30 14:56:20 +00:00
|
|
|
if (GTK_WIDGET_CLASS (gtk_color_swatch_parent_class)->key_press_event (widget, event))
|
|
|
|
return TRUE;
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-02-04 05:02:49 +00:00
|
|
|
swatch_enter_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
2012-01-29 15:42:34 +00:00
|
|
|
{
|
2012-02-21 17:13:58 +00:00
|
|
|
gtk_widget_set_state_flags (widget, GTK_STATE_FLAG_PRELIGHT, FALSE);
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-02-04 05:02:49 +00:00
|
|
|
swatch_leave_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
2012-01-29 15:42:34 +00:00
|
|
|
{
|
2012-02-21 17:13:58 +00:00
|
|
|
gtk_widget_unset_state_flags (widget, GTK_STATE_FLAG_PRELIGHT);
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-01-30 14:56:20 +00:00
|
|
|
static void
|
|
|
|
emit_customize (GtkColorSwatch *swatch)
|
|
|
|
{
|
|
|
|
g_signal_emit (swatch, signals[CUSTOMIZE], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
popup_position_func (GtkMenu *menu,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gboolean *push_in,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkRequisition req;
|
|
|
|
gint root_x, root_y;
|
|
|
|
GdkScreen *screen;
|
|
|
|
GdkWindow *window;
|
|
|
|
GdkRectangle monitor;
|
|
|
|
gint monitor_num;
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (user_data);
|
|
|
|
g_return_if_fail (gtk_widget_get_realized (widget));
|
|
|
|
window = gtk_widget_get_window (widget);
|
|
|
|
|
|
|
|
screen = gtk_widget_get_screen (widget);
|
|
|
|
monitor_num = gdk_screen_get_monitor_at_window (screen, window);
|
|
|
|
if (monitor_num < 0)
|
|
|
|
monitor_num = 0;
|
|
|
|
gtk_menu_set_monitor (menu, monitor_num);
|
|
|
|
|
|
|
|
gdk_window_get_origin (window, &root_x, &root_y);
|
|
|
|
gtk_widget_get_preferred_size (GTK_WIDGET (menu), &req, NULL);
|
|
|
|
|
|
|
|
/* Put corner of menu centered on swatch */
|
|
|
|
*x = root_x + gtk_widget_get_allocated_width (widget) / 2;
|
|
|
|
*y = root_y + gtk_widget_get_allocated_height (widget) / 2;
|
|
|
|
|
|
|
|
/* Ensure sanity */
|
|
|
|
gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
|
|
|
|
*x = CLAMP (*x, monitor.x, MAX (monitor.x, monitor.width - req.width));
|
|
|
|
*y = CLAMP (*y, monitor.y, MAX (monitor.y, monitor.height - req.height));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_popup (GtkWidget *swatch,
|
2014-05-09 23:24:27 +00:00
|
|
|
gint button,
|
|
|
|
gint time)
|
2012-01-30 14:56:20 +00:00
|
|
|
{
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *item;
|
|
|
|
|
|
|
|
menu = gtk_menu_new ();
|
2013-08-18 14:45:24 +00:00
|
|
|
gtk_style_context_add_class (gtk_widget_get_style_context (menu),
|
|
|
|
GTK_STYLE_CLASS_CONTEXT_MENU);
|
|
|
|
|
2012-01-30 14:56:20 +00:00
|
|
|
item = gtk_menu_item_new_with_mnemonic (_("_Customize"));
|
|
|
|
gtk_menu_attach_to_widget (GTK_MENU (menu), swatch, NULL);
|
|
|
|
|
|
|
|
g_signal_connect_swapped (item, "activate",
|
|
|
|
G_CALLBACK (emit_customize), swatch);
|
|
|
|
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
|
|
|
|
|
|
|
|
gtk_widget_show_all (item);
|
|
|
|
|
2014-05-09 23:24:27 +00:00
|
|
|
if (button != 0)
|
2012-01-30 14:56:20 +00:00
|
|
|
gtk_menu_popup (GTK_MENU (menu), NULL, NULL,
|
2014-05-09 23:24:27 +00:00
|
|
|
NULL, NULL, button, time);
|
2012-01-30 14:56:20 +00:00
|
|
|
else
|
|
|
|
gtk_menu_popup (GTK_MENU (menu), NULL, NULL,
|
|
|
|
popup_position_func, swatch,
|
2014-05-09 23:24:27 +00:00
|
|
|
button, time);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2012-03-03 06:48:55 +00:00
|
|
|
static gboolean
|
|
|
|
swatch_primary_action (GtkColorSwatch *swatch)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = (GtkWidget *)swatch;
|
|
|
|
GtkStateFlags flags;
|
|
|
|
|
|
|
|
flags = gtk_widget_get_state_flags (widget);
|
|
|
|
if (!swatch->priv->has_color)
|
|
|
|
{
|
|
|
|
g_signal_emit (swatch, signals[ACTIVATE], 0);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else if (swatch->priv->selectable &&
|
|
|
|
(flags & GTK_STATE_FLAG_SELECTED) == 0)
|
|
|
|
{
|
|
|
|
gtk_widget_set_state_flags (widget, GTK_STATE_FLAG_SELECTED, FALSE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-08 19:18:38 +00:00
|
|
|
hold_action (GtkGestureLongPress *gesture,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GtkColorSwatch *swatch)
|
2012-03-03 06:48:55 +00:00
|
|
|
{
|
2012-03-04 04:42:54 +00:00
|
|
|
emit_customize (swatch);
|
2014-04-08 19:18:38 +00:00
|
|
|
gtk_gesture_set_state (GTK_GESTURE (gesture), GTK_EVENT_SEQUENCE_CLAIMED);
|
2012-03-03 06:48:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-08 19:18:38 +00:00
|
|
|
tap_action (GtkGestureMultiPress *gesture,
|
|
|
|
gint n_press,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GtkColorSwatch *swatch)
|
|
|
|
{
|
2014-05-09 23:24:27 +00:00
|
|
|
guint button;
|
|
|
|
|
|
|
|
button = gtk_gesture_single_get_current_button (GTK_GESTURE_SINGLE (gesture));
|
|
|
|
|
|
|
|
if (button == GDK_BUTTON_PRIMARY)
|
|
|
|
{
|
|
|
|
if (n_press == 1)
|
|
|
|
swatch_primary_action (swatch);
|
|
|
|
else if (n_press > 1)
|
|
|
|
g_signal_emit (swatch, signals[ACTIVATE], 0);
|
|
|
|
}
|
|
|
|
else if (button == GDK_BUTTON_SECONDARY)
|
|
|
|
{
|
|
|
|
if (swatch->priv->has_color)
|
|
|
|
do_popup (GTK_WIDGET (swatch), button, gtk_get_current_event_time ());
|
|
|
|
}
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2012-02-20 12:45:58 +00:00
|
|
|
static void
|
|
|
|
swatch_map (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_color_swatch_parent_class)->map (widget);
|
|
|
|
|
|
|
|
if (swatch->priv->event_window)
|
|
|
|
gdk_window_show (swatch->priv->event_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_unmap (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
|
|
|
|
if (swatch->priv->event_window)
|
|
|
|
gdk_window_hide (swatch->priv->event_window);
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_color_swatch_parent_class)->unmap (widget);
|
|
|
|
}
|
|
|
|
|
2012-02-17 17:31:19 +00:00
|
|
|
static void
|
|
|
|
swatch_realize (GtkWidget *widget)
|
|
|
|
{
|
2012-02-20 12:45:58 +00:00
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
2012-02-17 17:31:19 +00:00
|
|
|
GtkAllocation allocation;
|
|
|
|
GdkWindow *window;
|
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask;
|
|
|
|
|
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
2012-02-20 12:45:58 +00:00
|
|
|
gtk_widget_set_realized (widget, TRUE);
|
2012-02-17 17:31:19 +00:00
|
|
|
|
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
|
|
attributes.x = allocation.x;
|
|
|
|
attributes.y = allocation.y;
|
|
|
|
attributes.width = allocation.width;
|
|
|
|
attributes.height = allocation.height;
|
2012-02-20 12:45:58 +00:00
|
|
|
attributes.wclass = GDK_INPUT_ONLY;
|
|
|
|
attributes.event_mask = gtk_widget_get_events (widget);
|
2012-03-03 06:48:55 +00:00
|
|
|
attributes.event_mask |= GDK_BUTTON_PRESS_MASK
|
|
|
|
| GDK_BUTTON_RELEASE_MASK
|
|
|
|
| GDK_ENTER_NOTIFY_MASK
|
|
|
|
| GDK_LEAVE_NOTIFY_MASK
|
|
|
|
| GDK_TOUCH_MASK;
|
2012-02-17 17:31:19 +00:00
|
|
|
|
2012-02-20 12:45:58 +00:00
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y;
|
2012-02-17 17:31:19 +00:00
|
|
|
|
2012-02-20 12:45:58 +00:00
|
|
|
window = gtk_widget_get_parent_window (widget);
|
2012-02-17 17:31:19 +00:00
|
|
|
gtk_widget_set_window (widget, window);
|
2012-02-20 12:45:58 +00:00
|
|
|
g_object_ref (window);
|
|
|
|
|
|
|
|
swatch->priv->event_window =
|
|
|
|
gdk_window_new (window,
|
|
|
|
&attributes, attributes_mask);
|
2013-02-05 08:36:49 +00:00
|
|
|
gtk_widget_register_window (widget, swatch->priv->event_window);
|
2012-02-20 12:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
|
|
|
|
if (swatch->priv->event_window)
|
|
|
|
{
|
2013-02-05 08:36:49 +00:00
|
|
|
gtk_widget_unregister_window (widget, swatch->priv->event_window);
|
2012-02-20 12:45:58 +00:00
|
|
|
gdk_window_destroy (swatch->priv->event_window);
|
|
|
|
swatch->priv->event_window = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_color_swatch_parent_class)->unrealize (widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (widget);
|
|
|
|
|
|
|
|
gtk_widget_set_allocation (widget, allocation);
|
|
|
|
|
|
|
|
if (gtk_widget_get_realized (widget))
|
|
|
|
gdk_window_move_resize (swatch->priv->event_window,
|
|
|
|
allocation->x,
|
|
|
|
allocation->y,
|
|
|
|
allocation->width,
|
|
|
|
allocation->height);
|
2014-06-12 12:39:12 +00:00
|
|
|
|
2014-08-20 21:49:00 +00:00
|
|
|
_gtk_widget_set_simple_clip (widget, NULL);
|
2012-02-17 17:31:19 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 14:56:20 +00:00
|
|
|
static gboolean
|
2012-02-04 05:02:49 +00:00
|
|
|
swatch_popup_menu (GtkWidget *swatch)
|
2012-01-30 14:56:20 +00:00
|
|
|
{
|
2014-05-09 23:24:27 +00:00
|
|
|
do_popup (swatch, 0, gtk_get_current_event_time ());
|
2012-01-30 14:56:20 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-02-04 05:02:49 +00:00
|
|
|
/* GObject implementation {{{1 */
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (object);
|
|
|
|
GdkRGBA color;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_RGBA:
|
|
|
|
gtk_color_swatch_get_rgba (swatch, &color);
|
|
|
|
g_value_set_boxed (value, &color);
|
|
|
|
break;
|
2012-02-17 16:01:50 +00:00
|
|
|
case PROP_SELECTABLE:
|
|
|
|
g_value_set_boolean (value, gtk_color_swatch_get_selectable (swatch));
|
|
|
|
break;
|
2012-02-04 05:02:49 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_RGBA:
|
|
|
|
gtk_color_swatch_set_rgba (swatch, g_value_get_boxed (value));
|
|
|
|
break;
|
2012-02-17 16:01:50 +00:00
|
|
|
case PROP_SELECTABLE:
|
|
|
|
gtk_color_swatch_set_selectable (swatch, g_value_get_boolean (value));
|
|
|
|
break;
|
2012-02-04 05:02:49 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swatch_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkColorSwatch *swatch = GTK_COLOR_SWATCH (object);
|
|
|
|
|
|
|
|
g_free (swatch->priv->icon);
|
2014-04-08 19:18:38 +00:00
|
|
|
|
|
|
|
g_object_unref (swatch->priv->long_press_gesture);
|
|
|
|
g_object_unref (swatch->priv->multipress_gesture);
|
2012-02-04 05:02:49 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_color_swatch_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
static void
|
|
|
|
gtk_color_swatch_class_init (GtkColorSwatchClass *class)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class = (GtkWidgetClass *)class;
|
|
|
|
GObjectClass *object_class = (GObjectClass *)class;
|
|
|
|
|
|
|
|
object_class->get_property = swatch_get_property;
|
|
|
|
object_class->set_property = swatch_set_property;
|
|
|
|
object_class->finalize = swatch_finalize;
|
|
|
|
|
|
|
|
widget_class->get_preferred_width = swatch_get_preferred_width;
|
|
|
|
widget_class->get_preferred_height = swatch_get_preferred_height;
|
|
|
|
widget_class->draw = swatch_draw;
|
|
|
|
widget_class->drag_begin = swatch_drag_begin;
|
|
|
|
widget_class->drag_data_get = swatch_drag_data_get;
|
|
|
|
widget_class->drag_data_received = swatch_drag_data_received;
|
|
|
|
widget_class->key_press_event = swatch_key_press;
|
2012-02-04 05:02:49 +00:00
|
|
|
widget_class->popup_menu = swatch_popup_menu;
|
|
|
|
widget_class->enter_notify_event = swatch_enter_notify;
|
|
|
|
widget_class->leave_notify_event = swatch_leave_notify;
|
2012-02-17 17:31:19 +00:00
|
|
|
widget_class->realize = swatch_realize;
|
2012-02-20 12:45:58 +00:00
|
|
|
widget_class->unrealize = swatch_unrealize;
|
|
|
|
widget_class->map = swatch_map;
|
|
|
|
widget_class->unmap = swatch_unmap;
|
|
|
|
widget_class->size_allocate = swatch_size_allocate;
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
signals[ACTIVATE] =
|
|
|
|
g_signal_new ("activate",
|
|
|
|
GTK_TYPE_COLOR_SWATCH,
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkColorSwatchClass, activate),
|
|
|
|
NULL, NULL, NULL, G_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
signals[CUSTOMIZE] =
|
|
|
|
g_signal_new ("customize",
|
|
|
|
GTK_TYPE_COLOR_SWATCH,
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkColorSwatchClass, customize),
|
|
|
|
NULL, NULL, NULL, G_TYPE_NONE, 0);
|
|
|
|
|
2012-02-03 23:34:33 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_RGBA,
|
|
|
|
g_param_spec_boxed ("rgba", P_("RGBA Color"), P_("Color as RGBA"),
|
2012-01-29 15:42:34 +00:00
|
|
|
GDK_TYPE_RGBA, GTK_PARAM_READWRITE));
|
2012-02-17 16:01:50 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_SELECTABLE,
|
|
|
|
g_param_spec_boolean ("selectable", P_("Selectable"), P_("Whether the swatch is selectable"),
|
|
|
|
TRUE, GTK_PARAM_READWRITE));
|
2012-01-29 15:42:34 +00:00
|
|
|
|
2012-02-15 02:03:11 +00:00
|
|
|
gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_COLOR_SWATCH_ACCESSIBLE);
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Public API {{{1 */
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gtk_color_swatch_new (void)
|
|
|
|
{
|
|
|
|
return (GtkWidget *) g_object_new (GTK_TYPE_COLOR_SWATCH, NULL);
|
|
|
|
}
|
|
|
|
|
2012-02-04 05:02:49 +00:00
|
|
|
static const GtkTargetEntry dnd_targets[] = {
|
|
|
|
{ "application/x-color", 0 }
|
|
|
|
};
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
void
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_set_rgba (GtkColorSwatch *swatch,
|
|
|
|
const GdkRGBA *color)
|
2012-01-29 15:42:34 +00:00
|
|
|
{
|
2012-02-08 21:35:57 +00:00
|
|
|
GtkStyleContext *context;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (swatch));
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
if (!swatch->priv->has_color)
|
2012-02-08 21:35:57 +00:00
|
|
|
{
|
|
|
|
gtk_drag_source_set (GTK_WIDGET (swatch),
|
|
|
|
GDK_BUTTON1_MASK | GDK_BUTTON3_MASK,
|
|
|
|
dnd_targets, G_N_ELEMENTS (dnd_targets),
|
|
|
|
GDK_ACTION_COPY | GDK_ACTION_MOVE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_style_context_remove_class (context, "color-light");
|
|
|
|
gtk_style_context_remove_class (context, "color-dark");
|
|
|
|
}
|
2012-01-29 15:42:34 +00:00
|
|
|
|
|
|
|
swatch->priv->has_color = TRUE;
|
2012-02-04 05:02:49 +00:00
|
|
|
swatch->priv->color = *color;
|
2012-01-29 15:42:34 +00:00
|
|
|
|
2012-02-08 21:35:57 +00:00
|
|
|
if (INTENSITY (swatch->priv->color.red, swatch->priv->color.green, swatch->priv->color.blue) > 0.5)
|
|
|
|
gtk_style_context_add_class (context, "color-light");
|
|
|
|
else
|
|
|
|
gtk_style_context_add_class (context, "color-dark");
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (swatch));
|
2012-02-03 23:34:33 +00:00
|
|
|
g_object_notify (G_OBJECT (swatch), "rgba");
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_get_rgba (GtkColorSwatch *swatch,
|
|
|
|
GdkRGBA *color)
|
2012-01-29 15:42:34 +00:00
|
|
|
{
|
|
|
|
if (swatch->priv->has_color)
|
|
|
|
{
|
|
|
|
color->red = swatch->priv->color.red;
|
|
|
|
color->green = swatch->priv->color.green;
|
|
|
|
color->blue = swatch->priv->color.blue;
|
|
|
|
color->alpha = swatch->priv->color.alpha;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
color->red = 1.0;
|
|
|
|
color->green = 1.0;
|
|
|
|
color->blue = 1.0;
|
|
|
|
color->alpha = 1.0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_color_swatch_set_icon (GtkColorSwatch *swatch,
|
|
|
|
const gchar *icon)
|
|
|
|
{
|
|
|
|
swatch->priv->icon = g_strdup (icon);
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (swatch));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_color_swatch_set_can_drop (GtkColorSwatch *swatch,
|
|
|
|
gboolean can_drop)
|
|
|
|
{
|
2012-02-09 03:56:14 +00:00
|
|
|
if (can_drop)
|
|
|
|
{
|
|
|
|
gtk_drag_dest_set (GTK_WIDGET (swatch),
|
|
|
|
GTK_DEST_DEFAULT_HIGHLIGHT |
|
|
|
|
GTK_DEST_DEFAULT_MOTION |
|
|
|
|
GTK_DEST_DEFAULT_DROP,
|
|
|
|
dnd_targets, G_N_ELEMENTS (dnd_targets),
|
|
|
|
GDK_ACTION_COPY);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_drag_dest_unset (GTK_WIDGET (swatch));
|
|
|
|
}
|
2012-01-29 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 07:05:37 +00:00
|
|
|
void
|
2012-02-03 23:34:33 +00:00
|
|
|
gtk_color_swatch_set_use_alpha (GtkColorSwatch *swatch,
|
2012-02-04 05:02:49 +00:00
|
|
|
gboolean use_alpha)
|
2012-01-31 07:05:37 +00:00
|
|
|
{
|
2012-02-03 23:34:33 +00:00
|
|
|
swatch->priv->use_alpha = use_alpha;
|
2012-01-31 07:05:37 +00:00
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (swatch));
|
|
|
|
}
|
|
|
|
|
2012-02-17 16:01:50 +00:00
|
|
|
void
|
|
|
|
gtk_color_swatch_set_selectable (GtkColorSwatch *swatch,
|
|
|
|
gboolean selectable)
|
|
|
|
{
|
|
|
|
if (selectable == swatch->priv->selectable)
|
|
|
|
return;
|
|
|
|
|
|
|
|
swatch->priv->selectable = selectable;
|
|
|
|
g_object_notify (G_OBJECT (swatch), "selectable");
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_color_swatch_get_selectable (GtkColorSwatch *swatch)
|
|
|
|
{
|
|
|
|
return swatch->priv->selectable;
|
|
|
|
}
|
|
|
|
|
2012-01-29 15:42:34 +00:00
|
|
|
/* vim:set foldmethod=marker: */
|