[gimp/gtk3-port: 181/228] app: port GimpTagEntry to GtkStyleContext
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 181/228] app: port GimpTagEntry to GtkStyleContext
- Date: Mon, 14 Jan 2013 01:15:16 +0000 (UTC)
commit e8ae7341070713e580a6f3e489facfeb581559cc
Author: Michael Natterer <mitch gimp org>
Date: Sun Feb 6 13:22:47 2011 +0100
app: port GimpTagEntry to GtkStyleContext
app/widgets/gimptagentry.c | 42 ++++++++++++++++++++++--------------------
1 files changed, 22 insertions(+), 20 deletions(-)
---
diff --git a/app/widgets/gimptagentry.c b/app/widgets/gimptagentry.c
index ae3bae5..79100b5 100644
--- a/app/widgets/gimptagentry.c
+++ b/app/widgets/gimptagentry.c
@@ -1269,15 +1269,16 @@ static gboolean
gimp_tag_entry_draw (GtkWidget *widget,
cairo_t *cr)
{
- GimpTagEntry *tag_entry = GIMP_TAG_ENTRY (widget);
- GdkRectangle text_area;
- PangoLayout *layout;
- PangoAttrList *attr_list;
- PangoAttribute *attribute;
- gint layout_width;
- gint layout_height;
- gint offset;
- const char *display_text;
+ GimpTagEntry *tag_entry = GIMP_TAG_ENTRY (widget);
+ GtkStyleContext *style = gtk_widget_get_style_context (widget);
+ GdkRectangle text_area;
+ PangoLayout *layout;
+ PangoAttrList *attr_list;
+ PangoAttribute *attribute;
+ gint layout_width;
+ gint layout_height;
+ gint offset;
+ const char *display_text;
if (! GIMP_TAG_ENTRY (widget)->description_shown)
return FALSE;
@@ -1305,17 +1306,18 @@ gimp_tag_entry_draw (GtkWidget *widget,
pango_layout_get_pixel_size (layout, &layout_width, &layout_height);
offset = (text_area.height - layout_height) / 2;
- gtk_paint_layout (gtk_widget_get_style (widget),
- cr,
- GTK_STATE_INSENSITIVE,
- TRUE,
- widget,
- NULL,
- (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) ?
- text_area.width - layout_width - offset :
- text_area.x + offset,
- text_area.y + offset,
- layout);
+ gtk_style_context_save (style);
+
+ gtk_style_context_set_state (style, GTK_STATE_FLAG_INSENSITIVE);
+
+ gtk_render_layout (style, cr,
+ (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) ?
+ text_area.width - layout_width - offset :
+ text_area.x + offset,
+ text_area.y + offset,
+ layout);
+
+ gtk_style_context_restore (style);
g_object_unref (layout);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]