mirror of
https://github.com/corecoding/Vitals.git
synced 2026-08-31 06:57:28 +02:00
790fb70a19
Color panel and menu values from configurable breakpoints, with prefs rows labeled as derived ranges. Co-authored-by: Cursor <cursoragent@cursor.com>
89 lines
2.0 KiB
JavaScript
89 lines
2.0 KiB
JavaScript
import Clutter from 'gi://Clutter';
|
|
import GObject from 'gi://GObject';
|
|
import St from 'gi://St'
|
|
import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
|
|
|
|
export const MenuItem = GObject.registerClass({
|
|
|
|
Signals: {
|
|
'toggle': { param_types: [Clutter.Event.$gtype] },
|
|
},
|
|
|
|
}, class MenuItem extends PopupMenu.PopupBaseMenuItem {
|
|
|
|
_init(icon, key, label, value, checked) {
|
|
super._init({ reactive: true });
|
|
|
|
this._checked = checked;
|
|
this._updateOrnament();
|
|
|
|
this._key = key;
|
|
this._gIcon = icon;
|
|
|
|
// add icon
|
|
this._iconActor = new St.Icon({ style_class: 'popup-menu-icon', gicon : this._gIcon });
|
|
this.add_child(this._iconActor);
|
|
|
|
// add label
|
|
this._labelActor = new St.Label({ text: label });
|
|
this.add_child(this._labelActor);
|
|
|
|
// add value
|
|
this._valueLabel = new St.Label({ text: value });
|
|
this._valueLabel.set_x_align(Clutter.ActorAlign.END);
|
|
this._valueLabel.set_x_expand(true);
|
|
this._valueLabel.set_y_expand(true);
|
|
this.add_child(this._valueLabel);
|
|
|
|
this.actor._delegate = this;
|
|
}
|
|
|
|
get checked() {
|
|
return this._checked;
|
|
}
|
|
|
|
get key() {
|
|
return this._key;
|
|
}
|
|
|
|
get gicon() {
|
|
return this._gIcon;
|
|
}
|
|
|
|
set gicon(icon) {
|
|
this._gIcon = icon;
|
|
if (this._iconActor)
|
|
this._iconActor.gicon = icon;
|
|
}
|
|
|
|
set value(value) {
|
|
this._valueLabel.text = value;
|
|
}
|
|
|
|
get value() {
|
|
return this._valueLabel.text;
|
|
}
|
|
|
|
set valueStyle(style) {
|
|
this._valueLabel.style = style || null;
|
|
}
|
|
|
|
// prevents menu from being closed
|
|
activate(event) {
|
|
this._checked = !this._checked;
|
|
this._updateOrnament();
|
|
this.emit('toggle', event);
|
|
}
|
|
|
|
_updateOrnament() {
|
|
if (this._checked)
|
|
this.setOrnament(PopupMenu.Ornament.CHECK);
|
|
else
|
|
this.setOrnament(PopupMenu.Ornament.NONE);
|
|
}
|
|
|
|
get label() {
|
|
return this._labelActor.text;
|
|
}
|
|
});
|