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