/* * Copyright (c) 2021-2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Load style of progress bar. * * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Load style of progress bar. * * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Load style of progress bar. * * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Load style of progress bar. * * @enum { number } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ declare enum LoadingProgressStyle { /** * Default style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Default style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Default style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Default style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ Default, /** * Announcement style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Announcement style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Announcement style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Announcement style. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ Circular, /** * The style of the track. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * The style of the track. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * The style of the track. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * The style of the track. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ Orbital, } /** * Provides an interface for extending the loading progress. * * @interface LoadingProgressInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Provides an interface for extending the loading progress. * * @interface LoadingProgressInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Provides an interface for extending the loading progress. * * @interface LoadingProgressInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Provides an interface for extending the loading progress. * * @interface LoadingProgressInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ interface LoadingProgressInterface { /** * Called when the progress bar progress is viewed. * * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Called when the progress bar progress is viewed. * * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Called when the progress bar progress is viewed. * * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Called when the progress bar progress is viewed. * * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ (): LoadingProgressAttribute; } /** * Declare the progress bar being loaded * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Declare the progress bar being loaded * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Declare the progress bar being loaded * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Declare the progress bar being loaded * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ declare class LoadingProgressAttribute extends CommonMethod { /** * Load the color of the progress bar. * * @param { ResourceColor } value * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Load the color of the progress bar. * * @param { ResourceColor } value * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Load the color of the progress bar. * * @param { ResourceColor } value * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Load the color of the progress bar. * * @param { ResourceColor } value * @returns { LoadingProgressAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ color(value: ResourceColor): LoadingProgressAttribute; /** * Whether to display the LoadingProgress content. * * @param { boolean } value - indicates the state of LoadingProgress content * @returns { LoadingProgressAttribute } the attribute of the LoadingProgress. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ /** * Whether to display the LoadingProgress content. * * @param { boolean } value - indicates the state of LoadingProgress content * @returns { LoadingProgressAttribute } the attribute of the LoadingProgress. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 */ enableLoading(value: boolean): LoadingProgressAttribute; } /** * Defines LoadingProgress Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Defines LoadingProgress Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Defines LoadingProgress Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Defines LoadingProgress Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ declare const LoadingProgress: LoadingProgressInterface; /** * Loading Progress Extensions on Declarative Classes * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 8 */ /** * Loading Progress Extensions on Declarative Classes * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @form */ /** * Loading Progress Extensions on Declarative Classes * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 * @form */ /** * Loading Progress Extensions on Declarative Classes * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 11 * @form */ declare const LoadingProgressInstance: LoadingProgressAttribute;