mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 16:02:00 +02:00
The "clapper_src" directory name was unusual. This was done to make it work as a widget for other apps. Now that this functionality got removed it can be named simply "src" as recommended by guidelines.
22 lines
587 B
JavaScript
22 lines
587 B
JavaScript
const { GObject } = imports.gi;
|
|
const { AppBase } = imports.src.appBase;
|
|
const { HeaderBarBase } = imports.src.headerbarBase;
|
|
const { WidgetRemote } = imports.src.widgetRemote;
|
|
|
|
var AppRemote = GObject.registerClass(
|
|
class ClapperAppRemote extends AppBase
|
|
{
|
|
vfunc_startup()
|
|
{
|
|
super.vfunc_startup();
|
|
|
|
const clapperWidget = new WidgetRemote();
|
|
this.active_window.set_child(clapperWidget);
|
|
|
|
const headerBar = new HeaderBarBase(this.active_window);
|
|
this.active_window.set_titlebar(headerBar);
|
|
|
|
this.active_window.maximize();
|
|
}
|
|
});
|