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_window_configuration.h" 22 #include "parcel.h" 23 namespace OHOS { 24 namespace AAFwk { 25 class StartOptions final : public Parcelable, public std::enable_shared_from_this<StartOptions> { 26 public: 27 const int32_t DEFAULT_DISPLAY_ID {0}; 28 bool windowLeftUsed_ = false; 29 bool windowTopUsed_ = false; 30 bool windowWidthUsed_ = false; 31 bool windowHeightUsed_ = false; 32 33 StartOptions() = default; 34 ~StartOptions() = default; 35 StartOptions(const StartOptions &other); 36 StartOptions &operator=(const StartOptions &other); 37 38 bool ReadFromParcel(Parcel &parcel); 39 virtual bool Marshalling(Parcel &parcel) const override; 40 static StartOptions *Unmarshalling(Parcel &parcel); 41 42 void SetWindowMode(int32_t windowMode); 43 int32_t GetWindowMode() const; 44 45 void SetDisplayID(int32_t displayId); 46 int32_t GetDisplayID() const; 47 48 void SetWithAnimation(bool withAnimation); 49 bool GetWithAnimation() const; 50 51 void SetWindowLeft(int32_t windowLeft); 52 int32_t GetWindowLeft() const; 53 54 void SetWindowTop(int32_t windowTop); 55 int32_t GetWindowTop() const; 56 57 void SetWindowWidth(int32_t windowWidth); 58 int32_t GetWindowWidth() const; 59 60 void SetWindowHeight(int32_t windowHeight); 61 int32_t GetWindowHeight() const; 62 private: 63 int32_t windowMode_ = AbilityWindowConfiguration::MULTI_WINDOW_DISPLAY_UNDEFINED; 64 int32_t displayId_ = DEFAULT_DISPLAY_ID; 65 bool withAnimation_ = true; 66 int32_t windowLeft_ = 0; 67 int32_t windowTop_ = 0; 68 int32_t windowWidth_ = 0; 69 int32_t windowHeight_ = 0; 70 }; 71 } // namespace AAFwk 72 } // namespace OHOS 73 #endif // OHOS_ABILITY_RUNTIME_START_OPTIONS_H 74