mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
79 lines
1.8 KiB
C++
79 lines
1.8 KiB
C++
#include <QBackingStore>
|
|
#include <QPaintDevice>
|
|
#include <QPoint>
|
|
#include <QRegion>
|
|
#include <QSize>
|
|
#include <QWindow>
|
|
#include <qbackingstore.h>
|
|
#include "gen_qbackingstore.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
QBackingStore* QBackingStore_new(QWindow* window) {
|
|
return new QBackingStore(window);
|
|
}
|
|
|
|
QWindow* QBackingStore_Window(const QBackingStore* self) {
|
|
return self->window();
|
|
}
|
|
|
|
QPaintDevice* QBackingStore_PaintDevice(QBackingStore* self) {
|
|
return self->paintDevice();
|
|
}
|
|
|
|
void QBackingStore_Flush(QBackingStore* self, QRegion* region) {
|
|
self->flush(*region);
|
|
}
|
|
|
|
void QBackingStore_Resize(QBackingStore* self, QSize* size) {
|
|
self->resize(*size);
|
|
}
|
|
|
|
QSize* QBackingStore_Size(const QBackingStore* self) {
|
|
return new QSize(self->size());
|
|
}
|
|
|
|
bool QBackingStore_Scroll(QBackingStore* self, QRegion* area, int dx, int dy) {
|
|
return self->scroll(*area, static_cast<int>(dx), static_cast<int>(dy));
|
|
}
|
|
|
|
void QBackingStore_BeginPaint(QBackingStore* self, QRegion* param1) {
|
|
self->beginPaint(*param1);
|
|
}
|
|
|
|
void QBackingStore_EndPaint(QBackingStore* self) {
|
|
self->endPaint();
|
|
}
|
|
|
|
void QBackingStore_SetStaticContents(QBackingStore* self, QRegion* region) {
|
|
self->setStaticContents(*region);
|
|
}
|
|
|
|
QRegion* QBackingStore_StaticContents(const QBackingStore* self) {
|
|
return new QRegion(self->staticContents());
|
|
}
|
|
|
|
bool QBackingStore_HasStaticContents(const QBackingStore* self) {
|
|
return self->hasStaticContents();
|
|
}
|
|
|
|
void QBackingStore_Flush2(QBackingStore* self, QRegion* region, QWindow* window) {
|
|
self->flush(*region, window);
|
|
}
|
|
|
|
void QBackingStore_Flush3(QBackingStore* self, QRegion* region, QWindow* window, QPoint* offset) {
|
|
self->flush(*region, window, *offset);
|
|
}
|
|
|
|
void QBackingStore_Delete(QBackingStore* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QBackingStore*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|