1 /* 2 * Copyright (c) 2021 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 OHOS_ABILITY_RUNTIME_START_OPTIONS_H 17 #define OHOS_ABILITY_RUNTIME_START_OPTIONS_H 18 19 #include <string> 20 21 #include "ability_info.h" 22 #include "ability_window_configuration.h" 23 #include "parcel.h" 24 25 namespace OHOS { 26 namespace AAFwk { 27 class ProcessOptions; 28 class StartWindowOption; 29 30 class StartOptions final : public Parcelable, public std::enable_shared_from_this<StartOptions> { 31 public: 32 const int32_t DEFAULT_DISPLAY_ID {0}; 33 bool windowLeftUsed_ = false; 34 bool windowTopUsed_ = false; 35 bool windowWidthUsed_ = false; 36 bool windowHeightUsed_ = false; 37 std::vector<AppExecFwk::SupportWindowMode> supportWindowModes_; 38 std::shared_ptr<ProcessOptions> processOptions = nullptr; 39 std::shared_ptr<StartWindowOption> startWindowOption = nullptr; 40 41 StartOptions() = default; 42 ~StartOptions() = default; 43 StartOptions(const StartOptions &other); 44 StartOptions &operator=(const StartOptions &other); 45 46 bool ReadFromParcel(Parcel &parcel); 47 virtual bool Marshalling(Parcel &parcel) const override; 48 static StartOptions *Unmarshalling(Parcel &parcel); 49 50 void SetWindowMode(int32_t windowMode); 51 int32_t GetWindowMode() const; 52 53 void SetDisplayID(int32_t displayId); 54 int32_t GetDisplayID() const; 55 56 void SetWithAnimation(bool withAnimation); 57 bool GetWithAnimation() const; 58 59 void SetWindowFocused(bool windowFocused); 60 int32_t GetWindowFocused() const; 61 62 void SetWindowLeft(int32_t windowLeft); 63 int32_t GetWindowLeft() const; 64 65 void SetWindowTop(int32_t windowTop); 66 int32_t GetWindowTop() const; 67 68 void SetWindowWidth(int32_t windowWidth); 69 int32_t GetWindowWidth() const; 70 71 void SetWindowHeight(int32_t windowHeight); 72 int32_t GetWindowHeight() const; 73 private: 74 int32_t windowMode_ = AbilityWindowConfiguration::MULTI_WINDOW_DISPLAY_UNDEFINED; 75 int32_t displayId_ = DEFAULT_DISPLAY_ID; 76 bool withAnimation_ = true; 77 bool windowFocused_ = true; 78 int32_t windowLeft_ = 0; 79 int32_t windowTop_ = 0; 80 int32_t windowWidth_ = 0; 81 int32_t windowHeight_ = 0; 82 }; 83 } // namespace AAFwk 84 } // namespace OHOS 85 #endif // OHOS_ABILITY_RUNTIME_START_OPTIONS_H 86