admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
 
#pragma once
 
#include "Stdafx.h"
 
#include "include\internal\cef_win.h"
 
namespace CefSharp
{
    public ref class WindowInfo : public IWindowInfo
    {
    private:
        CefWindowInfo* _windowInfo;
        bool _ownsPointer = false;
 
    internal:
        WindowInfo(CefWindowInfo* windowInfo) : _windowInfo(windowInfo)
        {
 
        }
 
    public:
        WindowInfo() : _windowInfo(new CefWindowInfo())
        {
            _ownsPointer = true;
        }
 
        !WindowInfo()
        {
            if (_ownsPointer)
            {
                delete _windowInfo;
            }
 
            _windowInfo = NULL;
        }
 
        ~WindowInfo()
        {
            this->!WindowInfo();
        }
 
        virtual property int X
        {
            int get()
            {
                return _windowInfo->x;
            }
            void set(int x)
            {
                _windowInfo->x = x;
            }
        }
 
        virtual property int Y
        {
            int get()
            {
                return _windowInfo->y;
            }
            void set(int y)
            {
                _windowInfo->y = y;
            }
        }
 
        virtual property int Width
        {
            int get()
            {
                return _windowInfo->width;
            }
            void set(int width)
            {
                _windowInfo->width = width;
            }
        }
 
        virtual property int Height
        {
            int get()
            {
                return _windowInfo->height;
            }
            void set(int height)
            {
                _windowInfo->height = height;
            }
        }
 
        virtual property UINT32 Style
        {
            UINT32 get()
            {
                return _windowInfo->style;
            }
            void set(UINT32 style)
            {
                _windowInfo->style = style;
            }
        }
 
        virtual property UINT32 ExStyle
        {
            UINT32 get()
            {
                return _windowInfo->ex_style;
            }
            void set(UINT32 ex_style)
            {
                _windowInfo->ex_style = ex_style;
            }
        }
 
        virtual property IntPtr ParentWindowHandle
        {
            IntPtr get()
            {
                return IntPtr(_windowInfo->parent_window);
            }
            void set(IntPtr parentWindowHandle)
            {
                _windowInfo->parent_window = (HWND)parentWindowHandle.ToPointer();
            }
        }
 
        virtual property IntPtr WindowHandle
        {
            IntPtr get()
            {
                return IntPtr(_windowInfo->window);
            }
            void set(IntPtr windowHandle)
            {
                _windowInfo->window = (HWND)windowHandle.ToPointer();
            }
        }
 
        virtual property bool WindowlessRenderingEnabled
        {
            bool get()
            {
                return _windowInfo->windowless_rendering_enabled == 1;
            }
            void set(bool windowlessRenderingEnabled)
            {
                _windowInfo->windowless_rendering_enabled = windowlessRenderingEnabled;
            }
        }
 
        virtual property bool SharedTextureEnabled
        {
            bool get()
            {
                return _windowInfo->shared_texture_enabled == 1;
            }
            void set(bool sharedTextureEnabled)
            {
                _windowInfo->shared_texture_enabled = sharedTextureEnabled;
            }
        }
 
        virtual property bool ExternalBeginFrameEnabled
        {
            bool get()
            {
                return _windowInfo->external_begin_frame_enabled == 1;
            }
            void set(bool externalBeginFrameEnabled)
            {
                _windowInfo->external_begin_frame_enabled = externalBeginFrameEnabled;
            }
        }
 
        virtual void SetAsChild(IntPtr parentHandle)
        {
            HWND hwnd = static_cast<HWND>(parentHandle.ToPointer());
            RECT rect;
            GetClientRect(hwnd, &rect);
            CefWindowInfo window;
            _windowInfo->SetAsChild(hwnd, rect);
        }
 
        virtual void SetAsChild(IntPtr parentHandle, int left, int top, int right, int bottom)
        {
            RECT rect;
            rect.left = left;
            rect.top = top;
            rect.right = right;
            rect.bottom = bottom;
            _windowInfo->SetAsChild((HWND)parentHandle.ToPointer(), rect);
        }
 
        virtual void SetAsPopup(IntPtr parentHandle, String^ windowName)
        {
            _windowInfo->SetAsPopup((HWND)parentHandle.ToPointer(), StringUtils::ToNative(windowName));
        }
 
        virtual void SetAsWindowless(IntPtr parentHandle)
        {
            _windowInfo->SetAsWindowless((HWND)parentHandle.ToPointer());
        }
 
        CefWindowInfo* GetWindowInfo()
        {
            return _windowInfo;
        }
    };
}