2023-08-01 14:41:21 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
#ifndef NATIVEWINDOW_H
|
|
|
|
#define NATIVEWINDOW_H
|
|
|
|
|
|
|
|
#if defined(Q_OS_MACOS)
|
|
|
|
# include <AppKit/AppKit.h>
|
2023-08-02 14:02:18 +00:00
|
|
|
# define VIEW_BASE NSView
|
|
|
|
#elif defined(Q_OS_IOS)
|
|
|
|
# include <UIKit/UIKit.h>
|
|
|
|
# define VIEW_BASE UIView
|
2023-08-01 14:41:21 +00:00
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
# include <winuser.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class NativeWindow
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(NativeWindow)
|
|
|
|
public:
|
|
|
|
NativeWindow();
|
|
|
|
~NativeWindow();
|
|
|
|
|
|
|
|
operator WId() const { return reinterpret_cast<WId>(m_handle); }
|
2023-08-02 10:22:28 +00:00
|
|
|
WId parentWinId() const;
|
2023-08-01 14:41:21 +00:00
|
|
|
|
|
|
|
void setGeometry(const QRect &rect);
|
|
|
|
QRect geometry() const;
|
|
|
|
|
|
|
|
private:
|
2023-08-02 14:02:18 +00:00
|
|
|
#if defined(Q_OS_MACOS) || defined(Q_OS_IOS)
|
|
|
|
VIEW_BASE *m_handle = nullptr;
|
2023-08-01 14:41:21 +00:00
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
HWND m_handle = nullptr;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2023-08-02 14:02:18 +00:00
|
|
|
#if defined(Q_OS_MACOS) || defined(Q_OS_IOS)
|
2023-08-01 14:41:21 +00:00
|
|
|
|
2023-08-02 14:02:18 +00:00
|
|
|
@interface View : VIEW_BASE
|
2023-08-01 14:41:21 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation View
|
|
|
|
- (instancetype)init
|
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
2023-08-02 13:34:36 +00:00
|
|
|
#if defined(Q_OS_MACOS)
|
|
|
|
self.wantsLayer = YES;
|
|
|
|
#endif
|
|
|
|
self.layer.backgroundColor = CGColorCreateGenericRGB(1.0, 0.5, 1.0, 1.0);
|
2023-08-01 14:41:21 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
NativeWindow::NativeWindow()
|
|
|
|
: m_handle([View new])
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NativeWindow::~NativeWindow()
|
|
|
|
{
|
|
|
|
[m_handle release];
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::setGeometry(const QRect &rect)
|
|
|
|
{
|
|
|
|
m_handle.frame = QRectF(rect).toCGRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect NativeWindow::geometry() const
|
|
|
|
{
|
|
|
|
return QRectF::fromCGRect(m_handle.frame).toRect();
|
|
|
|
}
|
|
|
|
|
2023-08-02 10:22:28 +00:00
|
|
|
WId NativeWindow::parentWinId() const
|
|
|
|
{
|
|
|
|
return WId(m_handle.superview);
|
|
|
|
}
|
|
|
|
|
2023-08-01 14:41:21 +00:00
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
|
|
|
|
NativeWindow::NativeWindow()
|
|
|
|
{
|
|
|
|
static const LPCWSTR className = []{
|
|
|
|
WNDCLASS wc = {};
|
|
|
|
wc.lpfnWndProc = DefWindowProc;
|
|
|
|
wc.hInstance = GetModuleHandle(nullptr);
|
|
|
|
wc.lpszClassName = L"Native Window";
|
2023-08-02 13:34:36 +00:00
|
|
|
wc.hbrBackground = CreateSolidBrush(RGB(255, 128, 255));
|
2023-08-01 14:41:21 +00:00
|
|
|
RegisterClass(&wc);
|
|
|
|
return wc.lpszClassName;
|
|
|
|
}();
|
|
|
|
m_handle = CreateWindowEx(0, className, nullptr, WS_POPUP,
|
|
|
|
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
|
|
|
|
nullptr, nullptr, GetModuleHandle(nullptr), nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
NativeWindow::~NativeWindow()
|
|
|
|
{
|
|
|
|
DestroyWindow(m_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::setGeometry(const QRect &rect)
|
|
|
|
{
|
|
|
|
MoveWindow(m_handle, rect.x(), rect.y(), rect.width(), rect.height(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect NativeWindow::geometry() const
|
|
|
|
{
|
|
|
|
WINDOWPLACEMENT wp;
|
|
|
|
wp.length = sizeof(WINDOWPLACEMENT);
|
|
|
|
if (GetWindowPlacement(m_handle, &wp)) {
|
|
|
|
RECT r = wp.rcNormalPosition;
|
|
|
|
return QRect(r.left, r.top, r.right - r.left, r.bottom - r.top);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-08-02 10:22:28 +00:00
|
|
|
WId NativeWindow::parentWinId() const
|
|
|
|
{
|
|
|
|
return WId(GetAncestor(m_handle, GA_PARENT));
|
|
|
|
}
|
|
|
|
|
2023-08-01 14:41:21 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // NATIVEWINDOW_H
|