mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
130 lines
3.4 KiB
JavaScript
130 lines
3.4 KiB
JavaScript
const { GObject, Gtk, Pango } = imports.gi;
|
|
const Misc = imports.src.misc;
|
|
|
|
var HeaderBarBase = GObject.registerClass(
|
|
class ClapperHeaderBarBase extends Gtk.HeaderBar
|
|
{
|
|
_init(window)
|
|
{
|
|
super._init({
|
|
can_focus: false,
|
|
});
|
|
|
|
const clapperPath = Misc.getClapperPath();
|
|
const uiBuilder = Gtk.Builder.new_from_file(
|
|
`${clapperPath}/ui/clapper.ui`
|
|
);
|
|
|
|
this.add_css_class('noborder');
|
|
this.set_title_widget(this._createWidgetForWindow(window));
|
|
|
|
const mainMenuButton = new Gtk.MenuButton({
|
|
icon_name: 'open-menu-symbolic',
|
|
valign: Gtk.Align.CENTER,
|
|
});
|
|
const mainMenuModel = uiBuilder.get_object('mainMenu');
|
|
const mainMenuPopover = new HeaderBarPopover(mainMenuModel);
|
|
mainMenuButton.set_popover(mainMenuPopover);
|
|
mainMenuButton.add_css_class('circular');
|
|
this.pack_start(mainMenuButton);
|
|
|
|
const buttonsBox = new Gtk.Box({
|
|
orientation: Gtk.Orientation.HORIZONTAL,
|
|
valign: Gtk.Align.CENTER,
|
|
});
|
|
buttonsBox.add_css_class('linked');
|
|
|
|
const floatButton = new Gtk.Button({
|
|
icon_name: 'preferences-desktop-remote-desktop-symbolic',
|
|
});
|
|
floatButton.add_css_class('circular');
|
|
floatButton.connect('clicked', this._onFloatButtonClicked.bind(this));
|
|
buttonsBox.append(floatButton);
|
|
|
|
const fullscreenButton = new Gtk.Button({
|
|
icon_name: 'view-fullscreen-symbolic',
|
|
});
|
|
fullscreenButton.add_css_class('circular');
|
|
fullscreenButton.connect('clicked', this._onFullscreenButtonClicked.bind(this));
|
|
|
|
buttonsBox.append(fullscreenButton);
|
|
this.pack_start(buttonsBox);
|
|
}
|
|
|
|
updateHeaderBar(title, subtitle)
|
|
{
|
|
this.titleLabel.label = title;
|
|
this.subtitleLabel.visible = (subtitle !== null);
|
|
|
|
if(subtitle)
|
|
this.subtitleLabel.label = subtitle;
|
|
}
|
|
|
|
_createWidgetForWindow(window)
|
|
{
|
|
const box = new Gtk.Box({
|
|
orientation: Gtk.Orientation.VERTICAL,
|
|
valign: Gtk.Align.CENTER,
|
|
});
|
|
|
|
this.titleLabel = new Gtk.Label({
|
|
halign: Gtk.Align.CENTER,
|
|
single_line_mode: true,
|
|
ellipsize: Pango.EllipsizeMode.END,
|
|
width_chars: 5,
|
|
});
|
|
this.titleLabel.add_css_class('title');
|
|
this.titleLabel.set_parent(box);
|
|
|
|
window.bind_property('title', this.titleLabel, 'label',
|
|
GObject.BindingFlags.SYNC_CREATE
|
|
);
|
|
|
|
this.subtitleLabel = new Gtk.Label({
|
|
halign: Gtk.Align.CENTER,
|
|
single_line_mode: true,
|
|
ellipsize: Pango.EllipsizeMode.END,
|
|
});
|
|
this.subtitleLabel.add_css_class('subtitle');
|
|
this.subtitleLabel.set_parent(box);
|
|
this.subtitleLabel.visible = false;
|
|
|
|
return box;
|
|
}
|
|
|
|
_onFloatButtonClicked()
|
|
{
|
|
}
|
|
|
|
_onFullscreenButtonClicked()
|
|
{
|
|
}
|
|
});
|
|
|
|
var HeaderBarPopover = GObject.registerClass(
|
|
class ClapperHeaderBarPopover extends Gtk.PopoverMenu
|
|
{
|
|
_init(model)
|
|
{
|
|
super._init({
|
|
menu_model: model,
|
|
});
|
|
|
|
this.connect('closed', this._onClosed.bind(this));
|
|
}
|
|
|
|
_onClosed()
|
|
{
|
|
const { child } = this.get_root();
|
|
|
|
if(
|
|
!child
|
|
|| !child.player
|
|
|| !child.player.widget
|
|
)
|
|
return;
|
|
|
|
child.player.widget.grab_focus();
|
|
}
|
|
});
|