mirror of
https://github.com/Rafostar/clapper.git
synced 2025-09-01 00:41:58 +02:00
Add initial WebSocket client app
This commit is contained in:
13
clapper_src/widgetRemote.js
Normal file
13
clapper_src/widgetRemote.js
Normal file
@@ -0,0 +1,13 @@
|
||||
const { GObject, Gtk } = imports.gi;
|
||||
const { PlayerRemote } = imports.clapper_src.playerRemote;
|
||||
|
||||
var WidgetRemote = GObject.registerClass(
|
||||
class ClapperWidgetRemote extends Gtk.Grid
|
||||
{
|
||||
_init(opts)
|
||||
{
|
||||
super._init();
|
||||
|
||||
this.player = new PlayerRemote();
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user