如何从gjs中的Gtk.Context中删除窗口按钮

时间:2018-05-13 07:26:35

标签: gtk cairo gnome-shell gnome-shell-extensions gjs

我'我试图从当前的gtk活动主题中提取窗口按钮并将其呈现在gjs中的cairo上下文中,以便在Gnome-Global-Menu(https://gitlab.com/lestcape/Gnome-Global-AppMenu)中使用。例如,我使用了一个代码来提取关闭按钮。

this.actor = new St.DrawingArea();
this.actor.connect('repaint', Lang.bind(this, this._onRepaint));

_onRepaint: function(area) {
    let cr = area.get_context();
    let [width, height] = area.get_surface_size();
    let provider = Gtk.CssProvider.get_default();
    let path = new Gtk.WidgetPath();
    let pos1 = path.append_type(Gtk.HeaderBar);
    let pos2 = path.append_type(Gtk.Button);
    path.iter_add_class(pos1, 'titlebar');
    path.iter_add_class(pos2, 'titlebutton');
    path.iter_add_class(pos2, 'close');
    let context = new Gtk.StyleContext();
    context.set_screen(Gdk.Screen.get_default());
    context.set_path(path);
    context.save();
    context.set_state(Gtk.StateFlags.NORMAL);
    Gtk.render_background(context, cr, 0, 0, width, height);
    Gtk.render_frame(context, cr, 0, 0, width, height);
    context.restore();
},

这是我的第一次近似,但它不起作用。我发现Ambiance主题中的css是这样的:

.titlebar button.titlebutton.close {
    border-color: #333333;
    color: #323112;
    -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.25);
    background-image: -gtk-scaled(url("assets/windowbutton-close.png"),
                                  url("assets/windowbutton-close@2.png"),
                                  url("assets/windowbutton-close@3.png"),
                                  url("assets/windowbutton-close@4.png"));
}

生成我的代码的路径具有以下格式:

.titlebar GtkButton.titlebutton.close

这发生了,因为gjs中的Gtk.Button的GType返回GtkButton而不是按钮,就像在主题中一样。所以,我创建了一个帮助类:

const GtkButton = new GObject.Class({
    Name: 'button',
    GTypeName: 'button',
    Extends: Gtk.Button,

    _init: function(params) {
        this.parent(params);
    },
});

然后而不是:

let pos2 = path.append_type(Gtk.Button);

我补充说:

let pos2 = path.append_type(GtkButton);

然后我的路径和css属性匹配,但我的cairo上下文中也没有显示任何内容。绘图区域的宽度和高度是gnome shell面板的大小为27像素。

那么,它在这里缺少什么?

对于另一只手,如果我直接从Gtk.widgets获得我想要的上下文,那就是工作:

let headerWidget = new Gtk.HeaderBar();
let buttonWidget = new Gtk.Button();
let context = headerWidget.get_style_context();
context.add_class('titlebar');
headerWidget.add(buttonWidget);
context = buttonWidget.get_style_context();
context.add_class('titlebutton');
context.add_class('close');

使用最后一个代码实现的示例如下:https://gitlab.com/lestcape/metacity-buttons以及显示其正常工作的视频可以在此处查看:https://www.youtube.com/watch?v=7CnoMEM44Do&t=18s

1 个答案:

答案 0 :(得分:1)

CSS中元素的名称是" CSS名称",而不是类名。您可以在班级序言中设置CSS名称:

const GtkButton = new GObject.Class({
    Name: 'button',
    CssName: 'button',
    Extends: Gtk.Button,
});

或者,在新式课程中,

const GtkButton = GObject.registerClass({
    CssName: 'button',
}, class MyButton extends Gtk.Button {
});