mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
61 lines
2.4 KiB
C++
61 lines
2.4 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_PRINTSUPPORT_GEN_QPRINTERINFO_H
|
|
#define MIQT_QT6_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;
|
|
#else
|
|
typedef struct QPageSize QPageSize;
|
|
typedef struct QPrinter QPrinter;
|
|
typedef struct QPrinterInfo QPrinterInfo;
|
|
#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_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
|