2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_GEN_QBACKINGSTORE_H
|
|
|
|
#define MIQT_QT6_GEN_QBACKINGSTORE_H
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QBackingStore;
|
|
|
|
class QPaintDevice;
|
|
|
|
class QPoint;
|
|
|
|
class QRegion;
|
|
|
|
class QSize;
|
|
|
|
class QWindow;
|
|
|
|
#else
|
|
|
|
typedef struct QBackingStore QBackingStore;
|
|
|
|
typedef struct QPaintDevice QPaintDevice;
|
|
|
|
typedef struct QPoint QPoint;
|
|
|
|
typedef struct QRegion QRegion;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QWindow QWindow;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QBackingStore* QBackingStore_new(QWindow* window);
|
2024-10-20 05:21:03 +00:00
|
|
|
QWindow* QBackingStore_Window(const QBackingStore* self);
|
|
|
|
QPaintDevice* QBackingStore_PaintDevice(QBackingStore* self);
|
|
|
|
void QBackingStore_Flush(QBackingStore* self, QRegion* region);
|
|
|
|
void QBackingStore_Resize(QBackingStore* self, QSize* size);
|
|
|
|
QSize* QBackingStore_Size(const QBackingStore* self);
|
|
|
|
bool QBackingStore_Scroll(QBackingStore* self, QRegion* area, int dx, int dy);
|
|
|
|
void QBackingStore_BeginPaint(QBackingStore* self, QRegion* param1);
|
|
|
|
void QBackingStore_EndPaint(QBackingStore* self);
|
|
|
|
void QBackingStore_SetStaticContents(QBackingStore* self, QRegion* region);
|
|
|
|
QRegion* QBackingStore_StaticContents(const QBackingStore* self);
|
|
|
|
bool QBackingStore_HasStaticContents(const QBackingStore* self);
|
|
|
|
void QBackingStore_Flush2(QBackingStore* self, QRegion* region, QWindow* window);
|
|
|
|
void QBackingStore_Flush3(QBackingStore* self, QRegion* region, QWindow* window, QPoint* offset);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QBackingStore_Delete(QBackingStore* self, bool isSubclass);
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|