41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
- (int)physicalDPIX;
- (int)physicalDPIY;
- (int)width;
- (int)widthMM;
@end
@interface QtPaintDevice: OFObject <QtPaintDevice>
@property (readonly) QObject *qObject;
@end
namespace ObjQt {
static OF_INLINE QPaintDevice *
toQt(QtPaintDevice *paintDevice)
{
|
|
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
- (int)physicalDPIX;
- (int)physicalDPIY;
- (int)width;
- (int)widthMM;
@end
@interface QtPaintDevice: OFObject <QtPaintDevice>
@property (readonly, nonatomic) QObject *qObject;
@end
namespace ObjQt {
static OF_INLINE QPaintDevice *
toQt(QtPaintDevice *paintDevice)
{
|