2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QTEXTDOCUMENTFRAGMENT_H
|
|
|
|
#define GEN_QTEXTDOCUMENTFRAGMENT_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "binding.h"
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QByteArray;
|
|
|
|
class QTextCursor;
|
|
|
|
class QTextDocument;
|
|
|
|
class QTextDocumentFragment;
|
|
|
|
#else
|
|
|
|
typedef struct QByteArray QByteArray;
|
|
|
|
typedef struct QTextCursor QTextCursor;
|
|
|
|
typedef struct QTextDocument QTextDocument;
|
|
|
|
typedef struct QTextDocumentFragment QTextDocumentFragment;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_new();
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_new2(QTextDocument* document);
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_new3(QTextCursor* rangeVal);
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_new4(QTextDocumentFragment* rhs);
|
|
|
|
void QTextDocumentFragment_OperatorAssign(QTextDocumentFragment* self, QTextDocumentFragment* rhs);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QTextDocumentFragment_IsEmpty(const QTextDocumentFragment* self);
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QTextDocumentFragment_ToPlainText(const QTextDocumentFragment* self);
|
|
|
|
struct miqt_string* QTextDocumentFragment_ToHtml(const QTextDocumentFragment* self);
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_FromPlainText(struct miqt_string* plainText);
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_FromHtml(struct miqt_string* html);
|
|
|
|
QTextDocumentFragment* QTextDocumentFragment_FromHtml2(struct miqt_string* html, QTextDocument* resourceProvider);
|
|
|
|
struct miqt_string* QTextDocumentFragment_ToHtml1(const QTextDocumentFragment* self, QByteArray* encoding);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QTextDocumentFragment_Delete(QTextDocumentFragment* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|