2019-01-22 06:10:51 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2023-07-10 05:53:00 -04:00
|
|
|
import Clutter from 'gi://Clutter';
|
|
|
|
import Graphene from 'gi://Graphene';
|
|
|
|
import GObject from 'gi://GObject';
|
|
|
|
import St from 'gi://St';
|
2019-01-22 06:10:51 -05:00
|
|
|
|
2019-11-21 17:24:46 -05:00
|
|
|
const INDICATOR_INACTIVE_OPACITY = 128;
|
|
|
|
const INDICATOR_INACTIVE_OPACITY_HOVER = 255;
|
|
|
|
const INDICATOR_INACTIVE_SCALE = 2 / 3;
|
|
|
|
const INDICATOR_INACTIVE_SCALE_PRESSED = 0.5;
|
|
|
|
|
2023-07-10 05:53:00 -04:00
|
|
|
export const PageIndicators = GObject.registerClass({
|
2023-08-06 18:40:20 -04:00
|
|
|
Signals: {'page-activated': {param_types: [GObject.TYPE_INT]}},
|
2019-01-22 06:10:51 -05:00
|
|
|
}, class PageIndicators extends St.BoxLayout {
|
2019-09-10 01:36:58 -04:00
|
|
|
_init(orientation = Clutter.Orientation.VERTICAL) {
|
2023-08-06 20:51:19 -04:00
|
|
|
let vertical = orientation === Clutter.Orientation.VERTICAL;
|
2019-09-10 01:36:58 -04:00
|
|
|
super._init({
|
|
|
|
style_class: 'page-indicators',
|
|
|
|
vertical,
|
|
|
|
x_expand: true, y_expand: true,
|
|
|
|
x_align: vertical ? Clutter.ActorAlign.END : Clutter.ActorAlign.CENTER,
|
|
|
|
y_align: vertical ? Clutter.ActorAlign.CENTER : Clutter.ActorAlign.END,
|
|
|
|
reactive: true,
|
2019-08-20 17:43:54 -04:00
|
|
|
clip_to_allocation: true,
|
2019-09-10 01:36:58 -04:00
|
|
|
});
|
2019-01-22 06:10:51 -05:00
|
|
|
this._nPages = 0;
|
2019-11-21 17:24:46 -05:00
|
|
|
this._currentPosition = 0;
|
2019-01-22 06:10:51 -05:00
|
|
|
this._reactive = true;
|
|
|
|
this._reactive = true;
|
2020-12-02 16:33:26 -05:00
|
|
|
this._orientation = orientation;
|
2019-01-22 06:10:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
vfunc_get_preferred_height(forWidth) {
|
|
|
|
// We want to request the natural height of all our children as our
|
|
|
|
// natural height, so we chain up to St.BoxLayout, but we only request 0
|
|
|
|
// as minimum height, since it's not that important if some indicators
|
|
|
|
// are not shown
|
|
|
|
let [, natHeight] = super.vfunc_get_preferred_height(forWidth);
|
|
|
|
return [0, natHeight];
|
|
|
|
}
|
|
|
|
|
|
|
|
setReactive(reactive) {
|
|
|
|
let children = this.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++)
|
|
|
|
children[i].reactive = reactive;
|
|
|
|
|
|
|
|
this._reactive = reactive;
|
|
|
|
}
|
|
|
|
|
|
|
|
setNPages(nPages) {
|
2023-08-06 20:51:19 -04:00
|
|
|
if (this._nPages === nPages)
|
2019-01-22 06:10:51 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
let diff = nPages - this._nPages;
|
|
|
|
if (diff > 0) {
|
|
|
|
for (let i = 0; i < diff; i++) {
|
|
|
|
let pageIndex = this._nPages + i;
|
2020-03-29 17:51:13 -04:00
|
|
|
const indicator = new St.Button({
|
|
|
|
style_class: 'page-indicator',
|
|
|
|
button_mask: St.ButtonMask.ONE |
|
|
|
|
St.ButtonMask.TWO |
|
|
|
|
St.ButtonMask.THREE,
|
|
|
|
reactive: this._reactive,
|
|
|
|
});
|
2019-11-21 17:24:46 -05:00
|
|
|
indicator.child = new St.Widget({
|
|
|
|
style_class: 'page-indicator-icon',
|
2023-08-06 18:40:20 -04:00
|
|
|
pivot_point: new Graphene.Point({x: 0.5, y: 0.5}),
|
2019-11-21 17:24:46 -05:00
|
|
|
});
|
2019-01-22 06:10:51 -05:00
|
|
|
indicator.connect('clicked', () => {
|
|
|
|
this.emit('page-activated', pageIndex);
|
|
|
|
});
|
2019-11-21 17:24:46 -05:00
|
|
|
indicator.connect('notify::hover', () => {
|
|
|
|
this._updateIndicator(indicator, pageIndex);
|
|
|
|
});
|
|
|
|
indicator.connect('notify::pressed', () => {
|
|
|
|
this._updateIndicator(indicator, pageIndex);
|
|
|
|
});
|
|
|
|
this._updateIndicator(indicator, pageIndex);
|
2019-01-22 06:10:51 -05:00
|
|
|
this.add_actor(indicator);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let children = this.get_children().splice(diff);
|
|
|
|
for (let i = 0; i < children.length; i++)
|
|
|
|
children[i].destroy();
|
|
|
|
}
|
|
|
|
this._nPages = nPages;
|
2019-08-19 15:38:51 -04:00
|
|
|
this.visible = this._nPages > 1;
|
2019-01-22 06:10:51 -05:00
|
|
|
}
|
|
|
|
|
2019-11-21 17:24:46 -05:00
|
|
|
_updateIndicator(indicator, pageIndex) {
|
|
|
|
let progress =
|
|
|
|
Math.max(1 - Math.abs(this._currentPosition - pageIndex), 0);
|
|
|
|
|
|
|
|
let inactiveScale = indicator.pressed
|
|
|
|
? INDICATOR_INACTIVE_SCALE_PRESSED : INDICATOR_INACTIVE_SCALE;
|
|
|
|
let inactiveOpacity = indicator.hover
|
|
|
|
? INDICATOR_INACTIVE_OPACITY_HOVER : INDICATOR_INACTIVE_OPACITY;
|
|
|
|
|
|
|
|
let scale = inactiveScale + (1 - inactiveScale) * progress;
|
|
|
|
let opacity = inactiveOpacity + (255 - inactiveOpacity) * progress;
|
|
|
|
|
|
|
|
indicator.child.set_scale(scale, scale);
|
|
|
|
indicator.child.opacity = opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrentPosition(currentPosition) {
|
|
|
|
this._currentPosition = currentPosition;
|
2019-01-22 06:10:51 -05:00
|
|
|
|
|
|
|
let children = this.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++)
|
2019-11-21 17:24:46 -05:00
|
|
|
this._updateIndicator(children[i], i);
|
2019-01-22 06:10:51 -05:00
|
|
|
}
|
2020-05-25 15:51:26 -04:00
|
|
|
|
|
|
|
get nPages() {
|
|
|
|
return this._nPages;
|
|
|
|
}
|
2019-01-22 06:10:51 -05:00
|
|
|
});
|