6

我正在尝试在 GTK 3 中创建一个自定义小部件。我注意到仅在某些 GTK 主题中出现的绘图问题,而所有其他主题都很好。我将问题缩小到通过调用绘制背景的代码上gtk_render_background()。对于某些主题,背景呈现为纯黑色,尽管这不是主题的默认背景颜色。下面是我的绘图功能的简化版本。

static void gtk_databox_ruler_draw_ticks(GtkDataboxRuler *ruler)
{
    GtkWidget *widget;
    GtkStateFlags state;
    cairo_t *cr;
    GtkStyleContext *style_context;
    gint width, height;

    if (!gtk_widget_is_drawable(GTK_WIDGET(ruler))) {
        return;
    }

    widget = GTK_WIDGET(ruler);
    state = gtk_widget_get_state_flags(widget);
    style_context = gtk_widget_get_style_context(widget);

    gtk_style_context_save(style_context);
    gtk_style_context_add_class(style_context, GTK_STYLE_CLASS_DEFAULT);
    gtk_style_context_set_state(style_context, state);

    /* <test-code> */
    GdkRGBA test;
    gtk_style_context_get_background_color(style_context, gtk_widget_get_state_flags(widget), &test);
    /* </test-code> */

    width = gtk_widget_get_allocated_width(widget);
    height = gtk_widget_get_allocated_height(widget);

    cr = cairo_create(ruler->priv->backing_surface);

    gtk_render_background(style_context, cr, 0, 0, width, height);

    gtk_style_context_restore(style_context);
    cairo_destroy(cr);
}

我添加了一些测试代码来查询背景颜色并在 gdb 中设置断点:

使用 Ubuntu 的 Ambiance 主题时:

(gdb) print test
$1: test = {red = 0.94901960784313721, green = 0.94509803921568625, 
  blue = 0.94117647058823528, alpha = 1}

使用 Ubuntu 的 HighContrast 主题时:

(gdb) print test
$1: test = {red = 0, green = 0, blue = 0, alpha = 0}

我现在想知道我是否以错误的方式使用了新的 GtkStyleContext,或者主题是否损坏。如何缩小问题的根源?

如果有人能指出我对 GtkStyleContext 的良好介绍,我也将不胜感激。官方 API 文档对理解基本概念没有太大帮助。

4

3 回答 3

5

After more than one year has passed, I had to look into this problem again because it also occurs when using the GTK3 default (built-in) style, i.e. when my program is used on a system that has no themes etc. installed.

It looks like the source of the problem is that some GTK themes define a background color for the "default case" and others do not.

The GTK3 default theme:

…
* {
  color: @fg_color;
  border-color: shade (@bg_color, 0.6);
  padding: 2px;
  -GtkWindow-resize-grip-width: 0;
  -GtkWindow-resize-grip-height: 0;
  -GtkWindow-decoration-button-layout: 'icon:minimize,maximize,close';
}

GtkWindow, .button, .slider {
  background-color: @bg_color;
}
…

The Adwaita theme:

…
* {
    /* inherit the color from parent by default */
    color: inherit;
    background-color: @theme_bg_color;
}
…

To get the background drawn, I simply have to select a widget class that has a background color defined across all (most) themes. I use the button class for that:

gtk_style_context_add_class(style_context, GTK_STYLE_CLASS_BUTTON); 
于 2014-03-02T01:01:36.610 回答
2

您使用的是哪个版本的 Ubuntu 和 GTK3?

也许你需要打电话gtk_style_context_set_junction_sides()

您可能还对来自 GTK 开发人员之一 Benjamin Otte 的信息感兴趣。 GTK 样式的工作原理,也可以使用GTK+3 样式

于 2012-09-03T18:17:12.120 回答
1

这里的部分问题可能是越来越多的,不再一定有单一的背景颜色。

根据https://developer.gnome.org/gtk3/stable/GtkStyleContext.html#gtk-style-context-get-background-color的文档:

“这个功能远没有看起来那么有用,它不应该在新编写的代码中使用。CSS没有“背景颜色”的概念,因为背景可以是图像,或渐变,或任何其他图案,包括纯色颜色。”

于 2015-11-30T17:45:02.363 回答