-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
224 lines (174 loc) · 4.7 KB
/
app.js
File metadata and controls
224 lines (174 loc) · 4.7 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
.pragma library
var objAppUi;
var objAppTheme;
var objTopToolBar;
var objMainView;
var objBottomToolBar;
var objPackageReader;
var objLeftDock;
var appToolBarLoader;
var appStatusBarLoader;
var appBottomBarLoader;
var objLeftSideBar;
var objRightSideBar;
var appLeftSideBarLoader;
var appRightSideBarLoader;
var objAndroidExtras;
function setup(appUi){
objAppUi = appUi;
var themeOne = {};
themeOne["primary"] = "#004361";
themeOne["secondary"] = "#007290";
themeOne["accent"] = "#007290";
themeOne["background"] = "white";
themeOne["foreground"] = "black";
themeOne["theme"] = "dark";
objAppTheme.setThemeFromJsonData(JSON.stringify(themeOne));
}
function setTheme(jsobject){
objAppTheme.setThemeFromJsonData(JSON.stringify(jsobject));
}
function appId(){
return objAppUi.appId;
}
function addPage(page,jsobject){
objAppUi.pushPage(page,jsobject);
}
function addRemotePage(page,jsobject){
objAppUi.addRemotePage(page,jsobject);
}
function getCurrentPage(){
return objAppUi.getCurrentPage();
}
function closePage(index){
objAppUi.removePage(index);
}
function closeCurrentPage(){
objAppUi.popPage();
}
function removePage(index){
objAppUi.removePage(index);
}
function isDark(color){
return objAppTheme.isDark(color);
}
/* Methods for LeftDock */
function addDockItem(icon,title,callable){
objLeftDock.addIcon({"icon":icon,"title":title});
objLeftDock.callableList.push(callable);
}
function insertDockItem(index,icon,title,callable){
objLeftDock.insertIcon(index,{"icon":icon,"title":title});
objLeftDock.callableList.splice(index, 0, callable);
}
function pushDockItem(icon,title,callable){
objLeftDock.addDockItem(icon,title,callable);
}
function popDockItem(){
var i = totalDockItems()-1;
var di = dockItemAt(i);
removeDockItemByIndex(i);
di["callable"] = objLeftDock.callableList[i];
objLeftDock.callableList.splice(i, 1);
return di;
}
function totalDockItems(){
return objLeftDock.totalIcons;
}
function clearDockItems(){
objLeftDock.clearAllIcons();
objLeftDock.callableList.clear();
}
function dockItemAt(index){
var di = objLeftDock.iconAt(index);
di["callable"] = objLeftDock.callableList[i];
return di;
}
function removeDockItemByIndex(index){
try{
objLeftDock.removeIcon(index);
objLeftDock.callableList.splice(index, 1);
}
catch(e){
console.log("ERROR on removeDockItemByIndex: "+index);
console.log(e);
}
}
/* END Methods for LeftDock */
function onGridStateChanged(callable){
if(callable){
objAppUi.gridStateChanged.connect(callable);
callable();
}
}
function gridState(){
return objAppUi.gridState;
}
function showDock(){
objLeftDock.open();
}
function hideDock(){
objLeftDock.close();
}
/** Different path resolver **/
function resolveURL(path){
return objAppUi.absoluteURL(path);
}
function resolvePath(path){
return objAppUi.absolutePath(path);
}
function resolveDataPath(path){
return objAppUi.absoluteDataPath(path);
}
function resolveDatabasePath(dbname){
return objAppUi.absoluteDatabasePath(dbname);
}
/** QbAppPackageReader methods **/
function isFile(rpath){
return objPackageReader.isFile(rpath);
}
function isExists(rpath){
return objPackageReader.isExists(rpath);
}
function fileList(rpath){
return objPackageReader.fileList(rpath);
}
function getList(rpath){
return objPackageReader.getList(rpath);
}
function getFile(rpath){
return objPackageReader.get(rpath);
}
function extract(src,dest){
return objPackageReader.extract(src,dest);
}
/** END QbAppPackageReader **/
/** Android related things **/
function showAndroidStatusBar(){
if(Qt.platform.os !== "android") return;
objTopToolBar.height = objAppUi.dpscale(75);
objTopToolBar.appStatusBarHeight = objAppUi.dpscale(25);
objLeftDock.topBlockHeight = objAppUi.dpscale(25);
objAndroidExtras.showSystemUi();
}
function hideAndroidStatusBar(){
if(Qt.platform.os !== "android") return;
objAndroidExtras.hideSystemUi();
objTopToolBar.height = objAppUi.dpscale(50);
objTopToolBar.appStatusBarHeight = 0;
objLeftDock.topBlockHeight = 0;
}
function enableAndroidFullScreen(){
if(Qt.platform.os !== "android") return;
objAndroidExtras.enableFullScreen();
objTopToolBar.height = objAppUi.dpscale(50);
objTopToolBar.appStatusBarHeight = 0;
objLeftDock.topBlockHeight = 0;
}
function disableAndroidFullScreen(){
if(Qt.platform.os !== "android") return;
objAndroidExtras.disableFullScreen();
objTopToolBar.height = objAppUi.dpscale(75);
objTopToolBar.appStatusBarHeight = objAppUi.dpscale(25);
objLeftDock.topBlockHeight = objAppUi.dpscale(25);
}