/* * Copyright (c) 2022-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. */ /** * Defines the Menu Component. * * @interface MenuInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 */ /** * Defines the Menu Component. * * @interface MenuInterface * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ interface MenuInterface { /** * Creates the menu component. * * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 */ /** * Creates the menu component. * * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ (): MenuAttribute; } /** * Defines the Menu component attribute functions. * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 */ /** * Defines the Menu component attribute functions. * * @extends CommonMethod * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ declare class MenuAttribute extends CommonMethod { /** * Sets the Menu text size. * * @param { Length } value - Indicates the font size of menu item. * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 * @deprecated since 10 * @useinstead font */ fontSize(value: Length): MenuAttribute; /** * Sets the font style. * Family and style are not supported currently and will be fixed in future. * * @param { Font } value - Indicates the font style of menu item. * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ font(value: Font): MenuAttribute; /** * Sets the Menu font color. * * @param { ResourceColor } value - Indicates the font color of menu item. * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ fontColor(value: ResourceColor): MenuAttribute; /** * Sets the radius of the corner around the menu. * When the radius is less than the menu width, the default border radius is used. * * @param { Dimension | BorderRadiuses } value - the border radius. * @returns { MenuAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ radius(value: Dimension | BorderRadiuses): MenuAttribute; } /** * Defines Menu Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 */ /** * Defines Menu Component. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ declare const Menu: MenuInterface; /** * Defines Menu Component instance. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 9 */ /** * Defines Menu Component instance. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 10 */ declare const MenuInstance: MenuAttribute;