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