mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
19 lines
327 B
JavaScript
19 lines
327 B
JavaScript
const { Gdk, GObject, Gtk } = imports.gi;
|
|
|
|
var Window = GObject.registerClass(
|
|
class ClapperWindow extends Gtk.ApplicationWindow
|
|
{
|
|
_init(application, title)
|
|
{
|
|
super._init({
|
|
application: application,
|
|
title: title,
|
|
});
|
|
}
|
|
|
|
updateTitlebar(mediaInfo)
|
|
{
|
|
|
|
}
|
|
});
|