@extscreen/es-core 2.3.3 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2289 -273
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1123,6 +1123,7 @@ class ESModule {
|
|
1123
1123
|
pageTag: params.pageTag,
|
1124
1124
|
pageLimit: params.pageLimit,
|
1125
1125
|
backgroundColor: params.backgroundColor,
|
1126
|
+
splash: params.splash,
|
1126
1127
|
});
|
1127
1128
|
}
|
1128
1129
|
|
@@ -2007,51 +2008,20 @@ class ESUsbDeviceManager {
|
|
2007
2008
|
|
2008
2009
|
var ESUsbDeviceManager$1 = new ESUsbDeviceManager();
|
2009
2010
|
|
2010
|
-
|
2011
|
-
* ESApplication instance
|
2012
|
-
*/
|
2013
|
-
class ESApp {
|
2014
|
-
//instance
|
2015
|
-
_application = null;
|
2016
|
-
|
2017
|
-
newInstance(appName, app, rootView, router) {
|
2018
|
-
const application = new Vue({
|
2019
|
-
appName: appName,
|
2020
|
-
rootView: rootView,
|
2021
|
-
render: h => h(app),
|
2022
|
-
router,
|
2023
|
-
});
|
2024
|
-
|
2025
|
-
application.$start((/* app */) => {
|
2026
|
-
// 这里干一点 Hippy 启动后的需要干的事情,比如通知终端前端已经准备完毕,可以开始发消息了。
|
2027
|
-
// setApp(app);
|
2028
|
-
});
|
2029
|
-
this._application = application;
|
2030
|
-
}
|
2031
|
-
|
2032
|
-
getInstance() {
|
2033
|
-
return this._application;
|
2034
|
-
}
|
2011
|
+
let ESApp;
|
2035
2012
|
|
2036
|
-
|
2037
|
-
|
2038
|
-
this._application.$off(event, args);
|
2039
|
-
}
|
2040
|
-
}
|
2041
|
-
|
2042
|
-
$on(event, callback) {
|
2043
|
-
if (this._application) {
|
2044
|
-
this._application.$on(event, callback);
|
2045
|
-
}
|
2046
|
-
}
|
2013
|
+
function setESApp(app) {
|
2014
|
+
ESApp = app;
|
2047
2015
|
}
|
2048
2016
|
|
2049
|
-
|
2017
|
+
function getESApp() {
|
2018
|
+
return ESApp;
|
2019
|
+
}
|
2050
2020
|
|
2051
2021
|
var ESUsbDevice = {
|
2052
2022
|
mounted() {
|
2053
|
-
ESApp
|
2054
|
-
ESApp
|
2023
|
+
ESApp.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
|
2024
|
+
ESApp.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
|
2055
2025
|
},
|
2056
2026
|
|
2057
2027
|
methods: {
|
@@ -2073,8 +2043,8 @@ var ESUsbDevice = {
|
|
2073
2043
|
},
|
2074
2044
|
|
2075
2045
|
beforeDestroy() {
|
2076
|
-
ESApp
|
2077
|
-
ESApp
|
2046
|
+
ESApp.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
|
2047
|
+
ESApp.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
|
2078
2048
|
},
|
2079
2049
|
};
|
2080
2050
|
|
@@ -2083,11 +2053,6 @@ var ESUsbDevice = {
|
|
2083
2053
|
*/
|
2084
2054
|
class ESMMapModule {
|
2085
2055
|
|
2086
|
-
initESPackageName(packageName) {
|
2087
|
-
return Vue.Native.callNativeWithPromise('AndroidMMapModule', 'initESPackageName',
|
2088
|
-
packageName);
|
2089
|
-
}
|
2090
|
-
|
2091
2056
|
//
|
2092
2057
|
getBoolean(packageName, key, defValue) {
|
2093
2058
|
return Vue.Native.callNativeWithPromise('AndroidMMapModule', 'getBoolean',
|
@@ -2157,6 +2122,92 @@ class ESMMapModule {
|
|
2157
2122
|
|
2158
2123
|
var ESMMapModule$1 = new ESMMapModule();
|
2159
2124
|
|
2125
|
+
/**
|
2126
|
+
*
|
2127
|
+
*/
|
2128
|
+
|
2129
|
+
class ESManager {
|
2130
|
+
|
2131
|
+
_esSdkVersionCode = null;
|
2132
|
+
_esSdkVersionName = null;
|
2133
|
+
_esSdkPackageName = null;
|
2134
|
+
_esMiniProgramPath = null;
|
2135
|
+
_esKitVersionCode = -1;
|
2136
|
+
_esSdkSchemes = [];
|
2137
|
+
_runtimePath = null;
|
2138
|
+
|
2139
|
+
_esSdkInfo = null;
|
2140
|
+
|
2141
|
+
|
2142
|
+
init() {
|
2143
|
+
return Promise.resolve()
|
2144
|
+
.then(() => this.initESInfoPromise())
|
2145
|
+
}
|
2146
|
+
|
2147
|
+
initESInfoPromise() {
|
2148
|
+
return ESModule$1.getESSDKInfo()
|
2149
|
+
.then((result) => {
|
2150
|
+
this._esSdkInfo = result;
|
2151
|
+
if (result) {
|
2152
|
+
this._esSdkVersionCode = result.versionCode;
|
2153
|
+
this._esSdkVersionName = result.versionName;
|
2154
|
+
this._esSdkPackageName = result.packageName;
|
2155
|
+
this._esMiniProgramPath = result.miniProgramPath;
|
2156
|
+
this._esSdkSchemes = result.schemes;
|
2157
|
+
if (result.eskit_ver_code) {
|
2158
|
+
this._esKitVersionCode = result.eskit_ver_code;
|
2159
|
+
}
|
2160
|
+
//
|
2161
|
+
this._runtimePath = result.runtimePath;
|
2162
|
+
}
|
2163
|
+
return Promise.resolve();
|
2164
|
+
}
|
2165
|
+
);
|
2166
|
+
}
|
2167
|
+
|
2168
|
+
getESSDKInfo() {
|
2169
|
+
return this._esSdkInfo;
|
2170
|
+
}
|
2171
|
+
|
2172
|
+
getESSDKVersionCode() {
|
2173
|
+
return this._esKitVersionCode;
|
2174
|
+
}
|
2175
|
+
|
2176
|
+
getESSDKVersionName() {
|
2177
|
+
return this._esSdkVersionName;
|
2178
|
+
}
|
2179
|
+
|
2180
|
+
getESPackageName() {
|
2181
|
+
return this._esSdkPackageName;
|
2182
|
+
}
|
2183
|
+
|
2184
|
+
getESVersionCode() {
|
2185
|
+
return this._esSdkVersionCode;
|
2186
|
+
}
|
2187
|
+
|
2188
|
+
getESVersionName() {
|
2189
|
+
return this._esSdkVersionName;
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
getESMiniProgramPath() {
|
2193
|
+
return this._esMiniProgramPath;
|
2194
|
+
}
|
2195
|
+
|
2196
|
+
getESAppPath() {
|
2197
|
+
return this._esMiniProgramPath;
|
2198
|
+
}
|
2199
|
+
|
2200
|
+
getESAppRuntimePath() {
|
2201
|
+
return this._runtimePath;
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
getESSDKSupportSchemes() {
|
2205
|
+
return this._esSdkSchemes;
|
2206
|
+
}
|
2207
|
+
}
|
2208
|
+
|
2209
|
+
var ESManager$1 = new ESManager();
|
2210
|
+
|
2160
2211
|
/**
|
2161
2212
|
*
|
2162
2213
|
*/
|
@@ -2166,6 +2217,7 @@ class ESMMapManager {
|
|
2166
2217
|
_packageName = "";
|
2167
2218
|
|
2168
2219
|
init() {
|
2220
|
+
this._packageName = ESManager$1.getESPackageName();
|
2169
2221
|
return Promise.resolve();
|
2170
2222
|
}
|
2171
2223
|
|
@@ -2173,12 +2225,7 @@ class ESMMapManager {
|
|
2173
2225
|
return this._packageName;
|
2174
2226
|
}
|
2175
2227
|
|
2176
|
-
|
2177
|
-
this._packageName = packageName;
|
2178
|
-
return ESMMapModule$1.initESPackageName(packageName);
|
2179
|
-
}
|
2180
|
-
|
2181
|
-
//-----------------------------------------------------------
|
2228
|
+
//---------------------------操作自己的共享内存--------------------------------
|
2182
2229
|
//
|
2183
2230
|
getBoolean(key, defValue) {
|
2184
2231
|
return ESMMapModule$1.getBoolean(this.getPackageName(), key, defValue);
|
@@ -2233,7 +2280,7 @@ class ESMMapManager {
|
|
2233
2280
|
return ESMMapModule$1.putMap(this.getPackageName(), key, value, mode);
|
2234
2281
|
}
|
2235
2282
|
|
2236
|
-
|
2283
|
+
//----------------------------操作其他APP的共享内存-----------------------------------
|
2237
2284
|
//
|
2238
2285
|
getSharedBoolean(packageName, key, defValue) {
|
2239
2286
|
return ESMMapModule$1.getBoolean(packageName, key, defValue);
|
@@ -2332,81 +2379,6 @@ class ESDisplayManager {
|
|
2332
2379
|
|
2333
2380
|
var ESDisplayManager$1 = new ESDisplayManager();
|
2334
2381
|
|
2335
|
-
/**
|
2336
|
-
*
|
2337
|
-
*/
|
2338
|
-
|
2339
|
-
class ESManager {
|
2340
|
-
|
2341
|
-
_esSdkVersionCode = null;
|
2342
|
-
_esSdkVersionName = null;
|
2343
|
-
_esSdkPackageName = null;
|
2344
|
-
_esMiniProgramPath = null;
|
2345
|
-
_esKitVersionCode = -1;
|
2346
|
-
_esSdkSchemes = [];
|
2347
|
-
|
2348
|
-
_esSdkInfo = null;
|
2349
|
-
|
2350
|
-
|
2351
|
-
init() {
|
2352
|
-
return Promise.resolve()
|
2353
|
-
.then(() => this.initESInfoPromise())
|
2354
|
-
}
|
2355
|
-
|
2356
|
-
initESInfoPromise() {
|
2357
|
-
return ESModule$1.getESSDKInfo()
|
2358
|
-
.then((result) => {
|
2359
|
-
this._esSdkInfo = result;
|
2360
|
-
if (result) {
|
2361
|
-
this._esSdkVersionCode = result.versionCode;
|
2362
|
-
this._esSdkVersionName = result.versionName;
|
2363
|
-
this._esSdkPackageName = result.packageName;
|
2364
|
-
this._esMiniProgramPath = result.miniProgramPath;
|
2365
|
-
this._esSdkSchemes = result.schemes;
|
2366
|
-
if (result.eskit_ver_code) {
|
2367
|
-
this._esKitVersionCode = result.eskit_ver_code;
|
2368
|
-
}
|
2369
|
-
}
|
2370
|
-
return Promise.resolve();
|
2371
|
-
}
|
2372
|
-
);
|
2373
|
-
}
|
2374
|
-
|
2375
|
-
getESSDKInfo() {
|
2376
|
-
return this._esSdkInfo;
|
2377
|
-
}
|
2378
|
-
|
2379
|
-
getESSDKVersionCode() {
|
2380
|
-
return this._esKitVersionCode;
|
2381
|
-
}
|
2382
|
-
|
2383
|
-
getESSDKVersionName() {
|
2384
|
-
return this._esSdkVersionName;
|
2385
|
-
}
|
2386
|
-
|
2387
|
-
getESPackageName() {
|
2388
|
-
return this._esSdkPackageName;
|
2389
|
-
}
|
2390
|
-
|
2391
|
-
getESVersionCode() {
|
2392
|
-
return this._esSdkVersionCode;
|
2393
|
-
}
|
2394
|
-
|
2395
|
-
getESVersionName() {
|
2396
|
-
return this._esSdkVersionName;
|
2397
|
-
}
|
2398
|
-
|
2399
|
-
getESMiniProgramPath() {
|
2400
|
-
return this._esMiniProgramPath;
|
2401
|
-
}
|
2402
|
-
|
2403
|
-
getESSDKSupportSchemes() {
|
2404
|
-
return this._esSdkSchemes;
|
2405
|
-
}
|
2406
|
-
}
|
2407
|
-
|
2408
|
-
var ESManager$1 = new ESManager();
|
2409
|
-
|
2410
2382
|
const ES_SDK_VERSION_20 = -1;
|
2411
2383
|
const ES_SDK_VERSION_21 = 2.1;
|
2412
2384
|
const ES_SDK_VERSION_22 = 2.2;
|
@@ -2511,6 +2483,9 @@ class ESLaunchManager {
|
|
2511
2483
|
pageTag: intent.pageTag,
|
2512
2484
|
pageLimit: intent.pageLimit,
|
2513
2485
|
backgroundColor: intent.backgroundColor,
|
2486
|
+
//
|
2487
|
+
pkg: intent.packageName,
|
2488
|
+
splash: intent.splash,
|
2514
2489
|
});
|
2515
2490
|
}
|
2516
2491
|
|
@@ -2694,7 +2669,7 @@ const TAG$7 = "ESBroadcast";
|
|
2694
2669
|
|
2695
2670
|
var ESBroadcast = {
|
2696
2671
|
mounted() {
|
2697
|
-
ESApp
|
2672
|
+
ESApp.$on('onESBroadcastReceive', this.__onBroadcastReceive);
|
2698
2673
|
},
|
2699
2674
|
data() {
|
2700
2675
|
return {
|
@@ -2702,7 +2677,7 @@ var ESBroadcast = {
|
|
2702
2677
|
}
|
2703
2678
|
},
|
2704
2679
|
beforeDestroy() {
|
2705
|
-
ESApp
|
2680
|
+
ESApp.$off('onESBroadcastReceive', this.__onBroadcastReceive);
|
2706
2681
|
},
|
2707
2682
|
methods: {
|
2708
2683
|
__registerReceiver(interFilter, receiverId) {
|
@@ -2988,16 +2963,16 @@ var ESRouter = {
|
|
2988
2963
|
|
2989
2964
|
mounted() {
|
2990
2965
|
Vue.Native.callNative('DeviceEventModule', 'setListenBackPress', true);
|
2991
|
-
ESApp
|
2992
|
-
ESApp
|
2993
|
-
ESApp
|
2994
|
-
ESApp
|
2966
|
+
ESApp.$on('hardwareBackPress', this.onESRouterBackPressed);
|
2967
|
+
ESApp.$on('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
|
2968
|
+
ESApp.$on('LifecycleChange', this.onESRouterLifecycleChanged);
|
2969
|
+
ESApp.$on('OnNewIntent', this.onESRouterLifecycleNewIntent);
|
2995
2970
|
},
|
2996
2971
|
beforeDestroy() {
|
2997
|
-
ESApp
|
2998
|
-
ESApp
|
2999
|
-
ESApp
|
3000
|
-
ESApp
|
2972
|
+
ESApp.$off('hardwareBackPress', this.onESRouterBackPressed);
|
2973
|
+
ESApp.$off('DispatchKeyEvent', this.onESRouterDispatchKeyEvent);
|
2974
|
+
ESApp.$off('LifecycleChange', this.onESRouterLifecycleChanged);
|
2975
|
+
ESApp.$off('OnNewIntent', this.onESRouterLifecycleNewIntent);
|
3001
2976
|
},
|
3002
2977
|
|
3003
2978
|
methods: {
|
@@ -3007,7 +2982,8 @@ var ESRouter = {
|
|
3007
2982
|
ESLog.d(TAG$4, '#-------onESRouterBackPressed----->>>>>');
|
3008
2983
|
}
|
3009
2984
|
let router = this.$router;
|
3010
|
-
if (router
|
2985
|
+
if (router && router.history && router.history.stack
|
2986
|
+
&& router.history.stack.length > 0) {
|
3011
2987
|
let route = router.currentRoute;
|
3012
2988
|
ESRouterKeyManager$1.dispatchBackPressed(route);
|
3013
2989
|
}
|
@@ -3018,7 +2994,8 @@ var ESRouter = {
|
|
3018
2994
|
ESLog.d(TAG$4, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
|
3019
2995
|
}
|
3020
2996
|
let router = this.$router;
|
3021
|
-
if (router
|
2997
|
+
if (router && router.history && router.history.stack
|
2998
|
+
&& router.history.stack.length > 0) {
|
3022
2999
|
let route = router.currentRoute;
|
3023
3000
|
ESRouterKeyManager$1.dispatchKeyEvent(route, keyEvent);
|
3024
3001
|
}
|
@@ -3030,7 +3007,8 @@ var ESRouter = {
|
|
3030
3007
|
ESLog.d(TAG$4, '#-------onESRouterLifecycleChanged----->>>>>' + event);
|
3031
3008
|
}
|
3032
3009
|
let router = this.$router;
|
3033
|
-
if (router
|
3010
|
+
if (router && router.history && router.history.stack
|
3011
|
+
&& router.history.stack.length > 0) {
|
3034
3012
|
let route = router.currentRoute;
|
3035
3013
|
ESRouterLifecycleManager$1.onESRouterLifecycleChanged(route, event);
|
3036
3014
|
}
|
@@ -3042,7 +3020,8 @@ var ESRouter = {
|
|
3042
3020
|
ESLog.d(TAG$4, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
|
3043
3021
|
}
|
3044
3022
|
let router = this.$router;
|
3045
|
-
if (router
|
3023
|
+
if (router && router.history && router.history.stack
|
3024
|
+
&& router.history.stack.length > 0) {
|
3046
3025
|
let route = router.currentRoute;
|
3047
3026
|
ESRouterLifecycleManager$1.onESRouterLifecycleNewIntent(route, intent.params);
|
3048
3027
|
}
|
@@ -3405,10 +3384,10 @@ var ESPlugin = {
|
|
3405
3384
|
|
3406
3385
|
methods: {
|
3407
3386
|
onESEventPlugin() {
|
3408
|
-
ESApp
|
3387
|
+
ESApp.$on('onESPluginStateChanged', this.onESPluginStateChanged);
|
3409
3388
|
},
|
3410
3389
|
offESEventPlugin() {
|
3411
|
-
ESApp
|
3390
|
+
ESApp.$off('onESPluginStateChanged', this.onESPluginStateChanged);
|
3412
3391
|
},
|
3413
3392
|
onESPluginStateChanged(status) {
|
3414
3393
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
@@ -3572,10 +3551,10 @@ const TAG$2 = "ESEventBus";
|
|
3572
3551
|
|
3573
3552
|
var ESEventBusEvent = {
|
3574
3553
|
mounted() {
|
3575
|
-
ESApp
|
3554
|
+
ESApp.$on('ESEventBusEvent', this.onESEventBusEvent);
|
3576
3555
|
},
|
3577
3556
|
beforeDestroy() {
|
3578
|
-
ESApp
|
3557
|
+
ESApp.$off('ESEventBusEvent', this.onESEventBusEvent);
|
3579
3558
|
},
|
3580
3559
|
methods: {
|
3581
3560
|
onESEventBusEvent(event) {
|
@@ -4233,97 +4212,1102 @@ staticRenderFns: [],
|
|
4233
4212
|
},
|
4234
4213
|
getSeekBarMode() {
|
4235
4214
|
return this.seekBarMode;
|
4236
|
-
}
|
4237
|
-
}
|
4238
|
-
};
|
4239
|
-
|
4240
|
-
function ESSeekBarViewComponent() {
|
4241
|
-
//
|
4242
|
-
Vue.component(ESSeekBar.name, ESSeekBar);
|
4243
|
-
//
|
4244
|
-
Vue.registerElement('TVSeekBarViewComponent', {
|
4245
|
-
component: {
|
4246
|
-
name: 'TVSeekBarViewComponent',
|
4247
|
-
processEventData(event, nativeEventName, nativeEventParams) {
|
4248
|
-
switch (nativeEventName) {
|
4249
|
-
case 'onFocus':
|
4250
|
-
event.isFocused = nativeEventParams.isFocused;
|
4251
|
-
break;
|
4252
|
-
case 'onSeekBarChange':
|
4253
|
-
event.fromUser = nativeEventParams.fromUser;
|
4254
|
-
event.progress = nativeEventParams.progress;
|
4255
|
-
break;
|
4256
|
-
}
|
4257
|
-
return event;
|
4258
|
-
},
|
4259
4215
|
},
|
4260
|
-
|
4261
|
-
|
4262
|
-
|
4263
|
-
|
4264
|
-
methods: {
|
4265
|
-
setMaxProgress(progress) {
|
4266
|
-
Vue.Native.callUIFunction(this.$refs.seekBar,
|
4267
|
-
'setMaxProgress', [progress], (res) => {
|
4268
|
-
});
|
4269
|
-
},
|
4270
|
-
setProgress(progress) {
|
4271
|
-
Vue.Native.callUIFunction(this.$refs.seekBar,
|
4272
|
-
'setProgress', [progress], (res) => {
|
4273
|
-
});
|
4274
|
-
},
|
4275
|
-
setSecondProgress(progress) {
|
4276
|
-
Vue.Native.callUIFunction(this.$refs.seekBar,
|
4277
|
-
'setSecondProgress', [progress], (res) => {
|
4278
|
-
});
|
4279
|
-
},
|
4280
|
-
show(value) {
|
4281
|
-
Vue.Native.callUIFunction(this.$refs.seekBar,
|
4282
|
-
'show', [value], (res) => {
|
4283
|
-
});
|
4284
|
-
},
|
4285
|
-
onFocusChange(evt) {
|
4286
|
-
this.$emit('focus', evt);
|
4287
|
-
},
|
4288
|
-
onSeekBarChange(evt) {
|
4289
|
-
this.$emit('seek-change', evt);
|
4290
|
-
},
|
4291
|
-
|
4216
|
+
//----------------------------------------------------------
|
4217
|
+
invalidateSeekBar() {
|
4218
|
+
this.$refs.es_seek_bar.invalidateSeekBar();
|
4292
4219
|
},
|
4293
|
-
|
4294
|
-
|
4295
|
-
const on = getEventRedirector.call(this, [
|
4296
|
-
['focus', 'focusChange'],
|
4297
|
-
['seek-change', 'seekBarChange'],
|
4298
|
-
]);
|
4299
|
-
return h('TVSeekBarViewComponent',
|
4300
|
-
{
|
4301
|
-
on,
|
4302
|
-
ref: 'seekBar',
|
4303
|
-
}, this.$slots.default);
|
4220
|
+
setFocusable(focusable) {
|
4221
|
+
this.$refs.es_seek_bar.setFocusable(focusable);
|
4304
4222
|
},
|
4305
|
-
|
4306
|
-
|
4307
|
-
|
4308
|
-
var ESProgressBar = {
|
4309
|
-
render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_progress_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
|
4310
|
-
staticRenderFns: [],
|
4311
|
-
name: "ProgressBar",
|
4312
|
-
props: {
|
4313
|
-
maxProgress: {
|
4314
|
-
type: Number,
|
4315
|
-
default: 0
|
4223
|
+
setClickable(clickable) {
|
4224
|
+
this.$refs.es_seek_bar.setClickable(clickable);
|
4316
4225
|
},
|
4317
|
-
|
4318
|
-
|
4319
|
-
default: 0
|
4226
|
+
requestFocus() {
|
4227
|
+
this.$refs.es_seek_bar.requestFocus();
|
4320
4228
|
},
|
4321
|
-
|
4322
|
-
|
4323
|
-
default: 0
|
4229
|
+
requestLayout() {
|
4230
|
+
this.$refs.es_seek_bar.requestLayout();
|
4324
4231
|
},
|
4325
|
-
|
4326
|
-
|
4232
|
+
invalidate() {
|
4233
|
+
this.$refs.es_seek_bar.invalidate();
|
4234
|
+
},
|
4235
|
+
setVisible(visible) {
|
4236
|
+
this.$refs.es_seek_bar.setVisible(visible);
|
4237
|
+
},
|
4238
|
+
setLeftSeekBarVisible(visible) {
|
4239
|
+
this.$refs.es_seek_bar.setLeftSeekBarVisible(visible);
|
4240
|
+
},
|
4241
|
+
setRightSeekBarVisible(visible) {
|
4242
|
+
this.$refs.es_seek_bar.setRightSeekBarVisible(visible);
|
4243
|
+
},
|
4244
|
+
setSeekBarMode(mode) {
|
4245
|
+
this.$refs.es_seek_bar.setSeekBarMode(mode);
|
4246
|
+
},
|
4247
|
+
setRangeProgress(leftValue, rightValue) {
|
4248
|
+
this.$refs.es_seek_bar.setRangeProgress(leftValue, rightValue);
|
4249
|
+
},
|
4250
|
+
getProgress() {
|
4251
|
+
this.$refs.es_seek_bar.getProgress();
|
4252
|
+
},
|
4253
|
+
getLeftProgress() {
|
4254
|
+
this.$refs.es_seek_bar.getLeftProgress();
|
4255
|
+
},
|
4256
|
+
getRightProgress() {
|
4257
|
+
this.$refs.es_seek_bar.getRightProgress();
|
4258
|
+
},
|
4259
|
+
setRange(min, max, minInterval) {
|
4260
|
+
this.$refs.es_seek_bar.setRange(min, max, minInterval);
|
4261
|
+
},
|
4262
|
+
setGravity(gravity) {
|
4263
|
+
this.$refs.es_seek_bar.setGravity(gravity);
|
4264
|
+
},
|
4265
|
+
setProgressWidth(progressWidth) {
|
4266
|
+
this.$refs.es_seek_bar.setProgressWidth(progressWidth);
|
4267
|
+
},
|
4268
|
+
setProgressHeight(progressHeight) {
|
4269
|
+
this.$refs.es_seek_bar.setProgressHeight(progressHeight);
|
4270
|
+
},
|
4271
|
+
setProgressRadius(progressRadius) {
|
4272
|
+
this.$refs.es_seek_bar.setProgressRadius(progressRadius);
|
4273
|
+
},
|
4274
|
+
setProgressColor(progressColor) {
|
4275
|
+
this.$refs.es_seek_bar.setProgressColor(progressColor);
|
4276
|
+
},
|
4277
|
+
setProgressDefaultColor(defaultProgressColor) {
|
4278
|
+
this.$refs.es_seek_bar.setProgressDefaultColor(defaultProgressColor);
|
4279
|
+
},
|
4280
|
+
setProgressDrawable(progressDrawable) {
|
4281
|
+
this.$refs.es_seek_bar.setProgressDrawable(progressDrawable);
|
4282
|
+
},
|
4283
|
+
setProgressDefaultDrawable(progressDefaultDrawable) {
|
4284
|
+
this.$refs.es_seek_bar.setProgressDefaultDrawable(progressDefaultDrawable);
|
4285
|
+
},
|
4286
|
+
setProgressUrl(progressUrl) {
|
4287
|
+
this.$refs.es_seek_bar.setProgressUrl(progressUrl);
|
4288
|
+
},
|
4289
|
+
setProgressDefaultUrl(progressDefaultUrl) {
|
4290
|
+
this.$refs.es_seek_bar.setProgressDefaultUrl(progressDefaultUrl);
|
4291
|
+
},
|
4292
|
+
showIndicator(showIndicator) {
|
4293
|
+
this.$refs.es_seek_bar.showIndicator(showIndicator);
|
4294
|
+
},
|
4295
|
+
showLeftIndicator(showLeftIndicator) {
|
4296
|
+
this.$refs.es_seek_bar.showLeftIndicator(showLeftIndicator);
|
4297
|
+
},
|
4298
|
+
showRightIndicator(showRightIndicator) {
|
4299
|
+
this.$refs.es_seek_bar.showRightIndicator(showRightIndicator);
|
4300
|
+
},
|
4301
|
+
setIndicatorShowMode(indicatorShowMode) {
|
4302
|
+
this.$refs.es_seek_bar.setIndicatorShowMode(indicatorShowMode);
|
4303
|
+
},
|
4304
|
+
setLeftIndicatorShowMode(indicatorShowMode) {
|
4305
|
+
this.$refs.es_seek_bar.setLeftIndicatorShowMode(indicatorShowMode);
|
4306
|
+
},
|
4307
|
+
setRightIndicatorShowMode(indicatorShowMode) {
|
4308
|
+
this.$refs.es_seek_bar.setRightIndicatorShowMode(indicatorShowMode);
|
4309
|
+
},
|
4310
|
+
setIndicatorWidth(indicatorWidth) {
|
4311
|
+
this.$refs.es_seek_bar.setIndicatorWidth(indicatorWidth);
|
4312
|
+
},
|
4313
|
+
setLeftIndicatorWidth(indicatorWidth) {
|
4314
|
+
this.$refs.es_seek_bar.setLeftIndicatorWidth(indicatorWidth);
|
4315
|
+
},
|
4316
|
+
setRightIndicatorWidth(indicatorWidth) {
|
4317
|
+
this.$refs.es_seek_bar.setRightIndicatorWidth(indicatorWidth);
|
4318
|
+
},
|
4319
|
+
setIndicatorHeight(indicatorHeight) {
|
4320
|
+
this.$refs.es_seek_bar.setIndicatorHeight(indicatorHeight);
|
4321
|
+
},
|
4322
|
+
setLeftIndicatorHeight(indicatorHeight) {
|
4323
|
+
this.$refs.es_seek_bar.setLeftIndicatorHeight(indicatorHeight);
|
4324
|
+
},
|
4325
|
+
setRightIndicatorHeight(indicatorHeight) {
|
4326
|
+
this.$refs.es_seek_bar.setRightIndicatorHeight(indicatorHeight);
|
4327
|
+
},
|
4328
|
+
setIndicatorTextDecimalFormat(formatPattern) {
|
4329
|
+
this.$refs.es_seek_bar.setIndicatorTextDecimalFormat(formatPattern);
|
4330
|
+
},
|
4331
|
+
setLeftIndicatorTextDecimalFormat(formatPattern) {
|
4332
|
+
this.$refs.es_seek_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
|
4333
|
+
},
|
4334
|
+
setRightIndicatorTextDecimalFormat(formatPattern) {
|
4335
|
+
this.$refs.es_seek_bar.setRightIndicatorTextDecimalFormat(formatPattern);
|
4336
|
+
},
|
4337
|
+
setIndicatorTextStringFormat(formatPattern) {
|
4338
|
+
this.$refs.es_seek_bar.setIndicatorTextStringFormat(formatPattern);
|
4339
|
+
},
|
4340
|
+
setLeftIndicatorTextStringFormat(formatPattern) {
|
4341
|
+
this.$refs.es_seek_bar.setLeftIndicatorTextStringFormat(formatPattern);
|
4342
|
+
},
|
4343
|
+
setRightIndicatorTextStringFormat(formatPattern) {
|
4344
|
+
this.$refs.es_seek_bar.setRightIndicatorTextStringFormat(formatPattern);
|
4345
|
+
},
|
4346
|
+
setIndicatorMargin(indicatorMargin) {
|
4347
|
+
this.$refs.es_seek_bar.setIndicatorMargin(indicatorMargin);
|
4348
|
+
},
|
4349
|
+
setLeftIndicatorMargin(indicatorMargin) {
|
4350
|
+
this.$refs.es_seek_bar.setLeftIndicatorMargin(indicatorMargin);
|
4351
|
+
},
|
4352
|
+
setRightIndicatorMargin(indicatorMargin) {
|
4353
|
+
this.$refs.es_seek_bar.setRightIndicatorMargin(indicatorMargin);
|
4354
|
+
},
|
4355
|
+
setIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4356
|
+
this.$refs.es_seek_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
|
4357
|
+
},
|
4358
|
+
setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4359
|
+
this.$refs.es_seek_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
|
4360
|
+
},
|
4361
|
+
setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4362
|
+
this.$refs.es_seek_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
|
4363
|
+
},
|
4364
|
+
setIndicatorPaddingTop(indicatorPaddingTop) {
|
4365
|
+
this.$refs.es_seek_bar.setIndicatorPaddingTop(indicatorPaddingTop);
|
4366
|
+
},
|
4367
|
+
setLeftIndicatorPaddingTop(indicatorPaddingTop) {
|
4368
|
+
this.$refs.es_seek_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
|
4369
|
+
},
|
4370
|
+
setRightIndicatorPaddingTop(indicatorPaddingTop) {
|
4371
|
+
this.$refs.es_seek_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
|
4372
|
+
},
|
4373
|
+
setIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4374
|
+
this.$refs.es_seek_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
|
4375
|
+
},
|
4376
|
+
setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4377
|
+
this.$refs.es_seek_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
|
4378
|
+
},
|
4379
|
+
setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4380
|
+
this.$refs.es_seek_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
|
4381
|
+
},
|
4382
|
+
setIndicatorPaddingRight(indicatorPaddingRight) {
|
4383
|
+
this.$refs.es_seek_bar.setIndicatorPaddingRight(indicatorPaddingRight);
|
4384
|
+
},
|
4385
|
+
setLeftIndicatorPaddingRight(indicatorPaddingRight) {
|
4386
|
+
this.$refs.es_seek_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
|
4387
|
+
},
|
4388
|
+
setRightIndicatorPaddingRight(indicatorPaddingRight) {
|
4389
|
+
this.$refs.es_seek_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
|
4390
|
+
},
|
4391
|
+
setIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4392
|
+
this.$refs.es_seek_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
|
4393
|
+
},
|
4394
|
+
setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4395
|
+
this.$refs.es_seek_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
|
4396
|
+
},
|
4397
|
+
setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4398
|
+
this.$refs.es_seek_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
|
4399
|
+
},
|
4400
|
+
setIndicatorRadius(indicatorRadius) {
|
4401
|
+
this.$refs.es_seek_bar.setIndicatorRadius(indicatorRadius);
|
4402
|
+
},
|
4403
|
+
setLeftIndicatorRadius(indicatorRadius) {
|
4404
|
+
this.$refs.es_seek_bar.setLeftIndicatorRadius(indicatorRadius);
|
4405
|
+
},
|
4406
|
+
setRightIndicatorRadius(indicatorRadius) {
|
4407
|
+
this.$refs.es_seek_bar.setRightIndicatorRadius(indicatorRadius);
|
4408
|
+
},
|
4409
|
+
setIndicatorTextSize(indicatorTextSize) {
|
4410
|
+
this.$refs.es_seek_bar.setIndicatorTextSize(indicatorTextSize);
|
4411
|
+
},
|
4412
|
+
setLeftIndicatorTextSize(indicatorTextSize) {
|
4413
|
+
this.$refs.es_seek_bar.setLeftIndicatorTextSize(indicatorTextSize);
|
4414
|
+
},
|
4415
|
+
setRightIndicatorTextSize(indicatorTextSize) {
|
4416
|
+
this.$refs.es_seek_bar.setRightIndicatorTextSize(indicatorTextSize);
|
4417
|
+
},
|
4418
|
+
setIndicatorTextColor(indicatorTextColor) {
|
4419
|
+
this.$refs.es_seek_bar.setIndicatorTextColor(indicatorTextColor);
|
4420
|
+
},
|
4421
|
+
setLeftIndicatorTextColor(indicatorTextColor) {
|
4422
|
+
this.$refs.es_seek_bar.setLeftIndicatorTextColor(indicatorTextColor);
|
4423
|
+
},
|
4424
|
+
setRightIndicatorTextColor(indicatorTextColor) {
|
4425
|
+
this.$refs.es_seek_bar.setRightIndicatorTextColor(indicatorTextColor);
|
4426
|
+
},
|
4427
|
+
setIndicatorArrowSize(indicatorArrowSize) {
|
4428
|
+
this.$refs.es_seek_bar.setIndicatorArrowSize(indicatorArrowSize);
|
4429
|
+
},
|
4430
|
+
setLeftIndicatorArrowSize(indicatorArrowSize) {
|
4431
|
+
this.$refs.es_seek_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
|
4432
|
+
},
|
4433
|
+
setRightIndicatorArrowSize(indicatorArrowSize) {
|
4434
|
+
this.$refs.es_seek_bar.setRightIndicatorArrowSize(indicatorArrowSize);
|
4435
|
+
},
|
4436
|
+
setIndicatorDrawable(indicatorDrawable) {
|
4437
|
+
this.$refs.es_seek_bar.setIndicatorDrawable(indicatorDrawable);
|
4438
|
+
},
|
4439
|
+
setLeftIndicatorDrawable(leftIndicatorDrawable) {
|
4440
|
+
this.$refs.es_seek_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
|
4441
|
+
},
|
4442
|
+
setRightIndicatorDrawable(rightIndicatorDrawable) {
|
4443
|
+
this.$refs.es_seek_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
|
4444
|
+
},
|
4445
|
+
setIndicatorUrl(indicatorUrl) {
|
4446
|
+
this.$refs.es_seek_bar.setIndicatorUrl(indicatorUrl);
|
4447
|
+
},
|
4448
|
+
setLeftIndicatorUrl(leftIndicatorUrl) {
|
4449
|
+
this.$refs.es_seek_bar.setLeftIndicatorUrl(leftIndicatorUrl);
|
4450
|
+
},
|
4451
|
+
setRightIndicatorUrl(rightIndicatorUrl) {
|
4452
|
+
this.$refs.es_seek_bar.setRightIndicatorUrl(rightIndicatorUrl);
|
4453
|
+
},
|
4454
|
+
setThumbWidth(thumbWidth) {
|
4455
|
+
this.$refs.es_seek_bar.setThumbWidth(thumbWidth);
|
4456
|
+
},
|
4457
|
+
setLeftThumbWidth(thumbWidth) {
|
4458
|
+
this.$refs.es_seek_bar.setLeftThumbWidth(thumbWidth);
|
4459
|
+
},
|
4460
|
+
setRightThumbWidth(thumbWidth) {
|
4461
|
+
this.$refs.es_seek_bar.setRightThumbWidth(thumbWidth);
|
4462
|
+
},
|
4463
|
+
setThumbHeight(thumbHeight) {
|
4464
|
+
this.$refs.es_seek_bar.setThumbHeight(thumbHeight);
|
4465
|
+
},
|
4466
|
+
setLeftThumbHeight(thumbHeight) {
|
4467
|
+
this.$refs.es_seek_bar.setLeftThumbHeight(thumbHeight);
|
4468
|
+
},
|
4469
|
+
setRightThumbHeight(thumbHeight) {
|
4470
|
+
this.$refs.es_seek_bar.setRightThumbHeight(thumbHeight);
|
4471
|
+
},
|
4472
|
+
scaleThumb() {
|
4473
|
+
this.$refs.es_seek_bar.scaleThumb();
|
4474
|
+
},
|
4475
|
+
scaleLeftThumb() {
|
4476
|
+
this.$refs.es_seek_bar.scaleLeftThumb();
|
4477
|
+
},
|
4478
|
+
scaleRightThumb() {
|
4479
|
+
this.$refs.es_seek_bar.scaleRightThumb();
|
4480
|
+
},
|
4481
|
+
resetThumb() {
|
4482
|
+
this.$refs.es_seek_bar.resetThumb();
|
4483
|
+
},
|
4484
|
+
resetLeftThumb() {
|
4485
|
+
this.$refs.es_seek_bar.resetLeftThumb();
|
4486
|
+
},
|
4487
|
+
resetRightThumb() {
|
4488
|
+
this.$refs.es_seek_bar.resetRightThumb();
|
4489
|
+
},
|
4490
|
+
setThumbScaleRatio(thumbScaleRatio) {
|
4491
|
+
this.$refs.es_seek_bar.setThumbScaleRatio(thumbScaleRatio);
|
4492
|
+
},
|
4493
|
+
setLeftThumbScaleRatio(thumbScaleRatio) {
|
4494
|
+
this.$refs.es_seek_bar.setLeftThumbScaleRatio(thumbScaleRatio);
|
4495
|
+
},
|
4496
|
+
setRightThumbScaleRatio(thumbScaleRatio) {
|
4497
|
+
this.$refs.es_seek_bar.setRightThumbScaleRatio(thumbScaleRatio);
|
4498
|
+
},
|
4499
|
+
setThumbActivate(activate) {
|
4500
|
+
this.$refs.es_seek_bar.setThumbActivate(activate);
|
4501
|
+
},
|
4502
|
+
setLeftThumbActivate(activate) {
|
4503
|
+
this.$refs.es_seek_bar.setLeftThumbActivate(activate);
|
4504
|
+
},
|
4505
|
+
setRightThumbActivate(activate) {
|
4506
|
+
this.$refs.es_seek_bar.setRightThumbActivate(activate);
|
4507
|
+
},
|
4508
|
+
setThumbDrawable(drawable) {
|
4509
|
+
this.$refs.es_seek_bar.setThumbDrawable(drawable);
|
4510
|
+
},
|
4511
|
+
setLeftThumbDrawable(drawable) {
|
4512
|
+
this.$refs.es_seek_bar.setLeftThumbDrawable(drawable);
|
4513
|
+
},
|
4514
|
+
setRightThumbDrawable(drawable) {
|
4515
|
+
this.$refs.es_seek_bar.setRightThumbDrawable(drawable);
|
4516
|
+
},
|
4517
|
+
setThumbUrl(url) {
|
4518
|
+
this.$refs.es_seek_bar.setThumbUrl(url);
|
4519
|
+
},
|
4520
|
+
setLeftThumbUrl(url) {
|
4521
|
+
this.$refs.es_seek_bar.setLeftThumbUrl(url);
|
4522
|
+
},
|
4523
|
+
setRightThumbUrl(url) {
|
4524
|
+
this.$refs.es_seek_bar.setRightThumbUrl(url);
|
4525
|
+
},
|
4526
|
+
setThumbInactivatedDrawable(drawable) {
|
4527
|
+
this.$refs.es_seek_bar.setThumbInactivatedDrawable(drawable);
|
4528
|
+
},
|
4529
|
+
setLeftThumbInactivatedDrawable(drawable) {
|
4530
|
+
this.$refs.es_seek_bar.setLeftThumbInactivatedDrawable(drawable);
|
4531
|
+
},
|
4532
|
+
setRightThumbInactivatedDrawable(drawable) {
|
4533
|
+
this.$refs.es_seek_bar.setRightThumbInactivatedDrawable(drawable);
|
4534
|
+
},
|
4535
|
+
setThumbInactivatedUrl(url) {
|
4536
|
+
this.$refs.es_seek_bar.setThumbInactivatedUrl(url);
|
4537
|
+
},
|
4538
|
+
setLeftThumbInactivatedUrl(url) {
|
4539
|
+
this.$refs.es_seek_bar.setLeftThumbInactivatedUrl(url);
|
4540
|
+
},
|
4541
|
+
setRightThumbInactivatedUrl(url) {
|
4542
|
+
this.$refs.es_seek_bar.setRightThumbInactivatedUrl(url);
|
4543
|
+
},
|
4544
|
+
setTickMarkMode(tickMarkMode) {
|
4545
|
+
this.$refs.es_seek_bar.setTickMarkMode(tickMarkMode);
|
4546
|
+
},
|
4547
|
+
setTickMarkGravity(tickMarkGravity) {
|
4548
|
+
this.$refs.es_seek_bar.setTickMarkGravity(tickMarkGravity);
|
4549
|
+
},
|
4550
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity) {
|
4551
|
+
this.$refs.es_seek_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
|
4552
|
+
},
|
4553
|
+
setTickMarkTextArray(tickMarkTextArray) {
|
4554
|
+
this.$refs.es_seek_bar.setTickMarkTextArray(tickMarkTextArray);
|
4555
|
+
},
|
4556
|
+
setTickMarkTextMargin(tickMarkTextMargin) {
|
4557
|
+
this.$refs.es_seek_bar.setTickMarkTextMargin(tickMarkTextMargin);
|
4558
|
+
},
|
4559
|
+
setTickMarkTextSize(tickMarkTextSize) {
|
4560
|
+
this.$refs.es_seek_bar.setTickMarkTextSize(tickMarkTextSize);
|
4561
|
+
},
|
4562
|
+
setTickMarkTextColor(tickMarkTextColor) {
|
4563
|
+
this.$refs.es_seek_bar.setTickMarkTextColor(tickMarkTextColor);
|
4564
|
+
},
|
4565
|
+
setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
|
4566
|
+
this.$refs.es_seek_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
|
4567
|
+
},
|
4568
|
+
setSteps(steps) {
|
4569
|
+
this.$refs.es_seek_bar.setSteps(steps);
|
4570
|
+
},
|
4571
|
+
setStepsWidth(stepsWidth) {
|
4572
|
+
this.$refs.es_seek_bar.setStepsWidth(stepsWidth);
|
4573
|
+
},
|
4574
|
+
setStepsHeight(stepsHeight) {
|
4575
|
+
this.$refs.es_seek_bar.setStepsHeight(stepsHeight);
|
4576
|
+
},
|
4577
|
+
setStepsRadius(stepsRadius) {
|
4578
|
+
this.$refs.es_seek_bar.setStepsRadius(stepsRadius);
|
4579
|
+
},
|
4580
|
+
setStepsColor(stepsColor) {
|
4581
|
+
this.$refs.es_seek_bar.setStepsColor(stepsColor);
|
4582
|
+
},
|
4583
|
+
setStepsAutoBonding(stepsAutoBonding) {
|
4584
|
+
this.$refs.es_seek_bar.setStepsAutoBonding(stepsAutoBonding);
|
4585
|
+
},
|
4586
|
+
setStepsDrawable(drawableArray) {
|
4587
|
+
this.$refs.es_seek_bar.setStepsDrawable(drawableArray);
|
4588
|
+
},
|
4589
|
+
setStepsUrl(urlArray) {
|
4590
|
+
this.$refs.es_seek_bar.setStepsUrl(urlArray);
|
4591
|
+
},
|
4592
|
+
}
|
4593
|
+
};
|
4594
|
+
|
4595
|
+
function ESSeekBarViewComponent() {
|
4596
|
+
//
|
4597
|
+
Vue.component(ESSeekBar.name, ESSeekBar);
|
4598
|
+
//
|
4599
|
+
Vue.registerElement('TVSeekBarViewComponent', {
|
4600
|
+
component: {
|
4601
|
+
name: 'TVSeekBarViewComponent',
|
4602
|
+
processEventData(event, nativeEventName, nativeEventParams) {
|
4603
|
+
switch (nativeEventName) {
|
4604
|
+
case 'onFocus':
|
4605
|
+
event.isFocused = nativeEventParams.isFocused;
|
4606
|
+
break;
|
4607
|
+
case 'onSeekBarChange':
|
4608
|
+
event.fromUser = nativeEventParams.fromUser;
|
4609
|
+
event.progress = nativeEventParams.progress;
|
4610
|
+
event.leftProgress = nativeEventParams.leftProgress;
|
4611
|
+
event.rightProgress = nativeEventParams.rightProgress;
|
4612
|
+
break;
|
4613
|
+
}
|
4614
|
+
return event;
|
4615
|
+
},
|
4616
|
+
},
|
4617
|
+
});
|
4618
|
+
|
4619
|
+
Vue.component('es-seek-bar-view-component', {
|
4620
|
+
|
4621
|
+
methods: {
|
4622
|
+
invalidateSeekBar() {
|
4623
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4624
|
+
'invalidateSeekBar', [], (res) => {
|
4625
|
+
});
|
4626
|
+
},
|
4627
|
+
setFocusable(focusable) {
|
4628
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4629
|
+
'setFocusable', [focusable], (res) => {
|
4630
|
+
});
|
4631
|
+
},
|
4632
|
+
setClickable(clickable) {
|
4633
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4634
|
+
'setClickable', [clickable], (res) => {
|
4635
|
+
});
|
4636
|
+
},
|
4637
|
+
requestFocus() {
|
4638
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4639
|
+
'requestFocus', [], (res) => {
|
4640
|
+
});
|
4641
|
+
},
|
4642
|
+
requestLayout() {
|
4643
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4644
|
+
'requestLayout', [], (res) => {
|
4645
|
+
});
|
4646
|
+
},
|
4647
|
+
invalidate() {
|
4648
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4649
|
+
'invalidate', [], (res) => {
|
4650
|
+
});
|
4651
|
+
},
|
4652
|
+
setVisible(visible) {
|
4653
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4654
|
+
'setVisible', [visible], (res) => {
|
4655
|
+
});
|
4656
|
+
},
|
4657
|
+
setLeftSeekBarVisible(visible) {
|
4658
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4659
|
+
'setLeftSeekBarVisible', [visible], (res) => {
|
4660
|
+
});
|
4661
|
+
},
|
4662
|
+
setRightSeekBarVisible(visible) {
|
4663
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4664
|
+
'setRightSeekBarVisible', [visible], (res) => {
|
4665
|
+
});
|
4666
|
+
},
|
4667
|
+
setSeekBarMode(mode) {
|
4668
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4669
|
+
'setSeekBarMode', [mode], (res) => {
|
4670
|
+
});
|
4671
|
+
},
|
4672
|
+
setProgress(progress) {
|
4673
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4674
|
+
'setProgress', [progress], (res) => {
|
4675
|
+
});
|
4676
|
+
},
|
4677
|
+
setRangeProgress(leftValue, rightValue) {
|
4678
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4679
|
+
'setProgress', [leftValue, rightValue], (res) => {
|
4680
|
+
});
|
4681
|
+
},
|
4682
|
+
getProgress() {
|
4683
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4684
|
+
'getProgress', [], (progress) => {
|
4685
|
+
});
|
4686
|
+
},
|
4687
|
+
getLeftProgress() {
|
4688
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4689
|
+
'getLeftProgress', [], (progress) => {
|
4690
|
+
});
|
4691
|
+
},
|
4692
|
+
getRightProgress() {
|
4693
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4694
|
+
'getRightProgress', [], (progress) => {
|
4695
|
+
});
|
4696
|
+
},
|
4697
|
+
setRange(min, max, minInterval) {
|
4698
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4699
|
+
'setRange', [min, max, minInterval], (value) => {
|
4700
|
+
});
|
4701
|
+
},
|
4702
|
+
setGravity(gravity) {
|
4703
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4704
|
+
'setGravity', [gravity], (value) => {
|
4705
|
+
});
|
4706
|
+
},
|
4707
|
+
setProgressWidth(progressWidth) {
|
4708
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4709
|
+
'setProgressWidth', [progressWidth], (value) => {
|
4710
|
+
});
|
4711
|
+
},
|
4712
|
+
setProgressHeight(progressHeight) {
|
4713
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4714
|
+
'setProgressHeight', [progressHeight], (value) => {
|
4715
|
+
});
|
4716
|
+
},
|
4717
|
+
setProgressRadius(progressRadius) {
|
4718
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4719
|
+
'setProgressRadius', [progressRadius], (value) => {
|
4720
|
+
});
|
4721
|
+
},
|
4722
|
+
setProgressColor(progressColor) {
|
4723
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4724
|
+
'setProgressColor', [progressColor], (value) => {
|
4725
|
+
});
|
4726
|
+
},
|
4727
|
+
setProgressDefaultColor(defaultProgressColor) {
|
4728
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4729
|
+
'setProgressDefaultColor', [defaultProgressColor], (value) => {
|
4730
|
+
});
|
4731
|
+
},
|
4732
|
+
setProgressDrawable(progressDrawable) {
|
4733
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4734
|
+
'setProgressDrawable', [progressDrawable], (value) => {
|
4735
|
+
});
|
4736
|
+
},
|
4737
|
+
setProgressDefaultDrawable(progressDefaultDrawable) {
|
4738
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4739
|
+
'setProgressDefaultDrawable', [progressDefaultDrawable], (value) => {
|
4740
|
+
});
|
4741
|
+
},
|
4742
|
+
setProgressUrl(progressUrl) {
|
4743
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4744
|
+
'setProgressUrl', [progressUrl], (value) => {
|
4745
|
+
});
|
4746
|
+
},
|
4747
|
+
setProgressDefaultUrl(progressDefaultUrl) {
|
4748
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4749
|
+
'setProgressDefaultUrl', [progressDefaultUrl], (value) => {
|
4750
|
+
});
|
4751
|
+
},
|
4752
|
+
showIndicator(showIndicator) {
|
4753
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4754
|
+
'showIndicator', [showIndicator], (value) => {
|
4755
|
+
});
|
4756
|
+
},
|
4757
|
+
showLeftIndicator(showLeftIndicator) {
|
4758
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4759
|
+
'showLeftIndicator', [showLeftIndicator], (value) => {
|
4760
|
+
});
|
4761
|
+
},
|
4762
|
+
showRightIndicator(showRightIndicator) {
|
4763
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4764
|
+
'showRightIndicator', [showRightIndicator], (value) => {
|
4765
|
+
});
|
4766
|
+
},
|
4767
|
+
setIndicatorShowMode(indicatorShowMode) {
|
4768
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4769
|
+
'setIndicatorShowMode', [indicatorShowMode], (value) => {
|
4770
|
+
});
|
4771
|
+
},
|
4772
|
+
setLeftIndicatorShowMode(indicatorShowMode) {
|
4773
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4774
|
+
'setLeftIndicatorShowMode', [indicatorShowMode], (value) => {
|
4775
|
+
});
|
4776
|
+
},
|
4777
|
+
setRightIndicatorShowMode(indicatorShowMode) {
|
4778
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4779
|
+
'setRightIndicatorShowMode', [indicatorShowMode], (value) => {
|
4780
|
+
});
|
4781
|
+
},
|
4782
|
+
setIndicatorWidth(indicatorWidth) {
|
4783
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4784
|
+
'setIndicatorWidth', [indicatorWidth], (value) => {
|
4785
|
+
});
|
4786
|
+
},
|
4787
|
+
setLeftIndicatorWidth(indicatorWidth) {
|
4788
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4789
|
+
'setLeftIndicatorWidth', [indicatorWidth], (value) => {
|
4790
|
+
});
|
4791
|
+
},
|
4792
|
+
setRightIndicatorWidth(indicatorWidth) {
|
4793
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4794
|
+
'setRightIndicatorWidth', [indicatorWidth], (value) => {
|
4795
|
+
});
|
4796
|
+
},
|
4797
|
+
|
4798
|
+
setIndicatorHeight(indicatorHeight) {
|
4799
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4800
|
+
'setIndicatorHeight', [indicatorHeight], (value) => {
|
4801
|
+
});
|
4802
|
+
},
|
4803
|
+
setLeftIndicatorHeight(indicatorHeight) {
|
4804
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4805
|
+
'setLeftIndicatorHeight', [indicatorHeight], (value) => {
|
4806
|
+
});
|
4807
|
+
},
|
4808
|
+
setRightIndicatorHeight(indicatorHeight) {
|
4809
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4810
|
+
'setRightIndicatorHeight', [indicatorHeight], (value) => {
|
4811
|
+
});
|
4812
|
+
},
|
4813
|
+
setIndicatorTextDecimalFormat(formatPattern) {
|
4814
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4815
|
+
'setIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
4816
|
+
});
|
4817
|
+
},
|
4818
|
+
setLeftIndicatorTextDecimalFormat(formatPattern) {
|
4819
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4820
|
+
'setLeftIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
4821
|
+
});
|
4822
|
+
},
|
4823
|
+
setRightIndicatorTextDecimalFormat(formatPattern) {
|
4824
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4825
|
+
'setRightIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
4826
|
+
});
|
4827
|
+
},
|
4828
|
+
setIndicatorTextStringFormat(formatPattern) {
|
4829
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4830
|
+
'setIndicatorTextStringFormat', [formatPattern], (value) => {
|
4831
|
+
});
|
4832
|
+
},
|
4833
|
+
setLeftIndicatorTextStringFormat(formatPattern) {
|
4834
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4835
|
+
'setLeftIndicatorTextStringFormat', [formatPattern], (value) => {
|
4836
|
+
});
|
4837
|
+
},
|
4838
|
+
setRightIndicatorTextStringFormat(formatPattern) {
|
4839
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4840
|
+
'setRightIndicatorTextStringFormat', [formatPattern], (value) => {
|
4841
|
+
});
|
4842
|
+
},
|
4843
|
+
setIndicatorMargin(indicatorMargin) {
|
4844
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4845
|
+
'setIndicatorMargin', [indicatorMargin], (value) => {
|
4846
|
+
});
|
4847
|
+
},
|
4848
|
+
setLeftIndicatorMargin(indicatorMargin) {
|
4849
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4850
|
+
'setLeftIndicatorMargin', [indicatorMargin], (value) => {
|
4851
|
+
});
|
4852
|
+
},
|
4853
|
+
setRightIndicatorMargin(indicatorMargin) {
|
4854
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4855
|
+
'setRightIndicatorMargin', [indicatorMargin], (value) => {
|
4856
|
+
});
|
4857
|
+
},
|
4858
|
+
setIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4859
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4860
|
+
'setIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
4861
|
+
});
|
4862
|
+
},
|
4863
|
+
setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4864
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4865
|
+
'setLeftIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
4866
|
+
});
|
4867
|
+
},
|
4868
|
+
setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
|
4869
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4870
|
+
'setRightIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
4871
|
+
});
|
4872
|
+
},
|
4873
|
+
setIndicatorPaddingTop(indicatorPaddingTop) {
|
4874
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4875
|
+
'setIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
4876
|
+
});
|
4877
|
+
},
|
4878
|
+
setLeftIndicatorPaddingTop(indicatorPaddingTop) {
|
4879
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4880
|
+
'setLeftIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
4881
|
+
});
|
4882
|
+
},
|
4883
|
+
setRightIndicatorPaddingTop(indicatorPaddingTop) {
|
4884
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4885
|
+
'setRightIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
4886
|
+
});
|
4887
|
+
},
|
4888
|
+
|
4889
|
+
setIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4890
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4891
|
+
'setIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
4892
|
+
});
|
4893
|
+
},
|
4894
|
+
setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4895
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4896
|
+
'setLeftIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
4897
|
+
});
|
4898
|
+
},
|
4899
|
+
setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
|
4900
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4901
|
+
'setRightIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
4902
|
+
});
|
4903
|
+
},
|
4904
|
+
setIndicatorPaddingRight(indicatorPaddingRight) {
|
4905
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4906
|
+
'setIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
4907
|
+
});
|
4908
|
+
},
|
4909
|
+
setLeftIndicatorPaddingRight(indicatorPaddingRight) {
|
4910
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4911
|
+
'setLeftIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
4912
|
+
});
|
4913
|
+
},
|
4914
|
+
setRightIndicatorPaddingRight(indicatorPaddingRight) {
|
4915
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4916
|
+
'setRightIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
4917
|
+
});
|
4918
|
+
},
|
4919
|
+
setIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4920
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4921
|
+
'setIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
4922
|
+
});
|
4923
|
+
},
|
4924
|
+
setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4925
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4926
|
+
'setLeftIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
4927
|
+
});
|
4928
|
+
},
|
4929
|
+
setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
|
4930
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4931
|
+
'setRightIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
4932
|
+
});
|
4933
|
+
},
|
4934
|
+
setIndicatorRadius(indicatorRadius) {
|
4935
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4936
|
+
'setIndicatorRadius', [indicatorRadius], (value) => {
|
4937
|
+
});
|
4938
|
+
},
|
4939
|
+
setLeftIndicatorRadius(indicatorRadius) {
|
4940
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4941
|
+
'setLeftIndicatorRadius', [indicatorRadius], (value) => {
|
4942
|
+
});
|
4943
|
+
},
|
4944
|
+
setRightIndicatorRadius(indicatorRadius) {
|
4945
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4946
|
+
'setRightIndicatorRadius', [indicatorRadius], (value) => {
|
4947
|
+
});
|
4948
|
+
},
|
4949
|
+
setIndicatorTextSize(indicatorTextSize) {
|
4950
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4951
|
+
'setIndicatorTextSize', [indicatorTextSize], (value) => {
|
4952
|
+
});
|
4953
|
+
},
|
4954
|
+
setLeftIndicatorTextSize(indicatorTextSize) {
|
4955
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4956
|
+
'setLeftIndicatorTextSize', [indicatorTextSize], (value) => {
|
4957
|
+
});
|
4958
|
+
},
|
4959
|
+
setRightIndicatorTextSize(indicatorTextSize) {
|
4960
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4961
|
+
'setRightIndicatorTextSize', [indicatorTextSize], (value) => {
|
4962
|
+
});
|
4963
|
+
},
|
4964
|
+
setIndicatorTextColor(indicatorTextColor) {
|
4965
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4966
|
+
'setIndicatorTextColor', [indicatorTextColor], (value) => {
|
4967
|
+
});
|
4968
|
+
},
|
4969
|
+
setLeftIndicatorTextColor(indicatorTextColor) {
|
4970
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4971
|
+
'setLeftIndicatorTextColor', [indicatorTextColor], (value) => {
|
4972
|
+
});
|
4973
|
+
},
|
4974
|
+
setRightIndicatorTextColor(indicatorTextColor) {
|
4975
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4976
|
+
'setRightIndicatorTextColor', [indicatorTextColor], (value) => {
|
4977
|
+
});
|
4978
|
+
},
|
4979
|
+
setIndicatorArrowSize(indicatorArrowSize) {
|
4980
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4981
|
+
'setIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
4982
|
+
});
|
4983
|
+
},
|
4984
|
+
setLeftIndicatorArrowSize(indicatorArrowSize) {
|
4985
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4986
|
+
'setLeftIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
4987
|
+
});
|
4988
|
+
},
|
4989
|
+
setRightIndicatorArrowSize(indicatorArrowSize) {
|
4990
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4991
|
+
'setRightIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
4992
|
+
});
|
4993
|
+
},
|
4994
|
+
setIndicatorDrawable(indicatorDrawable) {
|
4995
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
4996
|
+
'setIndicatorDrawable', [indicatorDrawable], (value) => {
|
4997
|
+
});
|
4998
|
+
},
|
4999
|
+
setLeftIndicatorDrawable(leftIndicatorDrawable) {
|
5000
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5001
|
+
'setLeftIndicatorDrawable', [leftIndicatorDrawable], (value) => {
|
5002
|
+
});
|
5003
|
+
},
|
5004
|
+
setRightIndicatorDrawable(rightIndicatorDrawable) {
|
5005
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5006
|
+
'setRightIndicatorDrawable', [rightIndicatorDrawable], (value) => {
|
5007
|
+
});
|
5008
|
+
},
|
5009
|
+
setIndicatorUrl(indicatorUrl) {
|
5010
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5011
|
+
'setIndicatorUrl', [indicatorUrl], (value) => {
|
5012
|
+
});
|
5013
|
+
},
|
5014
|
+
setLeftIndicatorUrl(leftIndicatorUrl) {
|
5015
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5016
|
+
'setLeftIndicatorUrl', [leftIndicatorUrl], (value) => {
|
5017
|
+
});
|
5018
|
+
},
|
5019
|
+
setRightIndicatorUrl(rightIndicatorUrl) {
|
5020
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5021
|
+
'setRightIndicatorUrl', [rightIndicatorUrl], (value) => {
|
5022
|
+
});
|
5023
|
+
},
|
5024
|
+
setThumbWidth(thumbWidth) {
|
5025
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5026
|
+
'setThumbWidth', [thumbWidth], (value) => {
|
5027
|
+
});
|
5028
|
+
},
|
5029
|
+
setLeftThumbWidth(thumbWidth) {
|
5030
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5031
|
+
'setLeftThumbWidth', [thumbWidth], (value) => {
|
5032
|
+
});
|
5033
|
+
},
|
5034
|
+
setRightThumbWidth(thumbWidth) {
|
5035
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5036
|
+
'setRightThumbWidth', [thumbWidth], (value) => {
|
5037
|
+
});
|
5038
|
+
},
|
5039
|
+
setThumbHeight(thumbHeight) {
|
5040
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5041
|
+
'setThumbHeight', [thumbHeight], (value) => {
|
5042
|
+
});
|
5043
|
+
},
|
5044
|
+
setLeftThumbHeight(thumbHeight) {
|
5045
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5046
|
+
'setLeftThumbHeight', [thumbHeight], (value) => {
|
5047
|
+
});
|
5048
|
+
},
|
5049
|
+
setRightThumbHeight(thumbHeight) {
|
5050
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5051
|
+
'setRightThumbHeight', [thumbHeight], (value) => {
|
5052
|
+
});
|
5053
|
+
},
|
5054
|
+
scaleThumb() {
|
5055
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5056
|
+
'scaleThumb', [], (value) => {
|
5057
|
+
});
|
5058
|
+
},
|
5059
|
+
scaleLeftThumb() {
|
5060
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5061
|
+
'scaleLeftThumb', [], (value) => {
|
5062
|
+
});
|
5063
|
+
},
|
5064
|
+
scaleRightThumb() {
|
5065
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5066
|
+
'scaleLeftThumb', [], (value) => {
|
5067
|
+
});
|
5068
|
+
},
|
5069
|
+
resetThumb() {
|
5070
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5071
|
+
'resetThumb', [], (value) => {
|
5072
|
+
});
|
5073
|
+
},
|
5074
|
+
resetLeftThumb() {
|
5075
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5076
|
+
'resetLeftThumb', [], (value) => {
|
5077
|
+
});
|
5078
|
+
},
|
5079
|
+
resetRightThumb() {
|
5080
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5081
|
+
'resetRightThumb', [], (value) => {
|
5082
|
+
});
|
5083
|
+
},
|
5084
|
+
setThumbScaleRatio(thumbScaleRatio) {
|
5085
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5086
|
+
'setThumbScaleRatio', [thumbScaleRatio], (value) => {
|
5087
|
+
});
|
5088
|
+
},
|
5089
|
+
setLeftThumbScaleRatio(thumbScaleRatio) {
|
5090
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5091
|
+
'setLeftThumbScaleRatio', [thumbScaleRatio], (value) => {
|
5092
|
+
});
|
5093
|
+
},
|
5094
|
+
setRightThumbScaleRatio(thumbScaleRatio) {
|
5095
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5096
|
+
'setRightThumbScaleRatio', [thumbScaleRatio], (value) => {
|
5097
|
+
});
|
5098
|
+
},
|
5099
|
+
setThumbActivate(activate) {
|
5100
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5101
|
+
'setThumbActivate', [activate], (value) => {
|
5102
|
+
});
|
5103
|
+
},
|
5104
|
+
setLeftThumbActivate(activate) {
|
5105
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5106
|
+
'setLeftThumbActivate', [activate], (value) => {
|
5107
|
+
});
|
5108
|
+
},
|
5109
|
+
setRightThumbActivate(activate) {
|
5110
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5111
|
+
'setRightThumbActivate', [activate], (value) => {
|
5112
|
+
});
|
5113
|
+
},
|
5114
|
+
setThumbDrawable(drawable) {
|
5115
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5116
|
+
'setThumbDrawable', [drawable], (value) => {
|
5117
|
+
});
|
5118
|
+
},
|
5119
|
+
setLeftThumbDrawable(drawable) {
|
5120
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5121
|
+
'setLeftThumbDrawable', [drawable], (value) => {
|
5122
|
+
});
|
5123
|
+
},
|
5124
|
+
setRightThumbDrawable(drawable) {
|
5125
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5126
|
+
'setRightThumbDrawable', [drawable], (value) => {
|
5127
|
+
});
|
5128
|
+
},
|
5129
|
+
setThumbUrl(url) {
|
5130
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5131
|
+
'setThumbUrl', [url], (value) => {
|
5132
|
+
});
|
5133
|
+
},
|
5134
|
+
setLeftThumbUrl(url) {
|
5135
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5136
|
+
'setLeftThumbUrl', [url], (value) => {
|
5137
|
+
});
|
5138
|
+
},
|
5139
|
+
setRightThumbUrl(url) {
|
5140
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5141
|
+
'setRightThumbUrl', [url], (value) => {
|
5142
|
+
});
|
5143
|
+
},
|
5144
|
+
setThumbInactivatedDrawable(drawable) {
|
5145
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5146
|
+
'setThumbInactivatedDrawable', [drawable], (value) => {
|
5147
|
+
});
|
5148
|
+
},
|
5149
|
+
setLeftThumbInactivatedDrawable(drawable) {
|
5150
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5151
|
+
'setLeftThumbInactivatedDrawable', [drawable], (value) => {
|
5152
|
+
});
|
5153
|
+
},
|
5154
|
+
setRightThumbInactivatedDrawable(drawable) {
|
5155
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5156
|
+
'setRightThumbInactivatedDrawable', [drawable], (value) => {
|
5157
|
+
});
|
5158
|
+
},
|
5159
|
+
setThumbInactivatedUrl(url) {
|
5160
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5161
|
+
'setThumbInactivatedUrl', [url], (value) => {
|
5162
|
+
});
|
5163
|
+
},
|
5164
|
+
setLeftThumbInactivatedUrl(url) {
|
5165
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5166
|
+
'setLeftThumbInactivatedUrl', [url], (value) => {
|
5167
|
+
});
|
5168
|
+
},
|
5169
|
+
setRightThumbInactivatedUrl(url) {
|
5170
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5171
|
+
'setRightThumbInactivatedUrl', [url], (value) => {
|
5172
|
+
});
|
5173
|
+
},
|
5174
|
+
setTickMarkMode(tickMarkMode) {
|
5175
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5176
|
+
'setTickMarkMode', [tickMarkMode], (value) => {
|
5177
|
+
});
|
5178
|
+
},
|
5179
|
+
setTickMarkGravity(tickMarkGravity) {
|
5180
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5181
|
+
'setTickMarkGravity', [tickMarkGravity], (value) => {
|
5182
|
+
});
|
5183
|
+
},
|
5184
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity) {
|
5185
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5186
|
+
'setTickMarkLayoutGravity', [tickMarkLayoutGravity], (value) => {
|
5187
|
+
});
|
5188
|
+
},
|
5189
|
+
setTickMarkTextArray(tickMarkTextArray) {
|
5190
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5191
|
+
'setTickMarkTextArray', [tickMarkTextArray], (value) => {
|
5192
|
+
});
|
5193
|
+
},
|
5194
|
+
setTickMarkTextMargin(tickMarkTextMargin) {
|
5195
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5196
|
+
'setTickMarkTextMargin', [tickMarkTextMargin], (value) => {
|
5197
|
+
});
|
5198
|
+
},
|
5199
|
+
setTickMarkTextSize(tickMarkTextSize) {
|
5200
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5201
|
+
'setTickMarkTextSize', [tickMarkTextSize], (value) => {
|
5202
|
+
});
|
5203
|
+
},
|
5204
|
+
setTickMarkTextColor(tickMarkTextColor) {
|
5205
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5206
|
+
'setTickMarkTextColor', [tickMarkTextColor], (value) => {
|
5207
|
+
});
|
5208
|
+
},
|
5209
|
+
setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
|
5210
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5211
|
+
'setTickMarkInRangeTextColor', [tickMarkInRangeTextColor], (value) => {
|
5212
|
+
});
|
5213
|
+
},
|
5214
|
+
setSteps(steps) {
|
5215
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5216
|
+
'setSteps', [steps], (value) => {
|
5217
|
+
});
|
5218
|
+
},
|
5219
|
+
setStepsWidth(stepsWidth) {
|
5220
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5221
|
+
'setStepsWidth', [stepsWidth], (value) => {
|
5222
|
+
});
|
5223
|
+
},
|
5224
|
+
setStepsHeight(stepsHeight) {
|
5225
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5226
|
+
'setStepsHeight', [stepsHeight], (value) => {
|
5227
|
+
});
|
5228
|
+
},
|
5229
|
+
setStepsRadius(stepsRadius) {
|
5230
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5231
|
+
'setStepsRadius', [stepsRadius], (value) => {
|
5232
|
+
});
|
5233
|
+
},
|
5234
|
+
setStepsColor(stepsColor) {
|
5235
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5236
|
+
'setStepsColor', [stepsColor], (value) => {
|
5237
|
+
});
|
5238
|
+
},
|
5239
|
+
setStepsAutoBonding(stepsAutoBonding) {
|
5240
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5241
|
+
'setStepsAutoBonding', [stepsAutoBonding], (value) => {
|
5242
|
+
});
|
5243
|
+
},
|
5244
|
+
setStepsDrawable(drawableArray) {
|
5245
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5246
|
+
'setStepsDrawable', [drawableArray], (value) => {
|
5247
|
+
});
|
5248
|
+
},
|
5249
|
+
setStepsUrl(urlArray) {
|
5250
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5251
|
+
'setStepsUrl', [urlArray], (value) => {
|
5252
|
+
});
|
5253
|
+
},
|
5254
|
+
setMaxProgress(progress) {
|
5255
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5256
|
+
'setMaxProgress', [progress], (res) => {
|
5257
|
+
});
|
5258
|
+
},
|
5259
|
+
setSecondProgress(progress) {
|
5260
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5261
|
+
'setSecondProgress', [progress], (res) => {
|
5262
|
+
});
|
5263
|
+
},
|
5264
|
+
show(value) {
|
5265
|
+
Vue.Native.callUIFunction(this.$refs.seekbar,
|
5266
|
+
'show', [value], (res) => {
|
5267
|
+
});
|
5268
|
+
},
|
5269
|
+
onFocusChange(evt) {
|
5270
|
+
this.$emit('focus', evt);
|
5271
|
+
},
|
5272
|
+
onSeekBarChange(evt) {
|
5273
|
+
this.$emit('seek-change', evt);
|
5274
|
+
},
|
5275
|
+
|
5276
|
+
},
|
5277
|
+
|
5278
|
+
render(h) {
|
5279
|
+
const on = getEventRedirector.call(this, [
|
5280
|
+
['focus', 'focusChange'],
|
5281
|
+
['seek-change', 'seekBarChange'],
|
5282
|
+
]);
|
5283
|
+
return h('TVSeekBarViewComponent',
|
5284
|
+
{
|
5285
|
+
on,
|
5286
|
+
ref: 'seekbar',
|
5287
|
+
}, this.$slots.default);
|
5288
|
+
},
|
5289
|
+
});
|
5290
|
+
}
|
5291
|
+
|
5292
|
+
var ESProgressBar = {
|
5293
|
+
render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_progress_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
|
5294
|
+
staticRenderFns: [],
|
5295
|
+
name: "ProgressBar",
|
5296
|
+
props: {
|
5297
|
+
maxProgress: {
|
5298
|
+
type: Number,
|
5299
|
+
default: 0
|
5300
|
+
},
|
5301
|
+
progress: {
|
5302
|
+
type: Number,
|
5303
|
+
default: 0
|
5304
|
+
},
|
5305
|
+
secondaryProgress: {
|
5306
|
+
type: Number,
|
5307
|
+
default: 0
|
5308
|
+
},
|
5309
|
+
primaryColor: {
|
5310
|
+
type: Object,
|
4327
5311
|
default: {}
|
4328
5312
|
},
|
4329
5313
|
backgroundColor: {
|
@@ -4352,6 +5336,383 @@ staticRenderFns: [],
|
|
4352
5336
|
show(value) {
|
4353
5337
|
this.$refs.es_progress_bar.show(value);
|
4354
5338
|
},
|
5339
|
+
//------------------------------------------------------------
|
5340
|
+
//----------------------------------------------------------
|
5341
|
+
invalidateSeekBar() {
|
5342
|
+
this.$refs.es_progress_bar.invalidateSeekBar();
|
5343
|
+
},
|
5344
|
+
setFocusable(focusable) {
|
5345
|
+
this.$refs.es_progress_bar.setFocusable(focusable);
|
5346
|
+
},
|
5347
|
+
setClickable(clickable) {
|
5348
|
+
this.$refs.es_progress_bar.setClickable(clickable);
|
5349
|
+
},
|
5350
|
+
requestFocus() {
|
5351
|
+
this.$refs.es_progress_bar.requestFocus();
|
5352
|
+
},
|
5353
|
+
requestLayout() {
|
5354
|
+
this.$refs.es_progress_bar.requestLayout();
|
5355
|
+
},
|
5356
|
+
invalidate() {
|
5357
|
+
this.$refs.es_progress_bar.invalidate();
|
5358
|
+
},
|
5359
|
+
setVisible(visible) {
|
5360
|
+
this.$refs.es_progress_bar.setVisible(visible);
|
5361
|
+
},
|
5362
|
+
setLeftSeekBarVisible(visible) {
|
5363
|
+
this.$refs.es_progress_bar.setLeftSeekBarVisible(visible);
|
5364
|
+
},
|
5365
|
+
setRightSeekBarVisible(visible) {
|
5366
|
+
this.$refs.es_progress_bar.setRightSeekBarVisible(visible);
|
5367
|
+
},
|
5368
|
+
setSeekBarMode(mode) {
|
5369
|
+
this.$refs.es_progress_bar.setSeekBarMode(mode);
|
5370
|
+
},
|
5371
|
+
setRangeProgress(leftValue, rightValue) {
|
5372
|
+
this.$refs.es_progress_bar.setRangeProgress(leftValue, rightValue);
|
5373
|
+
},
|
5374
|
+
getProgress() {
|
5375
|
+
this.$refs.es_progress_bar.getProgress();
|
5376
|
+
},
|
5377
|
+
getLeftProgress() {
|
5378
|
+
this.$refs.es_progress_bar.getLeftProgress();
|
5379
|
+
},
|
5380
|
+
getRightProgress() {
|
5381
|
+
this.$refs.es_progress_bar.getRightProgress();
|
5382
|
+
},
|
5383
|
+
setRange(min, max, minInterval) {
|
5384
|
+
this.$refs.es_progress_bar.setRange(min, max, minInterval);
|
5385
|
+
},
|
5386
|
+
setGravity(gravity) {
|
5387
|
+
this.$refs.es_progress_bar.setGravity(gravity);
|
5388
|
+
},
|
5389
|
+
setProgressWidth(progressWidth) {
|
5390
|
+
this.$refs.es_progress_bar.setProgressWidth(progressWidth);
|
5391
|
+
},
|
5392
|
+
setProgressHeight(progressHeight) {
|
5393
|
+
this.$refs.es_progress_bar.setProgressHeight(progressHeight);
|
5394
|
+
},
|
5395
|
+
setProgressRadius(progressRadius) {
|
5396
|
+
this.$refs.es_progress_bar.setProgressRadius(progressRadius);
|
5397
|
+
},
|
5398
|
+
setProgressColor(progressColor) {
|
5399
|
+
this.$refs.es_progress_bar.setProgressColor(progressColor);
|
5400
|
+
},
|
5401
|
+
setProgressDefaultColor(defaultProgressColor) {
|
5402
|
+
this.$refs.es_progress_bar.setProgressDefaultColor(defaultProgressColor);
|
5403
|
+
},
|
5404
|
+
setProgressDrawable(progressDrawable) {
|
5405
|
+
this.$refs.es_progress_bar.setProgressDrawable(progressDrawable);
|
5406
|
+
},
|
5407
|
+
setProgressDefaultDrawable(progressDefaultDrawable) {
|
5408
|
+
this.$refs.es_progress_bar.setProgressDefaultDrawable(progressDefaultDrawable);
|
5409
|
+
},
|
5410
|
+
setProgressUrl(progressUrl) {
|
5411
|
+
this.$refs.es_progress_bar.setProgressUrl(progressUrl);
|
5412
|
+
},
|
5413
|
+
setProgressDefaultUrl(progressDefaultUrl) {
|
5414
|
+
this.$refs.es_progress_bar.setProgressDefaultUrl(progressDefaultUrl);
|
5415
|
+
},
|
5416
|
+
showIndicator(showIndicator) {
|
5417
|
+
this.$refs.es_progress_bar.showIndicator(showIndicator);
|
5418
|
+
},
|
5419
|
+
showLeftIndicator(showLeftIndicator) {
|
5420
|
+
this.$refs.es_progress_bar.showLeftIndicator(showLeftIndicator);
|
5421
|
+
},
|
5422
|
+
showRightIndicator(showRightIndicator) {
|
5423
|
+
this.$refs.es_progress_bar.showRightIndicator(showRightIndicator);
|
5424
|
+
},
|
5425
|
+
setIndicatorShowMode(indicatorShowMode) {
|
5426
|
+
this.$refs.es_progress_bar.setIndicatorShowMode(indicatorShowMode);
|
5427
|
+
},
|
5428
|
+
setLeftIndicatorShowMode(indicatorShowMode) {
|
5429
|
+
this.$refs.es_progress_bar.setLeftIndicatorShowMode(indicatorShowMode);
|
5430
|
+
},
|
5431
|
+
setRightIndicatorShowMode(indicatorShowMode) {
|
5432
|
+
this.$refs.es_progress_bar.setRightIndicatorShowMode(indicatorShowMode);
|
5433
|
+
},
|
5434
|
+
setIndicatorWidth(indicatorWidth) {
|
5435
|
+
this.$refs.es_progress_bar.setIndicatorWidth(indicatorWidth);
|
5436
|
+
},
|
5437
|
+
setLeftIndicatorWidth(indicatorWidth) {
|
5438
|
+
this.$refs.es_progress_bar.setLeftIndicatorWidth(indicatorWidth);
|
5439
|
+
},
|
5440
|
+
setRightIndicatorWidth(indicatorWidth) {
|
5441
|
+
this.$refs.es_progress_bar.setRightIndicatorWidth(indicatorWidth);
|
5442
|
+
},
|
5443
|
+
setIndicatorHeight(indicatorHeight) {
|
5444
|
+
this.$refs.es_progress_bar.setIndicatorHeight(indicatorHeight);
|
5445
|
+
},
|
5446
|
+
setLeftIndicatorHeight(indicatorHeight) {
|
5447
|
+
this.$refs.es_progress_bar.setLeftIndicatorHeight(indicatorHeight);
|
5448
|
+
},
|
5449
|
+
setRightIndicatorHeight(indicatorHeight) {
|
5450
|
+
this.$refs.es_progress_bar.setRightIndicatorHeight(indicatorHeight);
|
5451
|
+
},
|
5452
|
+
setIndicatorTextDecimalFormat(formatPattern) {
|
5453
|
+
this.$refs.es_progress_bar.setIndicatorTextDecimalFormat(formatPattern);
|
5454
|
+
},
|
5455
|
+
setLeftIndicatorTextDecimalFormat(formatPattern) {
|
5456
|
+
this.$refs.es_progress_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
|
5457
|
+
},
|
5458
|
+
setRightIndicatorTextDecimalFormat(formatPattern) {
|
5459
|
+
this.$refs.es_progress_bar.setRightIndicatorTextDecimalFormat(formatPattern);
|
5460
|
+
},
|
5461
|
+
setIndicatorTextStringFormat(formatPattern) {
|
5462
|
+
this.$refs.es_progress_bar.setIndicatorTextStringFormat(formatPattern);
|
5463
|
+
},
|
5464
|
+
setLeftIndicatorTextStringFormat(formatPattern) {
|
5465
|
+
this.$refs.es_progress_bar.setLeftIndicatorTextStringFormat(formatPattern);
|
5466
|
+
},
|
5467
|
+
setRightIndicatorTextStringFormat(formatPattern) {
|
5468
|
+
this.$refs.es_progress_bar.setRightIndicatorTextStringFormat(formatPattern);
|
5469
|
+
},
|
5470
|
+
setIndicatorMargin(indicatorMargin) {
|
5471
|
+
this.$refs.es_progress_bar.setIndicatorMargin(indicatorMargin);
|
5472
|
+
},
|
5473
|
+
setLeftIndicatorMargin(indicatorMargin) {
|
5474
|
+
this.$refs.es_progress_bar.setLeftIndicatorMargin(indicatorMargin);
|
5475
|
+
},
|
5476
|
+
setRightIndicatorMargin(indicatorMargin) {
|
5477
|
+
this.$refs.es_progress_bar.setRightIndicatorMargin(indicatorMargin);
|
5478
|
+
},
|
5479
|
+
setIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5480
|
+
this.$refs.es_progress_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
|
5481
|
+
},
|
5482
|
+
setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5483
|
+
this.$refs.es_progress_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
|
5484
|
+
},
|
5485
|
+
setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5486
|
+
this.$refs.es_progress_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
|
5487
|
+
},
|
5488
|
+
setIndicatorPaddingTop(indicatorPaddingTop) {
|
5489
|
+
this.$refs.es_progress_bar.setIndicatorPaddingTop(indicatorPaddingTop);
|
5490
|
+
},
|
5491
|
+
setLeftIndicatorPaddingTop(indicatorPaddingTop) {
|
5492
|
+
this.$refs.es_progress_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
|
5493
|
+
},
|
5494
|
+
setRightIndicatorPaddingTop(indicatorPaddingTop) {
|
5495
|
+
this.$refs.es_progress_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
|
5496
|
+
},
|
5497
|
+
setIndicatorPaddingLeft(indicatorPaddingLeft) {
|
5498
|
+
this.$refs.es_progress_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
|
5499
|
+
},
|
5500
|
+
setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
|
5501
|
+
this.$refs.es_progress_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
|
5502
|
+
},
|
5503
|
+
setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
|
5504
|
+
this.$refs.es_progress_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
|
5505
|
+
},
|
5506
|
+
setIndicatorPaddingRight(indicatorPaddingRight) {
|
5507
|
+
this.$refs.es_progress_bar.setIndicatorPaddingRight(indicatorPaddingRight);
|
5508
|
+
},
|
5509
|
+
setLeftIndicatorPaddingRight(indicatorPaddingRight) {
|
5510
|
+
this.$refs.es_progress_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
|
5511
|
+
},
|
5512
|
+
setRightIndicatorPaddingRight(indicatorPaddingRight) {
|
5513
|
+
this.$refs.es_progress_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
|
5514
|
+
},
|
5515
|
+
setIndicatorBackgroundColor(indicatorBackgroundColor) {
|
5516
|
+
this.$refs.es_progress_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
|
5517
|
+
},
|
5518
|
+
setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
|
5519
|
+
this.$refs.es_progress_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
|
5520
|
+
},
|
5521
|
+
setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
|
5522
|
+
this.$refs.es_progress_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
|
5523
|
+
},
|
5524
|
+
setIndicatorRadius(indicatorRadius) {
|
5525
|
+
this.$refs.es_progress_bar.setIndicatorRadius(indicatorRadius);
|
5526
|
+
},
|
5527
|
+
setLeftIndicatorRadius(indicatorRadius) {
|
5528
|
+
this.$refs.es_progress_bar.setLeftIndicatorRadius(indicatorRadius);
|
5529
|
+
},
|
5530
|
+
setRightIndicatorRadius(indicatorRadius) {
|
5531
|
+
this.$refs.es_progress_bar.setRightIndicatorRadius(indicatorRadius);
|
5532
|
+
},
|
5533
|
+
setIndicatorTextSize(indicatorTextSize) {
|
5534
|
+
this.$refs.es_progress_bar.setIndicatorTextSize(indicatorTextSize);
|
5535
|
+
},
|
5536
|
+
setLeftIndicatorTextSize(indicatorTextSize) {
|
5537
|
+
this.$refs.es_progress_bar.setLeftIndicatorTextSize(indicatorTextSize);
|
5538
|
+
},
|
5539
|
+
setRightIndicatorTextSize(indicatorTextSize) {
|
5540
|
+
this.$refs.es_progress_bar.setRightIndicatorTextSize(indicatorTextSize);
|
5541
|
+
},
|
5542
|
+
setIndicatorTextColor(indicatorTextColor) {
|
5543
|
+
this.$refs.es_progress_bar.setIndicatorTextColor(indicatorTextColor);
|
5544
|
+
},
|
5545
|
+
setLeftIndicatorTextColor(indicatorTextColor) {
|
5546
|
+
this.$refs.es_progress_bar.setLeftIndicatorTextColor(indicatorTextColor);
|
5547
|
+
},
|
5548
|
+
setRightIndicatorTextColor(indicatorTextColor) {
|
5549
|
+
this.$refs.es_progress_bar.setRightIndicatorTextColor(indicatorTextColor);
|
5550
|
+
},
|
5551
|
+
setIndicatorArrowSize(indicatorArrowSize) {
|
5552
|
+
this.$refs.es_progress_bar.setIndicatorArrowSize(indicatorArrowSize);
|
5553
|
+
},
|
5554
|
+
setLeftIndicatorArrowSize(indicatorArrowSize) {
|
5555
|
+
this.$refs.es_progress_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
|
5556
|
+
},
|
5557
|
+
setRightIndicatorArrowSize(indicatorArrowSize) {
|
5558
|
+
this.$refs.es_progress_bar.setRightIndicatorArrowSize(indicatorArrowSize);
|
5559
|
+
},
|
5560
|
+
setIndicatorDrawable(indicatorDrawable) {
|
5561
|
+
this.$refs.es_progress_bar.setIndicatorDrawable(indicatorDrawable);
|
5562
|
+
},
|
5563
|
+
setLeftIndicatorDrawable(leftIndicatorDrawable) {
|
5564
|
+
this.$refs.es_progress_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
|
5565
|
+
},
|
5566
|
+
setRightIndicatorDrawable(rightIndicatorDrawable) {
|
5567
|
+
this.$refs.es_progress_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
|
5568
|
+
},
|
5569
|
+
setIndicatorUrl(indicatorUrl) {
|
5570
|
+
this.$refs.es_progress_bar.setIndicatorUrl(indicatorUrl);
|
5571
|
+
},
|
5572
|
+
setLeftIndicatorUrl(leftIndicatorUrl) {
|
5573
|
+
this.$refs.es_progress_bar.setLeftIndicatorUrl(leftIndicatorUrl);
|
5574
|
+
},
|
5575
|
+
setRightIndicatorUrl(rightIndicatorUrl) {
|
5576
|
+
this.$refs.es_progress_bar.setRightIndicatorUrl(rightIndicatorUrl);
|
5577
|
+
},
|
5578
|
+
setThumbWidth(thumbWidth) {
|
5579
|
+
this.$refs.es_progress_bar.setThumbWidth(thumbWidth);
|
5580
|
+
},
|
5581
|
+
setLeftThumbWidth(thumbWidth) {
|
5582
|
+
this.$refs.es_progress_bar.setLeftThumbWidth(thumbWidth);
|
5583
|
+
},
|
5584
|
+
setRightThumbWidth(thumbWidth) {
|
5585
|
+
this.$refs.es_progress_bar.setRightThumbWidth(thumbWidth);
|
5586
|
+
},
|
5587
|
+
setThumbHeight(thumbHeight) {
|
5588
|
+
this.$refs.es_progress_bar.setThumbHeight(thumbHeight);
|
5589
|
+
},
|
5590
|
+
setLeftThumbHeight(thumbHeight) {
|
5591
|
+
this.$refs.es_progress_bar.setLeftThumbHeight(thumbHeight);
|
5592
|
+
},
|
5593
|
+
setRightThumbHeight(thumbHeight) {
|
5594
|
+
this.$refs.es_progress_bar.setRightThumbHeight(thumbHeight);
|
5595
|
+
},
|
5596
|
+
scaleThumb() {
|
5597
|
+
this.$refs.es_progress_bar.scaleThumb();
|
5598
|
+
},
|
5599
|
+
scaleLeftThumb() {
|
5600
|
+
this.$refs.es_progress_bar.scaleLeftThumb();
|
5601
|
+
},
|
5602
|
+
scaleRightThumb() {
|
5603
|
+
this.$refs.es_progress_bar.scaleRightThumb();
|
5604
|
+
},
|
5605
|
+
resetThumb() {
|
5606
|
+
this.$refs.es_progress_bar.resetThumb();
|
5607
|
+
},
|
5608
|
+
resetLeftThumb() {
|
5609
|
+
this.$refs.es_progress_bar.resetLeftThumb();
|
5610
|
+
},
|
5611
|
+
resetRightThumb() {
|
5612
|
+
this.$refs.es_progress_bar.resetRightThumb();
|
5613
|
+
},
|
5614
|
+
setThumbScaleRatio(thumbScaleRatio) {
|
5615
|
+
this.$refs.es_progress_bar.setThumbScaleRatio(thumbScaleRatio);
|
5616
|
+
},
|
5617
|
+
setLeftThumbScaleRatio(thumbScaleRatio) {
|
5618
|
+
this.$refs.es_progress_bar.setLeftThumbScaleRatio(thumbScaleRatio);
|
5619
|
+
},
|
5620
|
+
setRightThumbScaleRatio(thumbScaleRatio) {
|
5621
|
+
this.$refs.es_progress_bar.setRightThumbScaleRatio(thumbScaleRatio);
|
5622
|
+
},
|
5623
|
+
setThumbActivate(activate) {
|
5624
|
+
this.$refs.es_progress_bar.setThumbActivate(activate);
|
5625
|
+
},
|
5626
|
+
setLeftThumbActivate(activate) {
|
5627
|
+
this.$refs.es_progress_bar.setLeftThumbActivate(activate);
|
5628
|
+
},
|
5629
|
+
setRightThumbActivate(activate) {
|
5630
|
+
this.$refs.es_progress_bar.setRightThumbActivate(activate);
|
5631
|
+
},
|
5632
|
+
setThumbDrawable(drawable) {
|
5633
|
+
this.$refs.es_progress_bar.setThumbDrawable(drawable);
|
5634
|
+
},
|
5635
|
+
setLeftThumbDrawable(drawable) {
|
5636
|
+
this.$refs.es_progress_bar.setLeftThumbDrawable(drawable);
|
5637
|
+
},
|
5638
|
+
setRightThumbDrawable(drawable) {
|
5639
|
+
this.$refs.es_progress_bar.setRightThumbDrawable(drawable);
|
5640
|
+
},
|
5641
|
+
setThumbUrl(url) {
|
5642
|
+
this.$refs.es_progress_bar.setThumbUrl(url);
|
5643
|
+
},
|
5644
|
+
setLeftThumbUrl(url) {
|
5645
|
+
this.$refs.es_progress_bar.setLeftThumbUrl(url);
|
5646
|
+
},
|
5647
|
+
setRightThumbUrl(url) {
|
5648
|
+
this.$refs.es_progress_bar.setRightThumbUrl(url);
|
5649
|
+
},
|
5650
|
+
setThumbInactivatedDrawable(drawable) {
|
5651
|
+
this.$refs.es_progress_bar.setThumbInactivatedDrawable(drawable);
|
5652
|
+
},
|
5653
|
+
setLeftThumbInactivatedDrawable(drawable) {
|
5654
|
+
this.$refs.es_progress_bar.setLeftThumbInactivatedDrawable(drawable);
|
5655
|
+
},
|
5656
|
+
setRightThumbInactivatedDrawable(drawable) {
|
5657
|
+
this.$refs.es_progress_bar.setRightThumbInactivatedDrawable(drawable);
|
5658
|
+
},
|
5659
|
+
setThumbInactivatedUrl(url) {
|
5660
|
+
this.$refs.es_progress_bar.setThumbInactivatedUrl(url);
|
5661
|
+
},
|
5662
|
+
setLeftThumbInactivatedUrl(url) {
|
5663
|
+
this.$refs.es_progress_bar.setLeftThumbInactivatedUrl(url);
|
5664
|
+
},
|
5665
|
+
setRightThumbInactivatedUrl(url) {
|
5666
|
+
this.$refs.es_progress_bar.setRightThumbInactivatedUrl(url);
|
5667
|
+
},
|
5668
|
+
setTickMarkMode(tickMarkMode) {
|
5669
|
+
this.$refs.es_progress_bar.setTickMarkMode(tickMarkMode);
|
5670
|
+
},
|
5671
|
+
setTickMarkGravity(tickMarkGravity) {
|
5672
|
+
this.$refs.es_progress_bar.setTickMarkGravity(tickMarkGravity);
|
5673
|
+
},
|
5674
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity) {
|
5675
|
+
this.$refs.es_progress_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
|
5676
|
+
},
|
5677
|
+
setTickMarkTextArray(tickMarkTextArray) {
|
5678
|
+
this.$refs.es_progress_bar.setTickMarkTextArray(tickMarkTextArray);
|
5679
|
+
},
|
5680
|
+
setTickMarkTextMargin(tickMarkTextMargin) {
|
5681
|
+
this.$refs.es_progress_bar.setTickMarkTextMargin(tickMarkTextMargin);
|
5682
|
+
},
|
5683
|
+
setTickMarkTextSize(tickMarkTextSize) {
|
5684
|
+
this.$refs.es_progress_bar.setTickMarkTextSize(tickMarkTextSize);
|
5685
|
+
},
|
5686
|
+
setTickMarkTextColor(tickMarkTextColor) {
|
5687
|
+
this.$refs.es_progress_bar.setTickMarkTextColor(tickMarkTextColor);
|
5688
|
+
},
|
5689
|
+
setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
|
5690
|
+
this.$refs.es_progress_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
|
5691
|
+
},
|
5692
|
+
setSteps(steps) {
|
5693
|
+
this.$refs.es_progress_bar.setSteps(steps);
|
5694
|
+
},
|
5695
|
+
setStepsWidth(stepsWidth) {
|
5696
|
+
this.$refs.es_progress_bar.setStepsWidth(stepsWidth);
|
5697
|
+
},
|
5698
|
+
setStepsHeight(stepsHeight) {
|
5699
|
+
this.$refs.es_progress_bar.setStepsHeight(stepsHeight);
|
5700
|
+
},
|
5701
|
+
setStepsRadius(stepsRadius) {
|
5702
|
+
this.$refs.es_progress_bar.setStepsRadius(stepsRadius);
|
5703
|
+
},
|
5704
|
+
setStepsColor(stepsColor) {
|
5705
|
+
this.$refs.es_progress_bar.setStepsColor(stepsColor);
|
5706
|
+
},
|
5707
|
+
setStepsAutoBonding(stepsAutoBonding) {
|
5708
|
+
this.$refs.es_progress_bar.setStepsAutoBonding(stepsAutoBonding);
|
5709
|
+
},
|
5710
|
+
setStepsDrawable(drawableArray) {
|
5711
|
+
this.$refs.es_progress_bar.setStepsDrawable(drawableArray);
|
5712
|
+
},
|
5713
|
+
setStepsUrl(urlArray) {
|
5714
|
+
this.$refs.es_progress_bar.setStepsUrl(urlArray);
|
5715
|
+
},
|
4355
5716
|
}
|
4356
5717
|
};
|
4357
5718
|
|
@@ -4359,39 +5720,684 @@ function ESProgressBarViewComponent() {
|
|
4359
5720
|
//
|
4360
5721
|
Vue.component(ESProgressBar.name, ESProgressBar);
|
4361
5722
|
|
4362
|
-
Vue.registerElement('TVProgressBarViewComponent', {
|
4363
|
-
component: {
|
4364
|
-
name: 'TVProgressBarViewComponent',
|
4365
|
-
|
4366
|
-
|
5723
|
+
Vue.registerElement('TVProgressBarViewComponent', {
|
5724
|
+
component: {
|
5725
|
+
name: 'TVProgressBarViewComponent',
|
5726
|
+
processEventData(event, nativeEventName, nativeEventParams) {
|
5727
|
+
switch (nativeEventName) {
|
5728
|
+
case 'onSeekBarChange':
|
5729
|
+
event.fromUser = nativeEventParams.fromUser;
|
5730
|
+
event.progress = nativeEventParams.progress;
|
5731
|
+
event.leftProgress = nativeEventParams.leftProgress;
|
5732
|
+
event.rightProgress = nativeEventParams.rightProgress;
|
5733
|
+
break;
|
5734
|
+
}
|
5735
|
+
return event;
|
5736
|
+
},
|
5737
|
+
},
|
5738
|
+
});
|
5739
|
+
|
5740
|
+
Vue.component('es-progress-bar-view-component', {
|
5741
|
+
methods: {
|
5742
|
+
invalidateSeekBar() {
|
5743
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5744
|
+
'invalidateSeekBar', [], (res) => {
|
5745
|
+
});
|
5746
|
+
},
|
5747
|
+
setFocusable(focusable) {
|
5748
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5749
|
+
'setFocusable', [focusable], (res) => {
|
5750
|
+
});
|
5751
|
+
},
|
5752
|
+
setClickable(clickable) {
|
5753
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5754
|
+
'setClickable', [clickable], (res) => {
|
5755
|
+
});
|
5756
|
+
},
|
5757
|
+
requestFocus() {
|
5758
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5759
|
+
'requestFocus', [], (res) => {
|
5760
|
+
});
|
5761
|
+
},
|
5762
|
+
requestLayout() {
|
5763
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5764
|
+
'requestLayout', [], (res) => {
|
5765
|
+
});
|
5766
|
+
},
|
5767
|
+
invalidate() {
|
5768
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5769
|
+
'invalidate', [], (res) => {
|
5770
|
+
});
|
5771
|
+
},
|
5772
|
+
setVisible(visible) {
|
5773
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5774
|
+
'setVisible', [visible], (res) => {
|
5775
|
+
});
|
5776
|
+
},
|
5777
|
+
setLeftSeekBarVisible(visible) {
|
5778
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5779
|
+
'setLeftSeekBarVisible', [visible], (res) => {
|
5780
|
+
});
|
5781
|
+
},
|
5782
|
+
setRightSeekBarVisible(visible) {
|
5783
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5784
|
+
'setRightSeekBarVisible', [visible], (res) => {
|
5785
|
+
});
|
5786
|
+
},
|
5787
|
+
setSeekBarMode(mode) {
|
5788
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5789
|
+
'setSeekBarMode', [mode], (res) => {
|
5790
|
+
});
|
5791
|
+
},
|
5792
|
+
setProgress(progress) {
|
5793
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5794
|
+
'setProgress', [progress], (res) => {
|
5795
|
+
});
|
5796
|
+
},
|
5797
|
+
setRangeProgress(leftValue, rightValue) {
|
5798
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5799
|
+
'setProgress', [leftValue, rightValue], (res) => {
|
5800
|
+
});
|
5801
|
+
},
|
5802
|
+
getProgress() {
|
5803
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5804
|
+
'getProgress', [], (progress) => {
|
5805
|
+
});
|
5806
|
+
},
|
5807
|
+
getLeftProgress() {
|
5808
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5809
|
+
'getLeftProgress', [], (progress) => {
|
5810
|
+
});
|
5811
|
+
},
|
5812
|
+
getRightProgress() {
|
5813
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5814
|
+
'getRightProgress', [], (progress) => {
|
5815
|
+
});
|
5816
|
+
},
|
5817
|
+
setRange(min, max, minInterval) {
|
5818
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5819
|
+
'setRange', [min, max, minInterval], (value) => {
|
5820
|
+
});
|
5821
|
+
},
|
5822
|
+
setGravity(gravity) {
|
5823
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5824
|
+
'setGravity', [gravity], (value) => {
|
5825
|
+
});
|
5826
|
+
},
|
5827
|
+
setProgressWidth(progressWidth) {
|
5828
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5829
|
+
'setProgressWidth', [progressWidth], (value) => {
|
5830
|
+
});
|
5831
|
+
},
|
5832
|
+
setProgressHeight(progressHeight) {
|
5833
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5834
|
+
'setProgressHeight', [progressHeight], (value) => {
|
5835
|
+
});
|
5836
|
+
},
|
5837
|
+
setProgressRadius(progressRadius) {
|
5838
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5839
|
+
'setProgressRadius', [progressRadius], (value) => {
|
5840
|
+
});
|
5841
|
+
},
|
5842
|
+
setProgressColor(progressColor) {
|
5843
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5844
|
+
'setProgressColor', [progressColor], (value) => {
|
5845
|
+
});
|
5846
|
+
},
|
5847
|
+
setProgressDefaultColor(defaultProgressColor) {
|
5848
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5849
|
+
'setProgressDefaultColor', [defaultProgressColor], (value) => {
|
5850
|
+
});
|
5851
|
+
},
|
5852
|
+
setProgressDrawable(progressDrawable) {
|
5853
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5854
|
+
'setProgressDrawable', [progressDrawable], (value) => {
|
5855
|
+
});
|
5856
|
+
},
|
5857
|
+
setProgressDefaultDrawable(progressDefaultDrawable) {
|
5858
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5859
|
+
'setProgressDefaultDrawable', [progressDefaultDrawable], (value) => {
|
5860
|
+
});
|
5861
|
+
},
|
5862
|
+
setProgressUrl(progressUrl) {
|
5863
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5864
|
+
'setProgressUrl', [progressUrl], (value) => {
|
5865
|
+
});
|
5866
|
+
},
|
5867
|
+
setProgressDefaultUrl(progressDefaultUrl) {
|
5868
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5869
|
+
'setProgressDefaultUrl', [progressDefaultUrl], (value) => {
|
5870
|
+
});
|
5871
|
+
},
|
5872
|
+
showIndicator(showIndicator) {
|
5873
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5874
|
+
'showIndicator', [showIndicator], (value) => {
|
5875
|
+
});
|
5876
|
+
},
|
5877
|
+
showLeftIndicator(showLeftIndicator) {
|
5878
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5879
|
+
'showLeftIndicator', [showLeftIndicator], (value) => {
|
5880
|
+
});
|
5881
|
+
},
|
5882
|
+
showRightIndicator(showRightIndicator) {
|
5883
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5884
|
+
'showRightIndicator', [showRightIndicator], (value) => {
|
5885
|
+
});
|
5886
|
+
},
|
5887
|
+
setIndicatorShowMode(indicatorShowMode) {
|
5888
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5889
|
+
'setIndicatorShowMode', [indicatorShowMode], (value) => {
|
5890
|
+
});
|
5891
|
+
},
|
5892
|
+
setLeftIndicatorShowMode(indicatorShowMode) {
|
5893
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5894
|
+
'setLeftIndicatorShowMode', [indicatorShowMode], (value) => {
|
5895
|
+
});
|
5896
|
+
},
|
5897
|
+
setRightIndicatorShowMode(indicatorShowMode) {
|
5898
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5899
|
+
'setRightIndicatorShowMode', [indicatorShowMode], (value) => {
|
5900
|
+
});
|
5901
|
+
},
|
5902
|
+
setIndicatorWidth(indicatorWidth) {
|
5903
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5904
|
+
'setIndicatorWidth', [indicatorWidth], (value) => {
|
5905
|
+
});
|
5906
|
+
},
|
5907
|
+
setLeftIndicatorWidth(indicatorWidth) {
|
5908
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5909
|
+
'setLeftIndicatorWidth', [indicatorWidth], (value) => {
|
5910
|
+
});
|
5911
|
+
},
|
5912
|
+
setRightIndicatorWidth(indicatorWidth) {
|
5913
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5914
|
+
'setRightIndicatorWidth', [indicatorWidth], (value) => {
|
5915
|
+
});
|
5916
|
+
},
|
5917
|
+
|
5918
|
+
setIndicatorHeight(indicatorHeight) {
|
5919
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5920
|
+
'setIndicatorHeight', [indicatorHeight], (value) => {
|
5921
|
+
});
|
5922
|
+
},
|
5923
|
+
setLeftIndicatorHeight(indicatorHeight) {
|
5924
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5925
|
+
'setLeftIndicatorHeight', [indicatorHeight], (value) => {
|
5926
|
+
});
|
5927
|
+
},
|
5928
|
+
setRightIndicatorHeight(indicatorHeight) {
|
5929
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5930
|
+
'setRightIndicatorHeight', [indicatorHeight], (value) => {
|
5931
|
+
});
|
5932
|
+
},
|
5933
|
+
setIndicatorTextDecimalFormat(formatPattern) {
|
5934
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5935
|
+
'setIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
5936
|
+
});
|
5937
|
+
},
|
5938
|
+
setLeftIndicatorTextDecimalFormat(formatPattern) {
|
5939
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5940
|
+
'setLeftIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
5941
|
+
});
|
5942
|
+
},
|
5943
|
+
setRightIndicatorTextDecimalFormat(formatPattern) {
|
5944
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5945
|
+
'setRightIndicatorTextDecimalFormat', [formatPattern], (value) => {
|
5946
|
+
});
|
5947
|
+
},
|
5948
|
+
setIndicatorTextStringFormat(formatPattern) {
|
5949
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5950
|
+
'setIndicatorTextStringFormat', [formatPattern], (value) => {
|
5951
|
+
});
|
5952
|
+
},
|
5953
|
+
setLeftIndicatorTextStringFormat(formatPattern) {
|
5954
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5955
|
+
'setLeftIndicatorTextStringFormat', [formatPattern], (value) => {
|
5956
|
+
});
|
5957
|
+
},
|
5958
|
+
setRightIndicatorTextStringFormat(formatPattern) {
|
5959
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5960
|
+
'setRightIndicatorTextStringFormat', [formatPattern], (value) => {
|
5961
|
+
});
|
5962
|
+
},
|
5963
|
+
setIndicatorMargin(indicatorMargin) {
|
5964
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5965
|
+
'setIndicatorMargin', [indicatorMargin], (value) => {
|
5966
|
+
});
|
5967
|
+
},
|
5968
|
+
setLeftIndicatorMargin(indicatorMargin) {
|
5969
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5970
|
+
'setLeftIndicatorMargin', [indicatorMargin], (value) => {
|
5971
|
+
});
|
5972
|
+
},
|
5973
|
+
setRightIndicatorMargin(indicatorMargin) {
|
5974
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5975
|
+
'setRightIndicatorMargin', [indicatorMargin], (value) => {
|
5976
|
+
});
|
5977
|
+
},
|
5978
|
+
setIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5979
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5980
|
+
'setIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
5981
|
+
});
|
5982
|
+
},
|
5983
|
+
setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5984
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5985
|
+
'setLeftIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
5986
|
+
});
|
5987
|
+
},
|
5988
|
+
setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
|
5989
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5990
|
+
'setRightIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
|
5991
|
+
});
|
5992
|
+
},
|
5993
|
+
setIndicatorPaddingTop(indicatorPaddingTop) {
|
5994
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
5995
|
+
'setIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
5996
|
+
});
|
5997
|
+
},
|
5998
|
+
setLeftIndicatorPaddingTop(indicatorPaddingTop) {
|
5999
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6000
|
+
'setLeftIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
6001
|
+
});
|
6002
|
+
},
|
6003
|
+
setRightIndicatorPaddingTop(indicatorPaddingTop) {
|
6004
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6005
|
+
'setRightIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
|
6006
|
+
});
|
6007
|
+
},
|
4367
6008
|
|
4368
|
-
|
4369
|
-
|
4370
|
-
|
4371
|
-
Vue.Native.callUIFunction(this.$refs.progressBar,
|
4372
|
-
'setMaxProgress', [progress], (res) => {
|
6009
|
+
setIndicatorPaddingLeft(indicatorPaddingLeft) {
|
6010
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6011
|
+
'setIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
4373
6012
|
});
|
4374
6013
|
},
|
4375
|
-
|
4376
|
-
Vue.Native.callUIFunction(this.$refs.
|
4377
|
-
'
|
6014
|
+
setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
|
6015
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6016
|
+
'setLeftIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
6017
|
+
});
|
6018
|
+
},
|
6019
|
+
setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
|
6020
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6021
|
+
'setRightIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
|
6022
|
+
});
|
6023
|
+
},
|
6024
|
+
setIndicatorPaddingRight(indicatorPaddingRight) {
|
6025
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6026
|
+
'setIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
6027
|
+
});
|
6028
|
+
},
|
6029
|
+
setLeftIndicatorPaddingRight(indicatorPaddingRight) {
|
6030
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6031
|
+
'setLeftIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
6032
|
+
});
|
6033
|
+
},
|
6034
|
+
setRightIndicatorPaddingRight(indicatorPaddingRight) {
|
6035
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6036
|
+
'setRightIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
|
6037
|
+
});
|
6038
|
+
},
|
6039
|
+
setIndicatorBackgroundColor(indicatorBackgroundColor) {
|
6040
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6041
|
+
'setIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
6042
|
+
});
|
6043
|
+
},
|
6044
|
+
setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
|
6045
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6046
|
+
'setLeftIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
6047
|
+
});
|
6048
|
+
},
|
6049
|
+
setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
|
6050
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6051
|
+
'setRightIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
|
6052
|
+
});
|
6053
|
+
},
|
6054
|
+
setIndicatorRadius(indicatorRadius) {
|
6055
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6056
|
+
'setIndicatorRadius', [indicatorRadius], (value) => {
|
6057
|
+
});
|
6058
|
+
},
|
6059
|
+
setLeftIndicatorRadius(indicatorRadius) {
|
6060
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6061
|
+
'setLeftIndicatorRadius', [indicatorRadius], (value) => {
|
6062
|
+
});
|
6063
|
+
},
|
6064
|
+
setRightIndicatorRadius(indicatorRadius) {
|
6065
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6066
|
+
'setRightIndicatorRadius', [indicatorRadius], (value) => {
|
6067
|
+
});
|
6068
|
+
},
|
6069
|
+
setIndicatorTextSize(indicatorTextSize) {
|
6070
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6071
|
+
'setIndicatorTextSize', [indicatorTextSize], (value) => {
|
6072
|
+
});
|
6073
|
+
},
|
6074
|
+
setLeftIndicatorTextSize(indicatorTextSize) {
|
6075
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6076
|
+
'setLeftIndicatorTextSize', [indicatorTextSize], (value) => {
|
6077
|
+
});
|
6078
|
+
},
|
6079
|
+
setRightIndicatorTextSize(indicatorTextSize) {
|
6080
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6081
|
+
'setRightIndicatorTextSize', [indicatorTextSize], (value) => {
|
6082
|
+
});
|
6083
|
+
},
|
6084
|
+
setIndicatorTextColor(indicatorTextColor) {
|
6085
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6086
|
+
'setIndicatorTextColor', [indicatorTextColor], (value) => {
|
6087
|
+
});
|
6088
|
+
},
|
6089
|
+
setLeftIndicatorTextColor(indicatorTextColor) {
|
6090
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6091
|
+
'setLeftIndicatorTextColor', [indicatorTextColor], (value) => {
|
6092
|
+
});
|
6093
|
+
},
|
6094
|
+
setRightIndicatorTextColor(indicatorTextColor) {
|
6095
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6096
|
+
'setRightIndicatorTextColor', [indicatorTextColor], (value) => {
|
6097
|
+
});
|
6098
|
+
},
|
6099
|
+
setIndicatorArrowSize(indicatorArrowSize) {
|
6100
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6101
|
+
'setIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
6102
|
+
});
|
6103
|
+
},
|
6104
|
+
setLeftIndicatorArrowSize(indicatorArrowSize) {
|
6105
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6106
|
+
'setLeftIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
6107
|
+
});
|
6108
|
+
},
|
6109
|
+
setRightIndicatorArrowSize(indicatorArrowSize) {
|
6110
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6111
|
+
'setRightIndicatorArrowSize', [indicatorArrowSize], (value) => {
|
6112
|
+
});
|
6113
|
+
},
|
6114
|
+
setIndicatorDrawable(indicatorDrawable) {
|
6115
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6116
|
+
'setIndicatorDrawable', [indicatorDrawable], (value) => {
|
6117
|
+
});
|
6118
|
+
},
|
6119
|
+
setLeftIndicatorDrawable(leftIndicatorDrawable) {
|
6120
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6121
|
+
'setLeftIndicatorDrawable', [leftIndicatorDrawable], (value) => {
|
6122
|
+
});
|
6123
|
+
},
|
6124
|
+
setRightIndicatorDrawable(rightIndicatorDrawable) {
|
6125
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6126
|
+
'setRightIndicatorDrawable', [rightIndicatorDrawable], (value) => {
|
6127
|
+
});
|
6128
|
+
},
|
6129
|
+
setIndicatorUrl(indicatorUrl) {
|
6130
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6131
|
+
'setIndicatorUrl', [indicatorUrl], (value) => {
|
6132
|
+
});
|
6133
|
+
},
|
6134
|
+
setLeftIndicatorUrl(leftIndicatorUrl) {
|
6135
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6136
|
+
'setLeftIndicatorUrl', [leftIndicatorUrl], (value) => {
|
6137
|
+
});
|
6138
|
+
},
|
6139
|
+
setRightIndicatorUrl(rightIndicatorUrl) {
|
6140
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6141
|
+
'setRightIndicatorUrl', [rightIndicatorUrl], (value) => {
|
6142
|
+
});
|
6143
|
+
},
|
6144
|
+
setThumbWidth(thumbWidth) {
|
6145
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6146
|
+
'setThumbWidth', [thumbWidth], (value) => {
|
6147
|
+
});
|
6148
|
+
},
|
6149
|
+
setLeftThumbWidth(thumbWidth) {
|
6150
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6151
|
+
'setLeftThumbWidth', [thumbWidth], (value) => {
|
6152
|
+
});
|
6153
|
+
},
|
6154
|
+
setRightThumbWidth(thumbWidth) {
|
6155
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6156
|
+
'setRightThumbWidth', [thumbWidth], (value) => {
|
6157
|
+
});
|
6158
|
+
},
|
6159
|
+
setThumbHeight(thumbHeight) {
|
6160
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6161
|
+
'setThumbHeight', [thumbHeight], (value) => {
|
6162
|
+
});
|
6163
|
+
},
|
6164
|
+
setLeftThumbHeight(thumbHeight) {
|
6165
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6166
|
+
'setLeftThumbHeight', [thumbHeight], (value) => {
|
6167
|
+
});
|
6168
|
+
},
|
6169
|
+
setRightThumbHeight(thumbHeight) {
|
6170
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6171
|
+
'setRightThumbHeight', [thumbHeight], (value) => {
|
6172
|
+
});
|
6173
|
+
},
|
6174
|
+
scaleThumb() {
|
6175
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6176
|
+
'scaleThumb', [], (value) => {
|
6177
|
+
});
|
6178
|
+
},
|
6179
|
+
scaleLeftThumb() {
|
6180
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6181
|
+
'scaleLeftThumb', [], (value) => {
|
6182
|
+
});
|
6183
|
+
},
|
6184
|
+
scaleRightThumb() {
|
6185
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6186
|
+
'scaleLeftThumb', [], (value) => {
|
6187
|
+
});
|
6188
|
+
},
|
6189
|
+
resetThumb() {
|
6190
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6191
|
+
'resetThumb', [], (value) => {
|
6192
|
+
});
|
6193
|
+
},
|
6194
|
+
resetLeftThumb() {
|
6195
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6196
|
+
'resetLeftThumb', [], (value) => {
|
6197
|
+
});
|
6198
|
+
},
|
6199
|
+
resetRightThumb() {
|
6200
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6201
|
+
'resetRightThumb', [], (value) => {
|
6202
|
+
});
|
6203
|
+
},
|
6204
|
+
setThumbScaleRatio(thumbScaleRatio) {
|
6205
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6206
|
+
'setThumbScaleRatio', [thumbScaleRatio], (value) => {
|
6207
|
+
});
|
6208
|
+
},
|
6209
|
+
setLeftThumbScaleRatio(thumbScaleRatio) {
|
6210
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6211
|
+
'setLeftThumbScaleRatio', [thumbScaleRatio], (value) => {
|
6212
|
+
});
|
6213
|
+
},
|
6214
|
+
setRightThumbScaleRatio(thumbScaleRatio) {
|
6215
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6216
|
+
'setRightThumbScaleRatio', [thumbScaleRatio], (value) => {
|
6217
|
+
});
|
6218
|
+
},
|
6219
|
+
setThumbActivate(activate) {
|
6220
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6221
|
+
'setThumbActivate', [activate], (value) => {
|
6222
|
+
});
|
6223
|
+
},
|
6224
|
+
setLeftThumbActivate(activate) {
|
6225
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6226
|
+
'setLeftThumbActivate', [activate], (value) => {
|
6227
|
+
});
|
6228
|
+
},
|
6229
|
+
setRightThumbActivate(activate) {
|
6230
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6231
|
+
'setRightThumbActivate', [activate], (value) => {
|
6232
|
+
});
|
6233
|
+
},
|
6234
|
+
setThumbDrawable(drawable) {
|
6235
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6236
|
+
'setThumbDrawable', [drawable], (value) => {
|
6237
|
+
});
|
6238
|
+
},
|
6239
|
+
setLeftThumbDrawable(drawable) {
|
6240
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6241
|
+
'setLeftThumbDrawable', [drawable], (value) => {
|
6242
|
+
});
|
6243
|
+
},
|
6244
|
+
setRightThumbDrawable(drawable) {
|
6245
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6246
|
+
'setRightThumbDrawable', [drawable], (value) => {
|
6247
|
+
});
|
6248
|
+
},
|
6249
|
+
setThumbUrl(url) {
|
6250
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6251
|
+
'setThumbUrl', [url], (value) => {
|
6252
|
+
});
|
6253
|
+
},
|
6254
|
+
setLeftThumbUrl(url) {
|
6255
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6256
|
+
'setLeftThumbUrl', [url], (value) => {
|
6257
|
+
});
|
6258
|
+
},
|
6259
|
+
setRightThumbUrl(url) {
|
6260
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6261
|
+
'setRightThumbUrl', [url], (value) => {
|
6262
|
+
});
|
6263
|
+
},
|
6264
|
+
setThumbInactivatedDrawable(drawable) {
|
6265
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6266
|
+
'setThumbInactivatedDrawable', [drawable], (value) => {
|
6267
|
+
});
|
6268
|
+
},
|
6269
|
+
setLeftThumbInactivatedDrawable(drawable) {
|
6270
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6271
|
+
'setLeftThumbInactivatedDrawable', [drawable], (value) => {
|
6272
|
+
});
|
6273
|
+
},
|
6274
|
+
setRightThumbInactivatedDrawable(drawable) {
|
6275
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6276
|
+
'setRightThumbInactivatedDrawable', [drawable], (value) => {
|
6277
|
+
});
|
6278
|
+
},
|
6279
|
+
setThumbInactivatedUrl(url) {
|
6280
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6281
|
+
'setThumbInactivatedUrl', [url], (value) => {
|
6282
|
+
});
|
6283
|
+
},
|
6284
|
+
setLeftThumbInactivatedUrl(url) {
|
6285
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6286
|
+
'setLeftThumbInactivatedUrl', [url], (value) => {
|
6287
|
+
});
|
6288
|
+
},
|
6289
|
+
setRightThumbInactivatedUrl(url) {
|
6290
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6291
|
+
'setRightThumbInactivatedUrl', [url], (value) => {
|
6292
|
+
});
|
6293
|
+
},
|
6294
|
+
setTickMarkMode(tickMarkMode) {
|
6295
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6296
|
+
'setTickMarkMode', [tickMarkMode], (value) => {
|
6297
|
+
});
|
6298
|
+
},
|
6299
|
+
setTickMarkGravity(tickMarkGravity) {
|
6300
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6301
|
+
'setTickMarkGravity', [tickMarkGravity], (value) => {
|
6302
|
+
});
|
6303
|
+
},
|
6304
|
+
setTickMarkLayoutGravity(tickMarkLayoutGravity) {
|
6305
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6306
|
+
'setTickMarkLayoutGravity', [tickMarkLayoutGravity], (value) => {
|
6307
|
+
});
|
6308
|
+
},
|
6309
|
+
setTickMarkTextArray(tickMarkTextArray) {
|
6310
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6311
|
+
'setTickMarkTextArray', [tickMarkTextArray], (value) => {
|
6312
|
+
});
|
6313
|
+
},
|
6314
|
+
setTickMarkTextMargin(tickMarkTextMargin) {
|
6315
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6316
|
+
'setTickMarkTextMargin', [tickMarkTextMargin], (value) => {
|
6317
|
+
});
|
6318
|
+
},
|
6319
|
+
setTickMarkTextSize(tickMarkTextSize) {
|
6320
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6321
|
+
'setTickMarkTextSize', [tickMarkTextSize], (value) => {
|
6322
|
+
});
|
6323
|
+
},
|
6324
|
+
setTickMarkTextColor(tickMarkTextColor) {
|
6325
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6326
|
+
'setTickMarkTextColor', [tickMarkTextColor], (value) => {
|
6327
|
+
});
|
6328
|
+
},
|
6329
|
+
setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
|
6330
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6331
|
+
'setTickMarkInRangeTextColor', [tickMarkInRangeTextColor], (value) => {
|
6332
|
+
});
|
6333
|
+
},
|
6334
|
+
setSteps(steps) {
|
6335
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6336
|
+
'setSteps', [steps], (value) => {
|
6337
|
+
});
|
6338
|
+
},
|
6339
|
+
setStepsWidth(stepsWidth) {
|
6340
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6341
|
+
'setStepsWidth', [stepsWidth], (value) => {
|
6342
|
+
});
|
6343
|
+
},
|
6344
|
+
setStepsHeight(stepsHeight) {
|
6345
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6346
|
+
'setStepsHeight', [stepsHeight], (value) => {
|
6347
|
+
});
|
6348
|
+
},
|
6349
|
+
setStepsRadius(stepsRadius) {
|
6350
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6351
|
+
'setStepsRadius', [stepsRadius], (value) => {
|
6352
|
+
});
|
6353
|
+
},
|
6354
|
+
setStepsColor(stepsColor) {
|
6355
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6356
|
+
'setStepsColor', [stepsColor], (value) => {
|
6357
|
+
});
|
6358
|
+
},
|
6359
|
+
setStepsAutoBonding(stepsAutoBonding) {
|
6360
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6361
|
+
'setStepsAutoBonding', [stepsAutoBonding], (value) => {
|
6362
|
+
});
|
6363
|
+
},
|
6364
|
+
setStepsDrawable(drawableArray) {
|
6365
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6366
|
+
'setStepsDrawable', [drawableArray], (value) => {
|
6367
|
+
});
|
6368
|
+
},
|
6369
|
+
setStepsUrl(urlArray) {
|
6370
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6371
|
+
'setStepsUrl', [urlArray], (value) => {
|
6372
|
+
});
|
6373
|
+
},
|
6374
|
+
setMaxProgress(progress) {
|
6375
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
6376
|
+
'setMaxProgress', [progress], (res) => {
|
4378
6377
|
});
|
4379
6378
|
},
|
4380
6379
|
setSecondProgress(progress) {
|
4381
|
-
Vue.Native.callUIFunction(this.$refs.
|
6380
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
4382
6381
|
'setSecondProgress', [progress], (res) => {
|
4383
6382
|
});
|
4384
6383
|
},
|
4385
6384
|
show(value) {
|
4386
|
-
Vue.Native.callUIFunction(this.$refs.
|
6385
|
+
Vue.Native.callUIFunction(this.$refs.progressbar,
|
4387
6386
|
'show', [value], (res) => {
|
4388
6387
|
});
|
4389
6388
|
},
|
6389
|
+
onSeekBarChange(evt) {
|
6390
|
+
this.$emit('seek-change', evt);
|
6391
|
+
},
|
4390
6392
|
},
|
4391
6393
|
render(h) {
|
6394
|
+
const on = getEventRedirector.call(this, [
|
6395
|
+
['seek-change', 'seekBarChange'],
|
6396
|
+
]);
|
4392
6397
|
return h('TVProgressBarViewComponent',
|
4393
6398
|
{
|
4394
|
-
|
6399
|
+
on,
|
6400
|
+
ref: 'progressbar'
|
4395
6401
|
}, this.$slots.default
|
4396
6402
|
);
|
4397
6403
|
}
|
@@ -4630,6 +6636,7 @@ var ESApplication = {
|
|
4630
6636
|
appInitProps: {},
|
4631
6637
|
appInitUrl: '',
|
4632
6638
|
appInitParams: {},
|
6639
|
+
autoLaunchMainESPage: true,
|
4633
6640
|
};
|
4634
6641
|
},
|
4635
6642
|
mounted() {
|
@@ -4637,9 +6644,6 @@ var ESApplication = {
|
|
4637
6644
|
},
|
4638
6645
|
methods: {
|
4639
6646
|
_initES() {
|
4640
|
-
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4641
|
-
ESLog.d(TAG, '---------_initES----invoke------>>>>');
|
4642
|
-
}
|
4643
6647
|
Promise.resolve()
|
4644
6648
|
.then(() => ES$1.init({
|
4645
6649
|
router: this.$router
|
@@ -4654,9 +6658,6 @@ var ESApplication = {
|
|
4654
6658
|
);
|
4655
6659
|
},
|
4656
6660
|
_initESApplication() {
|
4657
|
-
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4658
|
-
ESLog.d(TAG, '---------_initESApplication----invoke------>>>>');
|
4659
|
-
}
|
4660
6661
|
ESLaunchManager$1.setRouteListener(this._routeListener);
|
4661
6662
|
this._initESAppParams();
|
4662
6663
|
},
|
@@ -4664,14 +6665,11 @@ var ESApplication = {
|
|
4664
6665
|
this.onLaunchESPage(url, params);
|
4665
6666
|
},
|
4666
6667
|
_initESAppParams() {
|
4667
|
-
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4668
|
-
ESLog.d(TAG, '---------_initESAppParams----invoke------>>>>');
|
4669
|
-
}
|
4670
6668
|
//
|
4671
|
-
this.appInitProps = ESApp
|
6669
|
+
this.appInitProps = ESApp.$options.$superProps;
|
4672
6670
|
//
|
4673
|
-
this.appInitUrl = ESApp
|
4674
|
-
this.appInitParams = ESApp
|
6671
|
+
this.appInitUrl = ESApp.$options.$superProps.url;
|
6672
|
+
this.appInitParams = ESApp.$options.$superProps.params;
|
4675
6673
|
|
4676
6674
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4677
6675
|
try {
|
@@ -4704,13 +6702,13 @@ var ESApplication = {
|
|
4704
6702
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4705
6703
|
ESLog.d(TAG, '---------onESCreate---Promise---success---->>>>');
|
4706
6704
|
}
|
4707
|
-
this.
|
6705
|
+
this._onESCreated(true);
|
4708
6706
|
},
|
4709
6707
|
error => {
|
4710
6708
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4711
6709
|
console.log(TAG, '---------onESCreate---Promise---error---->>>>', error);
|
4712
6710
|
}
|
4713
|
-
this.
|
6711
|
+
this._onESCreated(false);
|
4714
6712
|
}
|
4715
6713
|
);
|
4716
6714
|
}
|
@@ -4719,7 +6717,7 @@ var ESApplication = {
|
|
4719
6717
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4720
6718
|
ESLog.d(TAG, '---------onESCreate--return-Not Promise----->>>>');
|
4721
6719
|
}
|
4722
|
-
this.
|
6720
|
+
this._onESCreated(true);
|
4723
6721
|
}
|
4724
6722
|
}
|
4725
6723
|
//
|
@@ -4727,10 +6725,22 @@ var ESApplication = {
|
|
4727
6725
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4728
6726
|
ESLog.d(TAG, '---------onESCreate---Not Function----->>>>');
|
4729
6727
|
}
|
4730
|
-
this.
|
6728
|
+
this._onESCreated(true);
|
6729
|
+
}
|
6730
|
+
},
|
6731
|
+
_onESCreated(success) {
|
6732
|
+
try {
|
6733
|
+
this.onESCreated(success);
|
6734
|
+
} catch (e) {
|
6735
|
+
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
6736
|
+
ESLog.d(TAG, '---------onESCreated---error---->>>>');
|
6737
|
+
}
|
6738
|
+
}
|
6739
|
+
if (this.autoLaunchMainESPage) {
|
6740
|
+
this.launchMainESPage();
|
4731
6741
|
}
|
4732
6742
|
},
|
4733
|
-
|
6743
|
+
launchMainESPage() {//launchESPage
|
4734
6744
|
let route = {
|
4735
6745
|
name: this.appInitUrl,
|
4736
6746
|
params: this.appInitParams,
|
@@ -4762,15 +6772,21 @@ var ESApplication = {
|
|
4762
6772
|
return false;
|
4763
6773
|
},
|
4764
6774
|
//---------------------------下面的方法给使用者覆写-----------------------------
|
6775
|
+
onESCreated(success) {
|
6776
|
+
|
6777
|
+
},
|
4765
6778
|
onLaunchESPage(url, params) {
|
4766
6779
|
|
6780
|
+
},
|
6781
|
+
setAutoLaunchMainESPage(auto) {
|
6782
|
+
this.autoLaunchMainESPage = auto;
|
4767
6783
|
}
|
4768
6784
|
},
|
4769
6785
|
};
|
4770
6786
|
|
4771
6787
|
var ESNetworkMixin = {
|
4772
6788
|
mounted() {
|
4773
|
-
ESApp
|
6789
|
+
ESApp.$on('onConnectivityChanged', this.onConnectivityChanged);
|
4774
6790
|
},
|
4775
6791
|
|
4776
6792
|
methods: {
|
@@ -4785,13 +6801,13 @@ var ESNetworkMixin = {
|
|
4785
6801
|
},
|
4786
6802
|
|
4787
6803
|
beforeDestroy() {
|
4788
|
-
ESApp
|
6804
|
+
ESApp.$off('onConnectivityChanged', this.onConnectivityChanged);
|
4789
6805
|
},
|
4790
6806
|
};
|
4791
6807
|
|
4792
6808
|
var ESNetwork = {
|
4793
6809
|
mounted() {
|
4794
|
-
ESApp
|
6810
|
+
ESApp.$on('onConnectivityChanged', this.onConnectivityChanged);
|
4795
6811
|
},
|
4796
6812
|
|
4797
6813
|
methods: {
|
@@ -4806,14 +6822,14 @@ var ESNetwork = {
|
|
4806
6822
|
},
|
4807
6823
|
|
4808
6824
|
beforeDestroy() {
|
4809
|
-
ESApp
|
6825
|
+
ESApp.$off('onConnectivityChanged', this.onConnectivityChanged);
|
4810
6826
|
},
|
4811
6827
|
};
|
4812
6828
|
|
4813
6829
|
var ESUsbDeviceMixin = {
|
4814
6830
|
mounted() {
|
4815
|
-
ESApp
|
4816
|
-
ESApp
|
6831
|
+
ESApp.$on('onUsbDeviceAttached', this.onUsbDeviceAttached);
|
6832
|
+
ESApp.$on('onUsbDeviceDetached', this.onUsbDeviceDetached);
|
4817
6833
|
},
|
4818
6834
|
|
4819
6835
|
methods: {
|
@@ -4835,8 +6851,8 @@ var ESUsbDeviceMixin = {
|
|
4835
6851
|
},
|
4836
6852
|
|
4837
6853
|
beforeDestroy() {
|
4838
|
-
ESApp
|
4839
|
-
ESApp
|
6854
|
+
ESApp.$off('onUsbDeviceAttached', this.onUsbDeviceAttached);
|
6855
|
+
ESApp.$off('onUsbDeviceDetached', this.onUsbDeviceDetached);
|
4840
6856
|
},
|
4841
6857
|
};
|
4842
6858
|
|
@@ -4966,4 +6982,4 @@ const ES_FAST_OUT_LINEAR_IN_INTERPOLATOR = 10;
|
|
4966
6982
|
const ES_FAST_OUT_SLOW_IN_INTERPOLATOR = 11;
|
4967
6983
|
const ES_PATH_INTERPOLATOR = 12;
|
4968
6984
|
|
4969
|
-
export { AUDIO_CONTENT_TYPE_MOVIE, AUDIO_CONTENT_TYPE_MUSIC, AUDIO_CONTENT_TYPE_SONIFICATION, AUDIO_CONTENT_TYPE_SPEECH, AUDIO_CONTENT_TYPE_UNKNOWN, AUDIO_MANAGER_FLAG_ACTIVE_MEDIA_ONLY, AUDIO_MANAGER_FLAG_ALLOW_RINGER_MODES, AUDIO_MANAGER_FLAG_BLUETOOTH_ABS_VOLUME, AUDIO_MANAGER_FLAG_FIXED_VOLUME, AUDIO_MANAGER_FLAG_HDMI_SYSTEM_AUDIO_VOLUME, AUDIO_MANAGER_FLAG_PLAY_SOUND, AUDIO_MANAGER_FLAG_REMOVE_SOUND_AND_VIBRATE, AUDIO_MANAGER_FLAG_SHOW_SILENT_HINT, AUDIO_MANAGER_FLAG_SHOW_UI, AUDIO_MANAGER_FLAG_SHOW_UI_WARNINGS, AUDIO_MANAGER_FLAG_SHOW_VIBRATE_HINT, AUDIO_MANAGER_FLAG_VIBRATE, AUDIO_STREAM_ACCESSIBILITY, AUDIO_STREAM_ALARM, AUDIO_STREAM_ASSISTANT, AUDIO_STREAM_BLUETOOTH_SCO, AUDIO_STREAM_DEFAULT, AUDIO_STREAM_DTMF, AUDIO_STREAM_MUSIC, AUDIO_STREAM_NOTIFICATION, AUDIO_STREAM_RING, AUDIO_STREAM_SYSTEM, AUDIO_STREAM_SYSTEM_ENFORCED, AUDIO_STREAM_TTS, AUDIO_STREAM_VOICE_CALL, AUDIO_USAGE_ALARM, AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY, AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE, AUDIO_USAGE_ASSISTANCE_SONIFICATION, AUDIO_USAGE_ASSISTANT, AUDIO_USAGE_GAME, AUDIO_USAGE_INVALID, AUDIO_USAGE_MEDIA, AUDIO_USAGE_NOTIFICATION, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST, AUDIO_USAGE_NOTIFICATION_EVENT, AUDIO_USAGE_NOTIFICATION_RINGTONE, AUDIO_USAGE_UNKNOWN, AUDIO_USAGE_VIRTUAL_SOURCE, AUDIO_USAGE_VOICE_COMMUNICATION, AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING, ES$1 as ES, ESAnimationViewComponent, ESApp
|
6985
|
+
export { AUDIO_CONTENT_TYPE_MOVIE, AUDIO_CONTENT_TYPE_MUSIC, AUDIO_CONTENT_TYPE_SONIFICATION, AUDIO_CONTENT_TYPE_SPEECH, AUDIO_CONTENT_TYPE_UNKNOWN, AUDIO_MANAGER_FLAG_ACTIVE_MEDIA_ONLY, AUDIO_MANAGER_FLAG_ALLOW_RINGER_MODES, AUDIO_MANAGER_FLAG_BLUETOOTH_ABS_VOLUME, AUDIO_MANAGER_FLAG_FIXED_VOLUME, AUDIO_MANAGER_FLAG_HDMI_SYSTEM_AUDIO_VOLUME, AUDIO_MANAGER_FLAG_PLAY_SOUND, AUDIO_MANAGER_FLAG_REMOVE_SOUND_AND_VIBRATE, AUDIO_MANAGER_FLAG_SHOW_SILENT_HINT, AUDIO_MANAGER_FLAG_SHOW_UI, AUDIO_MANAGER_FLAG_SHOW_UI_WARNINGS, AUDIO_MANAGER_FLAG_SHOW_VIBRATE_HINT, AUDIO_MANAGER_FLAG_VIBRATE, AUDIO_STREAM_ACCESSIBILITY, AUDIO_STREAM_ALARM, AUDIO_STREAM_ASSISTANT, AUDIO_STREAM_BLUETOOTH_SCO, AUDIO_STREAM_DEFAULT, AUDIO_STREAM_DTMF, AUDIO_STREAM_MUSIC, AUDIO_STREAM_NOTIFICATION, AUDIO_STREAM_RING, AUDIO_STREAM_SYSTEM, AUDIO_STREAM_SYSTEM_ENFORCED, AUDIO_STREAM_TTS, AUDIO_STREAM_VOICE_CALL, AUDIO_USAGE_ALARM, AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY, AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE, AUDIO_USAGE_ASSISTANCE_SONIFICATION, AUDIO_USAGE_ASSISTANT, AUDIO_USAGE_GAME, AUDIO_USAGE_INVALID, AUDIO_USAGE_MEDIA, AUDIO_USAGE_NOTIFICATION, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT, AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST, AUDIO_USAGE_NOTIFICATION_EVENT, AUDIO_USAGE_NOTIFICATION_RINGTONE, AUDIO_USAGE_UNKNOWN, AUDIO_USAGE_VIRTUAL_SOURCE, AUDIO_USAGE_VOICE_COMMUNICATION, AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING, ES$1 as ES, ESAnimationViewComponent, ESApp, ESAppManager$1 as ESAppManager, ESAppModule$1 as ESAppModule, ESApplication, ESAudioManager$1 as ESAudioManager, ESAudioModule$1 as ESAudioModule, ESBackPress, ESBackPressMixin, ESBroadcast, ESBroadcastManager$1 as ESBroadcastManager, ESDevelopManager$1 as ESDevelopManager, ESDevelopModule$1 as ESDevelopModule, ESDeviceManager$1 as ESDeviceManager, ESDeviceModule$1 as ESDeviceModule, ESDisplayManager$1 as ESDisplayManager, ESEventBus$1 as ESEventBus, ESEventBusEvent, ESFile, ESFileModule$1 as ESFileModule, ESFocusManager$1 as ESFocusManager, ESFocusModule$1 as ESFocusModule, ESKeyEvent, ESKeyEventMixin, ESLaunchManager$1 as ESLaunchManager, ESLoadingViewComponent, ESMMapManager$1 as ESMMapManager, ESMMapModule$1 as ESMMapModule, ESManager$1 as ESManager, ESModule$1 as ESModule, ESNetwork, ESNetworkManager$1 as ESNetworkManager, ESNetworkMixin, ESNetworkModule$1 as ESNetworkModule, ESPage, ESPageLifecycle, ESPageRootViewComponent, ESPageRouterViewComponent, ESPermissionManager$1 as ESPermissionManager, ESPermissionModule$1 as ESPermissionModule, ESPlugin, ESPluginManager$1 as ESPluginManager, ESPluginModule$1 as ESPluginModule, ESPowerManager$1 as ESPowerManager, ESPowerModule$1 as ESPowerModule, ESProgressBarViewComponent, ESQRCodeViewComponent, ESRouter, ESScrollViewComponent, ESSeekBarViewComponent, ESSharedPreferencesManager$1 as ESSharedPreferencesManager, ESSharedPreferencesModule$1 as ESSharedPreferencesModule, ESStorageManager$1 as ESStorageManager, ESStorageModule$1 as ESStorageModule, ESSurfaceViewComponent, ESTextViewComponent, ESToast$1 as ESToast, ToastModule as ESToastModule, ESTransitionImageViewComponent, ESUsbDevice, ESUsbDeviceManager$1 as ESUsbDeviceManager, ESUsbDeviceMixin, ESUsbDeviceModule$1 as ESUsbDeviceModule, ES_ACCELERATE_DECELERATE_INTERPOLATOR, ES_ACCELERATE_INTERPOLATOR, ES_ANIMATION_PROPERTY_NAME_ALPHA, ES_ANIMATION_PROPERTY_NAME_ROTATION, ES_ANIMATION_PROPERTY_NAME_SCALE_X, ES_ANIMATION_PROPERTY_NAME_SCALE_Y, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_X, ES_ANIMATION_PROPERTY_NAME_TRANSLATION_Y, ES_ANIMATION_REPEAT_MODE_INFINITE, ES_ANIMATION_REPEAT_MODE_RESTART, ES_ANIMATION_REPEAT_MODE_REVERSE, ES_ANIMATION_TYPE_AFTER, ES_ANIMATION_TYPE_AFTER_DELAY, ES_ANIMATION_TYPE_BEFORE, ES_ANIMATION_TYPE_NONE, ES_ANIMATION_TYPE_PLAY, ES_ANIMATION_TYPE_PLAY_SEQUENTIALLY, ES_ANIMATION_TYPE_PLAY_TOGETHER, ES_ANIMATION_TYPE_WITH, ES_ANIMATION_VALUE_TYPE_FLOAT, ES_ANIMATION_VALUE_TYPE_INT, ES_ANTICIPATE_INTERPOLATOR, ES_ANTICIPATE_OVERSHOOT_INTERPOLATOR, ES_BOUNCE_INTERPOLATOR, ES_CYCLE_INTERPOLATOR, ES_DECELERATE_INTERPOLATOR, ES_FAST_OUT_LINEAR_IN_INTERPOLATOR, ES_FAST_OUT_SLOW_IN_INTERPOLATOR, ES_KEYCODE_BACK, ES_KEYCODE_DPAD_CENTER, ES_KEYCODE_DPAD_DOWN, ES_KEYCODE_DPAD_LEFT, ES_KEYCODE_DPAD_RIGHT, ES_KEYCODE_DPAD_UP, ES_KEYCODE_ENTER, ES_KEYCODE_ESCAPE, ES_KEYCODE_MENU, ES_KEYCODE_SEARCH, ES_KEY_ACTION_DOWN, ES_KEY_ACTION_UP, ES_LIFECYCLE_ON_CREATE, ES_LIFECYCLE_ON_DESTROY, ES_LIFECYCLE_ON_INITIALIZED, ES_LIFECYCLE_ON_PAUSE, ES_LIFECYCLE_ON_RESTART, ES_LIFECYCLE_ON_RESTORE_INSTANCE_SATE, ES_LIFECYCLE_ON_RESUME, ES_LIFECYCLE_ON_SAVE_INSTANCE_SATE, ES_LIFECYCLE_ON_START, ES_LIFECYCLE_ON_STOP, ES_LIFECYCLE_ON_UNINITIALIZED, ES_LINEAR_INTERPOLATOR, ES_MMP_MODE_PRIVATE, ES_MMP_MODE_WORLD_READABLE, ES_MMP_MODE_WORLD_WRITEABLE, ES_NETWORK_INFO_STATE_CONNECTED, ES_NETWORK_INFO_STATE_CONNECTING, ES_NETWORK_INFO_STATE_DISCONNECTED, ES_NETWORK_INFO_STATE_DISCONNECTING, ES_NETWORK_INFO_STATE_SUSPENDED, ES_NETWORK_INFO_STATE_UNKNOWN, ES_NETWORK_INFO_TYPE_ETHERNET, ES_NETWORK_INFO_TYPE_MOBILE, ES_NETWORK_INFO_TYPE_NONE, ES_NETWORK_INFO_TYPE_WIFI, ES_OVERSHOOT_INTERPOLATOR, ES_PATH_INTERPOLATOR, ES_SDK_VERSION_20, ES_SDK_VERSION_21, ES_SDK_VERSION_22, ES_SEEK_BAR_MODE_DISABLED, ES_SEEK_BAR_MODE_PROGRESS, ES_SEEK_BAR_MODE_SEEK, KEYCODE_BACK, KEYCODE_DPAD_CENTER, KEYCODE_DPAD_DOWN, KEYCODE_DPAD_LEFT, KEYCODE_DPAD_RIGHT, KEYCODE_DPAD_UP, KEYCODE_ENTER, KEYCODE_ESCAPE, KEYCODE_MENU, KEYCODE_SEARCH, KEY_ACTION_DOWN, KEY_ACTION_UP, getESApp, setESApp };
|