• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2025 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_BUNDLEMANAGER_BUNDLE_FRAMEWORK_SERVICES_BUNDLEMGR_BUNDLE_RESOURCE_THEME_PROCESS_H
17 #define FOUNDATION_BUNDLEMANAGER_BUNDLE_FRAMEWORK_SERVICES_BUNDLEMGR_BUNDLE_RESOURCE_THEME_PROCESS_H
18 
19 #include <vector>
20 
21 #include "bundle_resource_info.h"
22 #include "launcher_ability_resource_info.h"
23 
24 namespace OHOS {
25 namespace AppExecFwk {
26 class BundleResourceThemeProcess : public std::enable_shared_from_this<BundleResourceThemeProcess> {
27 public:
BundleResourceThemeProcess()28     BundleResourceThemeProcess() {};
~BundleResourceThemeProcess()29     ~BundleResourceThemeProcess() {};
30 
31     static bool IsBundleThemeExist(const std::string &bundleName, const int32_t userId);
32 
33     static bool IsAbilityThemeExist(const std::string &bundleName, const std::string &moduleName,
34         const std::string &abilityName, const int32_t userId);
35 
36     static bool IsThemeExistInFlagA(const std::string &bundleName, const int32_t userId);
37 
38     static bool IsThemeExistInFlagB(const std::string &bundleName, const int32_t userId);
39 
40     static void ProcessSpecialBundleResource(const std::vector<LauncherAbilityResourceInfo> &resourceIconInfos,
41         BundleResourceInfo &bundleResourceInfo);
42 };
43 } // AppExecFwk
44 } // OHOS
45 #endif // FOUNDATION_BUNDLEMANAGER_BUNDLE_FRAMEWORK_SERVICES_BUNDLEMGR_BUNDLE_RESOURCE_THEME_PROCESS_H
46