Clutter.Text
我正在尝试使用'方法创建一个可编辑的多行文本框set_editable()
:
let label = new St.Label({ text: 'My dummy example.' });
label.clutter_text.set_editable(true);
label.clutter_text.set_activatable(true);
但这似乎不起作用。我错过了什么?这是使用上面代码的简化版extension.js
:
const St = imports.gi.St;
const Main = imports.ui.main;
const Pango = imports.gi.Pango;
const PanelMenu = imports.ui.panelMenu;
let btn;
function DummyApp() {
this._init();
}
DummyApp.prototype = {
__proto__: PanelMenu.Button.prototype,
_init: function() {
PanelMenu.Button.prototype._init.call(this, St.Align.START);
let button = new St.Bin();
let icon = new St.Icon({
icon_name: 'system-run-symbolic',
style_class: 'system-status-icon' });
button.set_child(icon);
this.actor.add_actor(button);
let mainBox = new St.BoxLayout();
let label = new St.Label({ text: 'My dummy example.' });
label.clutter_text.set_editable(true);
label.clutter_text.set_activatable(true);
mainBox.add_child(label);
this.menu.box.add(mainBox);
},
}
function init() {}
function enable() {
btn = new DummyApp();
Main.panel.addToStatusArea('dummyapp_sec', btn);
}
function disable() {
Main.panel._rightBox.remove_child(btn);
}
作为脚注,Gtk.TextView看起来正是我所需要的,但我无法弄清楚如何将它集成到 PopupMenu。任何想法?