Revert "Revert "Changes after TouchData renamed to TouchEvent""
[platform/core/uifw/dali-adaptor.git] / dali / internal / offscreen / windows / offscreen-window-impl-win.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // EXTERNAL INCLUDES
19 #include <dali/public-api/actors/layer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/offscreen/common/offscreen-application-impl.h>
23
24 // CLASS HEADER
25 #include <dali/internal/offscreen/windows/offscreen-window-impl-win.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 OffscreenWindowWin* OffscreenWindowWin::New( uint16_t width, uint16_t height, Dali::Any surface, bool isTranslucent )
34 {
35   OffscreenWindowWin* window = new OffscreenWindowWin( width, height, surface, isTranslucent );
36   return window;
37 }
38
39 OffscreenWindowWin::OffscreenWindowWin( uint16_t width, uint16_t height, Dali::Any surface, bool isTranslucent )
40 : mIsTranslucent( isTranslucent )
41 {
42 }
43
44 void OffscreenWindowWin::Initialize( bool isDefaultWindow )
45 {
46 }
47
48 void OffscreenWindowWin::Initialize()
49 {
50 }
51
52 OffscreenWindowWin::~OffscreenWindowWin()
53 {
54 }
55
56 uint32_t OffscreenWindowWin::GetLayerCount() const
57 {
58   return 0;
59 }
60
61 Dali::Layer OffscreenWindowWin::GetLayer( uint32_t depth ) const
62 {
63   return Dali::Layer();
64 }
65
66 OffscreenWindow::WindowSize OffscreenWindowWin::GetSize() const
67 {
68   return OffscreenWindow::WindowSize();
69 }
70
71 Dali::Any OffscreenWindowWin::GetNativeHandle() const
72 {
73   return Any();
74 }
75
76 NativeRenderSurface* OffscreenWindowWin::GetNativeRenderSurface() const
77 {
78   return nullptr;
79 }
80
81 void OffscreenWindowWin::OnPostRender()
82 {
83 }
84
85 OffscreenWindow::PostRenderSignalType& OffscreenWindowWin::PostRenderSignal()
86 {
87   return mPostRenderSignal;
88 }
89
90 } // namespace Internal
91
92 } // namespace Dali