1 /* 2 * Copyright (c) 2024 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 #include "window_model.h" 17 18 namespace OHOS { 19 namespace Previewer { 20 PreviewerWindow()21PreviewerWindow::PreviewerWindow() 22 { 23 } 24 GetInstance()25PreviewerWindow& PreviewerWindow::GetInstance() 26 { 27 static PreviewerWindow instance; 28 return instance; 29 } 30 TransOrientation(Previewer::Orientation orientation)31Rosen::Orientation PreviewerWindow::TransOrientation(Previewer::Orientation orientation) 32 { 33 return Rosen::Orientation::UNSPECIFIED; 34 } 35 SetWindowParams(const PreviewerWindowModel & windowModel)36void PreviewerWindow::SetWindowParams(const PreviewerWindowModel& windowModel) 37 { 38 windowModel_ = windowModel; 39 } 40 SetWindowObject(const Rosen::Window * window)41void PreviewerWindow::SetWindowObject(const Rosen::Window* window) 42 { 43 window_ = const_cast<Rosen::Window*>(window); 44 } 45 GetWindowParams()46PreviewerWindowModel& PreviewerWindow::GetWindowParams() 47 { 48 return windowModel_; 49 } 50 GetWindowObject()51Rosen::Window* PreviewerWindow::GetWindowObject() 52 { 53 return window_; 54 } 55 56 } // namespace Previewer 57 } // namespace OHOS