miqt/qt/printsupport/gen_qprinterinfo.h

65 lines
2.7 KiB
C++

#pragma once
#ifndef MIQT_QT_PRINTSUPPORT_GEN_QPRINTERINFO_H
#define MIQT_QT_PRINTSUPPORT_GEN_QPRINTERINFO_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 QPageSize;
class QPrinter;
class QPrinterInfo;
class QSizeF;
#else
typedef struct QPageSize QPageSize;
typedef struct QPrinter QPrinter;
typedef struct QPrinterInfo QPrinterInfo;
typedef struct QSizeF QSizeF;
#endif
QPrinterInfo* QPrinterInfo_new();
QPrinterInfo* QPrinterInfo_new2(QPrinterInfo* other);
QPrinterInfo* QPrinterInfo_new3(QPrinter* printer);
void QPrinterInfo_OperatorAssign(QPrinterInfo* self, QPrinterInfo* other);
struct miqt_string QPrinterInfo_PrinterName(const QPrinterInfo* self);
struct miqt_string QPrinterInfo_Description(const QPrinterInfo* self);
struct miqt_string QPrinterInfo_Location(const QPrinterInfo* self);
struct miqt_string QPrinterInfo_MakeAndModel(const QPrinterInfo* self);
bool QPrinterInfo_IsNull(const QPrinterInfo* self);
bool QPrinterInfo_IsDefault(const QPrinterInfo* self);
bool QPrinterInfo_IsRemote(const QPrinterInfo* self);
int QPrinterInfo_State(const QPrinterInfo* self);
struct miqt_array /* of QPageSize* */ QPrinterInfo_SupportedPageSizes(const QPrinterInfo* self);
QPageSize* QPrinterInfo_DefaultPageSize(const QPrinterInfo* self);
bool QPrinterInfo_SupportsCustomPageSizes(const QPrinterInfo* self);
QPageSize* QPrinterInfo_MinimumPhysicalPageSize(const QPrinterInfo* self);
QPageSize* QPrinterInfo_MaximumPhysicalPageSize(const QPrinterInfo* self);
struct miqt_array /* of int */ QPrinterInfo_SupportedPaperSizes(const QPrinterInfo* self);
struct miqt_array /* of struct miqt_map tuple of struct miqt_string and QSizeF* */ QPrinterInfo_SupportedSizesWithNames(const QPrinterInfo* self);
struct miqt_array /* of int */ QPrinterInfo_SupportedResolutions(const QPrinterInfo* self);
int QPrinterInfo_DefaultDuplexMode(const QPrinterInfo* self);
struct miqt_array /* of int */ QPrinterInfo_SupportedDuplexModes(const QPrinterInfo* self);
int QPrinterInfo_DefaultColorMode(const QPrinterInfo* self);
struct miqt_array /* of int */ QPrinterInfo_SupportedColorModes(const QPrinterInfo* self);
struct miqt_array /* of struct miqt_string */ QPrinterInfo_AvailablePrinterNames();
struct miqt_array /* of QPrinterInfo* */ QPrinterInfo_AvailablePrinters();
struct miqt_string QPrinterInfo_DefaultPrinterName();
QPrinterInfo* QPrinterInfo_DefaultPrinter();
QPrinterInfo* QPrinterInfo_PrinterInfo(struct miqt_string printerName);
void QPrinterInfo_Delete(QPrinterInfo* self, bool isSubclass);
#ifdef __cplusplus
} /* extern C */
#endif
#endif