Add initial ClapperRemote app

This commit is contained in:
Rafostar
2020-12-11 15:38:25 +01:00
parent 6315669933
commit 4875a31be4
4 changed files with 58 additions and 8 deletions

17
clapper_src/appRemote.js Normal file
View File

@@ -0,0 +1,17 @@
const { GObject } = imports.gi;
const { AppBase } = imports.clapper_src.appBase;
const { HeaderBarBase } = imports.clapper_src.headerbarBase;
var AppRemote = GObject.registerClass(
class ClapperAppRemote extends AppBase
{
vfunc_startup()
{
super.vfunc_startup();
let headerBar = new HeaderBarBase(this.active_window);
this.active_window.set_titlebar(headerBar);
this.active_window.maximize();
}
});