1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FOUNDATION_ACE_FRAMEWORKS_CORE_COMMON_ROSEN_ROSEN_ENUMS_H 17 #define FOUNDATION_ACE_FRAMEWORKS_CORE_COMMON_ROSEN_ROSEN_ENUMS_H 18 19 namespace OHOS::Ace { 20 enum MATERIAL_BLUR_STYLE : int { 21 // no material 22 NO_MATERIAL = 0, 23 // card blur style 24 STYLE_CARD_THIN_LIGHT = 1, 25 STYLE_CARD_LIGHT = 2, 26 STYLE_CARD_THICK_LIGHT = 3, 27 STYLE_CARD_THIN_DARK = 4, 28 STYLE_CARD_DARK = 5, 29 STYLE_CARD_THICK_DARK = 6, 30 31 // background blur style 32 STYLE_BACKGROUND_SMALL_LIGHT = 101, 33 STYLE_BACKGROUND_MEDIUM_LIGHT = 102, 34 STYLE_BACKGROUND_LARGE_LIGHT = 103, 35 STYLE_BACKGROUND_XLARGE_LIGHT = 104, 36 STYLE_BACKGROUND_SMALL_DARK = 105, 37 STYLE_BACKGROUND_MEDIUM_DARK = 106, 38 STYLE_BACKGROUND_LARGE_DARK = 107, 39 STYLE_BACKGROUND_XLARGE_DARK = 108 40 }; 41 } // namespace OHOS::Ace 42 #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMMON_ROSEN_ROSEN_ENUMS_H 43