mirror of
https://github.com/mappu/miqt.git
synced 2025-04-27 15:40:21 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_PDF_GEN_QPDFSEARCHRESULT_H
|
|
#define MIQT_QT_PDF_GEN_QPDFSEARCHRESULT_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 QPdfDestination;
|
|
class QPdfSearchResult;
|
|
class QRectF;
|
|
#else
|
|
typedef struct QPdfDestination QPdfDestination;
|
|
typedef struct QPdfSearchResult QPdfSearchResult;
|
|
typedef struct QRectF QRectF;
|
|
#endif
|
|
|
|
QPdfSearchResult* QPdfSearchResult_new();
|
|
QPdfSearchResult* QPdfSearchResult_new2(QPdfSearchResult* param1);
|
|
void QPdfSearchResult_virtbase(QPdfSearchResult* src, QPdfDestination** outptr_QPdfDestination);
|
|
struct miqt_string QPdfSearchResult_contextBefore(const QPdfSearchResult* self);
|
|
struct miqt_string QPdfSearchResult_contextAfter(const QPdfSearchResult* self);
|
|
struct miqt_array /* of QRectF* */ QPdfSearchResult_rectangles(const QPdfSearchResult* self);
|
|
void QPdfSearchResult_delete(QPdfSearchResult* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|