-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathswitcherApplication.js
117 lines (91 loc) · 3.35 KB
/
switcherApplication.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// -*- mode: js; js-indent-level: 2; indent-tabs-mode: nil -*-
/* ------------------------------------------------------------------------- */
"use strict";
/* ------------------------------------------------------------------------- */
export class SwitcherApplication {
/* ....................................................................... */
constructor(appId, shellApp=null) {
this._appId = appId;
this._shellApp = shellApp;
}
/* ....................................................................... */
get appId() {
return this._appId;
}
/* ....................................................................... */
setShellApp(shellApp) {
this._shellApp = shellApp
}
/* ....................................................................... */
create_icon_texture(...args) {
return this._shellApp.create_icon_texture(...args);
}
/* ....................................................................... */
get_id() {
return this._shellApp.get_id();
}
/* ....................................................................... */
get_name() {
throw Error("'get_name' is not implemented");
}
/* ....................................................................... */
get_app_info() {
throw Error("'get_app_info' is not implemented");
}
/* ....................................................................... */
get_title() {
throw Error("'get_title' is not implemented");
}
/* ....................................................................... */
open_new_window(...args) {
return this._shellApp.open_new_window(...args);
}
/* ....................................................................... */
get_workspace() {
return this._shellApp.get_workspace()
}
}
/* ------------------------------------------------------------------------- */
export class RegularApplication extends SwitcherApplication {
/* ....................................................................... */
get_name() {
return this._shellApp.get_name();
}
/* ....................................................................... */
get_title() {
return this._shellApp.get_title();
}
/* ....................................................................... */
get_app_info() {
return this._shellApp.get_app_info();
}
}
/* ------------------------------------------------------------------------- */
export class GnomeControlApplication
extends SwitcherApplication {
/* ....................................................................... */
constructor(appId, mainApplicationName="", shellApp=null) {
super(appId, shellApp)
this._mainApplicationName = mainApplicationName;
if (this._mainApplicationName !== "") {
this._nameSuffix = " (%s)".format(this._mainApplicationName);
}
else {
this._nameSuffix = "";
}
}
/* ....................................................................... */
get_name() {
return this._shellApp.get_name() + this._nameSuffix;
}
/* ....................................................................... */
get_title() {
// TODO; for X11 try to fish out WM_WINDOW_ROLE xprop to look up
// the title
return this._shellApp.get_title();
}
/* ....................................................................... */
get_app_info() {
return null;
}
}