7#include <QtCore/qflags.h>
8#include <QtCore/qglobal.h>
9#include <QtCore/qmimedata.h>
10#include <QtCore/qobject.h>
11#include <QtCore/qpoint.h>
12#include <QtCore/qsize.h>
13#include <QtCore/qstring.h>
14#include <QtGui/qimage.h>
15#include <QtGui/qwindow.h>
18#include <qohosdisplayinfo.h>
19#include <qohosforeignwindow.h>
20#include <qohosplatformwindow.h>
21#include <qohosplugincore.h>
22#include <qohosruntimedevicetypeandmode.h>
23#include <qohossettings.h>
24#include <qohoswindowproperty.h>
25#include <render/qnativenode.h>
26#include <render/qohossurface.h>
27#include <render/qohoswindowproxy.h>
33enum class ViewGeometryPersistencePolicy
97 QWindow *ownerWindow, QSharedPointer<QNativeNode> nativeNode,
100 void setSizeLimits(
const QSize &minSize,
const QSize &maxSize);
103 void setSize(
const QSize &size);
110 void setTitle(
const QString &title);
133 const std::vector<QImage> &images,
const QPointF &hotspot,
134 const QMimeData &mimeData, QOhosConsumer<Qt::DropAction> dropActionConsumer);
137 Qt::WindowStates previousWindowState, Qt::WindowStates currentWindowState);
139 Qt::WindowFlags previousWindowFlags, Qt::WindowFlags currentWindowFlags);
168 void avoidAreaChanged(QOhosWindowProxy::AvoidAreaType avoidAreaType,
const QOhosWindowProxy::AvoidArea &avoidArea);
177 void applyPhoneWindowChrome();
185 struct SystemUpdateDataProperty
187 std::optional<T> optPendingUpdateRequest;
197 struct SystemUpdateData
199 WindowModeOnlySystemUpdateDataProperty<QSize> size;
200 WindowModeOnlySystemUpdateDataProperty<std::pair<QSize, QSize>> sizeLimits;
201 WindowModeOnlySystemUpdateDataProperty<std::pair<QPoint, std::optional<QOhosDisplayInfo::JsDisplayId>>> position;
202 SystemUpdateDataProperty<
bool> visibility;
203 NoTabletSystemUpdateDataProperty<
bool> backgroundTransparent;
204 SystemUpdateDataProperty<QCursor> cursor;
205 NoTabletSystemUpdateDataProperty<
bool> focusable;
206 SystemUpdateDataProperty<QColor> backgroundColor;
207 SystemUpdateDataProperty<
int> brightness;
208 SystemUpdateDataProperty<
int> contrast;
209 SystemUpdateDataProperty<
int> saturation;
210 SystemUpdateDataProperty<
bool> windowTransparentForInput;
211 WindowModeOnlySystemUpdateDataProperty<Qt::WindowModality> modality;
212 WindowModeOnlySystemUpdateDataProperty<QString> title;
213 WindowModeOnlySystemUpdateDataProperty<WindowMinMaxCloseButtonsState> windowMinMaxCloseButtonsState;
214 WindowModeOnlySystemUpdateDataProperty<
bool> windowStaysOnTop;
215 WindowModeOnlySystemUpdateDataProperty<
bool> frameless;
218 static constexpr auto makeSystemUpdateDataPropertyUpdateFuncPairsTuple()
220 return std::make_tuple(
221 std::make_pair(&SystemUpdateData::sizeLimits, &QOhosView::updateWindowSizeLimits),
222 std::make_pair(&SystemUpdateData::size, &QOhosView::updateWindowSize),
223 std::make_pair(&SystemUpdateData::position, &QOhosView::updateWindowPosition),
224 std::make_pair(&SystemUpdateData::backgroundTransparent, &QOhosView::updateWindowBackgroundTransparency),
225 std::make_pair(&SystemUpdateData::cursor, &QOhosView::updateWindowCursor),
226 std::make_pair(&SystemUpdateData::focusable, &QOhosView::updateWindowFocusable),
227 std::make_pair(&SystemUpdateData::backgroundColor, &QOhosView::updateWindowBackgroundColor),
228 std::make_pair(&SystemUpdateData::brightness, &QOhosView::updateWindowBrightness),
229 std::make_pair(&SystemUpdateData::contrast, &QOhosView::updateWindowContrast),
230 std::make_pair(&SystemUpdateData::saturation, &QOhosView::updateWindowSaturation),
231 std::make_pair(&SystemUpdateData::windowTransparentForInput, &QOhosView::updateWindowTransparentForInput),
232 std::make_pair(&SystemUpdateData::modality, &QOhosView::updateWindowModality),
233 std::make_pair(&SystemUpdateData::title, &QOhosView::updateWindowTitle),
234 std::make_pair(&SystemUpdateData::windowMinMaxCloseButtonsState, &QOhosView::updateWindowMinMaxCloseButtonsState),
235 std::make_pair(&SystemUpdateData::windowStaysOnTop, &QOhosView::updateWindowStaysOnTop),
236 std::make_pair(&SystemUpdateData::frameless, &QOhosView::updateWindowFrameless));
240 void setSystemUpdateProperty(SystemUpdateDataProperty<T, SupportedModes> SystemUpdateData::*property,
const T &value);
242 void scheduleSystemUpdateIfNeeded();
243 void updateWindowSize(
const QSize &size);
244 void updateWindowSizeLimits(
const std::pair<QSize, QSize> &sizeLimits);
245 void updateWindowPosition(
const std::pair<QPoint, std::optional<QOhosDisplayInfo::JsDisplayId>> &position);
246 void updateWindowBackgroundTransparency(
bool transparent);
247 void updateWindowCursor(
const QCursor &cursor);
248 void updateWindowFocusable(
bool focusable);
249 void updateWindowBackgroundColor(
const QColor &color);
250 void updateWindowBrightness(
int brightness);
251 void updateWindowContrast(
int contast);
252 void updateWindowSaturation(
int saturation);
253 void updateWindowTransparentForInput(
bool transparentForInput);
254 void updateWindowModality(Qt::WindowModality modality);
255 void updateWindowTitle(
const QString &title);
257 void updateWindowStaysOnTop(
bool staysOnTop);
258 void updateWindowFrameless(
bool frameless);
260 void flushSystemPropertyUpdatesImmediate();
262 void setOrResetWindowProxy(
std::shared_ptr<
QOhosWindowProxy> windowProxy, QWindow *optLogicalParent);
263 const QOhosView *ancestorViewWithWindowOrNull()
const;
264 void hideMainWindow();
265 void setWindowCornerRadius(
double radius);
266 void setPrivacyMode(
bool privacyModeEnabled);
267 void setBackgroundColor(
const QColor &color);
268 void setBrightness(
int brightness);
269 void setContrast(
int contrast);
270 void setSaturation(
int saturation);
271 void setWindowKeepScreenOn(
bool keepScreenOn);
272 void setFixedSizeStateEnabled(
bool fixedSizeStateEnabled);
273 void setWindowDragResizable(
bool dragResizable);
275 void sendAsyncSyntheticWindowActiveEvent();
277 std::shared_ptr<
QOhosWindowProxy> tryCreateWindowProxyIfNeeded(ViewType viewType, QWindow *optLogicalParent);
279 bool isWindowTransparencyRequested()
const;
282 QPointer<QWindow> m_ownerWindow;
284 QSharedPointer<QNativeNode> m_nativeNode;
285 SystemUpdateData m_updateData;
286 bool m_updatePending;
287 std::function<QOhosWindowProxy::AvoidArea(QOhosWindowProxy::AvoidAreaType)> m_avoidAreasProvider;
288 bool m_requireHandheldDeviceSupport;
289 QtOhos::InternalWindowId m_ownerWindowId;
290 bool m_windowDestroyed =
false;
291 std::optional<ViewType> m_viewType;
292 QPointer<QWindow> m_optLogicalParent;
294 ViewGeometryPersistencePolicy m_geometryPersistencePolicy = ViewGeometryPersistencePolicy::Ignore;
295 std::shared_ptr<
void> m_windowPropertiesProviderCallbacksHandle;
296 std::function<
void()> m_optPostSurfaceDrawTask;
297 int m_pendingSelfMinimizeEchoes = 0;
301void QOhosView::setSystemUpdateProperty(SystemUpdateDataProperty<T, SupportedModes> SystemUpdateData::*propertyMemberPtr,
const T &value)
303 QFlags<QOhosRuntimeDeviceTypeAndMode> supportedModes(SupportedModes);
305 if (m_requireHandheldDeviceSupport
306 && !supportedModes.testFlag(QOhosRuntimeDeviceTypeAndMode::HandheldDeviceWindowPcMode)
307 && !supportedModes.testFlag(QOhosRuntimeDeviceTypeAndMode::HandheldDeviceFullScreen)) {
311 bool windowModeOnly =
312 !supportedModes.testFlag(QOhosRuntimeDeviceTypeAndMode::HandheldDeviceFullScreen)
313 && (supportedModes.testFlag(QOhosRuntimeDeviceTypeAndMode::_2in1)
314 || supportedModes.testFlag(QOhosRuntimeDeviceTypeAndMode::HandheldDeviceWindowPcMode));
316 if (windowModeOnly && !QOhosSettings::instance().isWindowPcModeEnabled()
317 && viewType() == ViewType::MainWindow) {
321 auto &property = m_updateData.*propertyMemberPtr;
322 if (property.optPendingUpdateRequest != value) {
323 property.optPendingUpdateRequest = value;
324 scheduleSystemUpdateIfNeeded();
QOhosPropertiesProvider(QOhosPropertiesStore &store)
std::optional< T > tryGetProperty() const
std::shared_ptr< void > addPropertyWriteCallback(QOhosConsumer< T > propertyWriteCallback)
QOhosPropertiesStore(QObject *qObject)
std::shared_ptr< void > addPropertyWriteCallback(QOhosConsumer< T > propertyWriteCallback)
std::optional< T > tryGetProperty() const
void notifyPropertyWrite(const QByteArray &propertyName)
void setExtraUsageBitsForNativeWindowBuffer(std::uint64_t usageSetBits)
::OHNativeWindow * nativeWindow() const
static constexpr ::OH_NativeBuffer_Format bufferFormat
void paintOnNativeWindowSurface(std::function< std::vector<::Region::Rect >(QImage &, ::BufferHandle *)> paintFunc, std::function< void(::BufferHandle *)> onFlushSuccessFunc)
static std::optional< QSize > tryGetBufferGeometryForWindow(::OHNativeWindow *nativeWindow)
void setNativeWindowSurface(::OHNativeWindow *nativeWindow, const std::optional< QSize > &optSurfaceSize)
static QImage::Format mapNativeBufferFormatToQImageFormatOrFail(std::int32_t format)
std::optional< QSize > surfaceResolution() const
QOhosSurface(::OHNativeWindow *nativeWindow)
EGLSurface tryGetOrCreateEGLWindowSurface(EGLDisplay display, EGLConfig config, bool swappingBuffers)
void clearNativeWindowSurface()
void windowStatusChange(QOhosWindowProxy::WindowStatus windowStatus)
void setParentOrReparent(QOhosView &parentView)
bool consumePendingSelfMinimizeEcho()
void setCursor(const QCursor &cursor)
void handleWindowFlagsChange(Qt::WindowFlags previousWindowFlags, Qt::WindowFlags currentWindowFlags)
void addForeignWindowChild(QOhosForeignWindow *foreignWindow)
void handleWindowStateChange(Qt::WindowStates previousWindowState, Qt::WindowStates currentWindowState)
void setFocusable(bool focusable)
QArkUi::QQtEmbeddedWindowNode::NodeAreaInfo nodeAreaInfo() const
QOhosSurface * surfaceOrNull() const
void windowVisibilityChange(bool visibility)
void setPositionOnScreenImmediate(const QPoint &position, QOhosDisplayInfo::JsDisplayId jsDisplayId)
QList< QRect > displayCutoutRects() const
void setTransparentBackground(bool transparent)
void setModality(Qt::WindowModality modality)
bool isFullscreenImmersiveModeEnabled()
void setFramelessWindow(bool frameless)
QPixmap makeSnapshot() const
void setWindowShadowDisabled()
void setWindowTransparentForInput(bool transparentForInput)
void tryDetachFromEmbeddedParent()
ViewType viewType() const
QMargins avoidAreaMargins(QOhosWindowProxy::AvoidAreaType type) const
QWindow * ownerWindow() const
void handleSurfaceContentsUpdated()
void windowRectChanged(QOhosWindowProxy::RectChangeOptions rectChangeOptions)
void windowRectChangedInGlobalDisplay(QOhosWindowProxy::RectChangeOptions rectChangeOptions)
void forceGeometryUpdate()
void externalContentInteractionDetected()
void setWindowMinMaxCloseButtonState(const WindowMinMaxCloseButtonsState &state)
void setWindowMask(const QOhosWindowProxy::WindowMask &windowMask)
void setSizeLimits(const QSize &minSize, const QSize &maxSize)
std::optional< QSize > surfaceResolution() const
void windowTouchOutside()
void nodeAreaChanged(QArkUi::QQtEmbeddedWindowNode::NodeAreaInfo areaChangeEvt)
void handlePaletteChange()
void windowDisplayIdChanged(QOhosDisplayInfo::JsDisplayId)
static std::unique_ptr< QOhosView > createForWindow(QOhosPlatformWindow *window, QOhosPropertiesProvider windowPropertiesProvider)
void setOpacity(qreal opacity)
void setNativeNodeVisibility(bool visible)
void setWindowStaysOnTop(bool staysOnTop)
ViewGeometry viewGeometry() const
void avoidAreaChanged(QOhosWindowProxy::AvoidAreaType avoidAreaType, const QOhosWindowProxy::AvoidArea &avoidArea)
void setSize(const QSize &size)
void setPosition(const QPoint &position)
QOhosView(QWindow *ownerWindow, QSharedPointer< QNativeNode > nativeNode, QOhosPropertiesProvider propertiesProvider)
bool isSubWindowCoveringFullScreen() const
void surfaceStatusChanged(const std::optional< QSize > &optSurfaceSize)
QRect nodeParentRelativeGeometryPixels() const
void setTitle(const QString &title)
void startDrag(const std::vector< QImage > &images, const QPointF &hotspot, const QMimeData &mimeData, QOhosConsumer< Qt::DropAction > dropActionConsumer)
const QOhosView * viewParentOrNull() const
QRect nodeScreenGeometryPixels() const
QtOhos::enums::ohos::window::WindowEventType WindowEventType
bool sendEvent(WindowSystemEvent *event) override
Combined button and popup list for selecting options.
@ ForwardToGuiApplication
QOhosView * mapQWindowToViewOrNull(QWindow *window)
std::optional< T > tryMapFromQVariant(QVariant variant)
const char * qObjectOhosPropertyName()
std::shared_ptr< QWindowSystemEventHandler > makeApplicationStateTracker()
QOhosRuntimeDeviceTypeAndMode
@ HandheldDeviceFullScreen
@ HandheldDeviceWindowPcMode
void setQOhosPropertyOnQObject(QObject *qObject, T propertyValue)
std::optional< T > tryGetQOhosPropertyFromQObject(QObject *qObject)
bool disableWindowFocusableBeforeLoadContent
std::optional< QOhosDisplayInfo::JsDisplayId > displayId