mirror of
https://github.com/mappu/miqt.git
synced 2025-04-27 15:40:21 +00:00
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_PDF_GEN_QPDFDOCUMENTRENDEROPTIONS_H
|
|
#define MIQT_QT_PDF_GEN_QPDFDOCUMENTRENDEROPTIONS_H
|
|
|
|
#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 QPdfDocumentRenderOptions;
|
|
class QRect;
|
|
class QSize;
|
|
#else
|
|
typedef struct QPdfDocumentRenderOptions QPdfDocumentRenderOptions;
|
|
typedef struct QRect QRect;
|
|
typedef struct QSize QSize;
|
|
#endif
|
|
|
|
QPdfDocumentRenderOptions* QPdfDocumentRenderOptions_new();
|
|
QPdfDocumentRenderOptions* QPdfDocumentRenderOptions_new2(QPdfDocumentRenderOptions* param1);
|
|
int QPdfDocumentRenderOptions_rotation(const QPdfDocumentRenderOptions* self);
|
|
void QPdfDocumentRenderOptions_setRotation(QPdfDocumentRenderOptions* self, int r);
|
|
int QPdfDocumentRenderOptions_renderFlags(const QPdfDocumentRenderOptions* self);
|
|
void QPdfDocumentRenderOptions_setRenderFlags(QPdfDocumentRenderOptions* self, int r);
|
|
QRect* QPdfDocumentRenderOptions_scaledClipRect(const QPdfDocumentRenderOptions* self);
|
|
void QPdfDocumentRenderOptions_setScaledClipRect(QPdfDocumentRenderOptions* self, QRect* r);
|
|
QSize* QPdfDocumentRenderOptions_scaledSize(const QPdfDocumentRenderOptions* self);
|
|
void QPdfDocumentRenderOptions_setScaledSize(QPdfDocumentRenderOptions* self, QSize* s);
|
|
void QPdfDocumentRenderOptions_delete(QPdfDocumentRenderOptions* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|