addActor 不是函数

addActor is not a function

我正在开发 gnome 的扩展 shell。我的扩展程序需要一个滑块来指示状态区​​域上的指示器。我在设置它时遇到了一些问题,我正在写我的代码 slightly outdated reference, the main problem was that the 'PopupSliderMenuItem' was missing in the source code. So i did some research and found out that it was deleted. This commit 有更多信息。

所以我尝试在提交时遵循这个(更新的)代码:

this._slider = new Slider.Slider(0);
this._slider.connect('value-changed', Lang.bind(this, this._sliderChanged));
this._slider.connect('drag-end', Lang.bind(this, this._notifyVolumeChange));

this.item = new PopupMenu.PopupBaseMenuItem({ activate: false });
this.item.addActor(this._slider.actor, { expand: true });

我将这段代码重构到我的项目中,它看起来像这样:

this.slider = new Slider.Slider(0.5);
this.slider.connect('value-changed', Lang.bind(this, this._sliderChanged));
this.slider.connect('drag-end', Lang.bind(this, this._setNewColorTemperature));

this.sliderContainer = new PopupMenu.PopupBaseMenuItem();
this.sliderContainer.addActor(this.slider.actor, { expand: true });
this.menu.addMenuItem(this.sliderContainer);

第一个块在 gnome-shell 源代码上(它设置音量滑块)。我的代码(第二块)在 'addActor' 行抛出这个异常:

Gjs-Message: JS LOG: Extension ****censored**** had error: TypeError: sliderContainer.addActor is not a function

有人知道为什么会发生此错误吗?最奇怪的是 PopupBaseMenuItem class 的源代码具有我正在调用的函数。

如果您需要任何其他信息,我很乐意提供。

仔细查看 source code 后,我发现设置演员的正确方法是通过 .actor 属性.

所以我的代码现在看起来像这样(并且它正在运行):

this.slider = new Slider.Slider(0.5);
this.slider.connect('value-changed', Lang.bind(this, this._sliderChanged));
this.slider.connect('drag-end', Lang.bind(this, this._setNewColorTemperature));

this.sliderContainer = new PopupMenu.PopupBaseMenuItem();
this.sliderContainer.actor = this.slider.actor;
this.menu.addMenuItem(this.sliderContainer);