Lines Matching defs:option
166 WindowSessionImpl::WindowSessionImpl(const sptr<WindowOption>& option)
170 WindowType optionWindowType = option->GetWindowType();
172 sessionInfo.bundleName_ = option->GetBundleName();
174 property_->SetWindowName(option->GetWindowName());
175 property_->SetRequestRect(option->GetWindowRect());
177 property_->SetFocusable(option->GetFocusable());
178 property_->SetTouchable(option->GetTouchable());
179 property_->SetDisplayId(option->GetDisplayId());
180 property_->SetParentId(option->GetParentId());
181 property_->SetTurnScreenOn(option->IsTurnScreenOn());
182 property_->SetKeepScreenOn(option->IsKeepScreenOn());
183 property_->SetWindowMode(option->GetWindowMode());
184 property_->SetWindowFlags(option->GetWindowFlags());
185 property_->SetCallingSessionId(option->GetCallingWindow());
186 property_->SetIsUIExtFirstSubWindow(option->GetIsUIExtFirstSubWindow());
187 property_->SetTopmost(option->GetWindowTopmost());
188 property_->SetRealParentId(option->GetRealParentId());
189 property_->SetParentWindowType(option->GetParentWindowType());
190 property_->SetUIExtensionUsage(static_cast<UIExtensionUsage>(option->GetUIExtensionUsage()));
191 property_->SetIsUIExtAnySubWindow(option->GetIsUIExtAnySubWindow());
193 isMainHandlerAvailable_ = option->GetMainHandlerAvailable();
195 windowOption_ = option;