Add initial WebSocket client app

This commit is contained in:
Rafostar
2020-12-15 18:20:48 +01:00
parent 8564cc9617
commit 5231a1f225
4 changed files with 123 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
const { GObject } = imports.gi;
const { AppBase } = imports.clapper_src.appBase;
const { HeaderBarBase } = imports.clapper_src.headerbarBase;
const { WidgetRemote } = imports.clapper_src.widgetRemote;
var AppRemote = GObject.registerClass(
class ClapperAppRemote extends AppBase
@@ -9,6 +10,9 @@ class ClapperAppRemote extends AppBase
{
super.vfunc_startup();
let clapperWidget = new WidgetRemote();
this.active_window.set_child(clapperWidget);
let headerBar = new HeaderBarBase(this.active_window);
this.active_window.set_titlebar(headerBar);