summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java
new file mode 100644
index 0000000000..c64f35c7a8
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSEPSImageRep.java
@@ -0,0 +1,38 @@
+package org.eclipse.swt.internal.cocoa;
+
+public class NSEPSImageRep extends NSImageRep {
+
+public NSEPSImageRep() {
+ super();
+}
+
+public NSEPSImageRep(int id) {
+ super(id);
+}
+
+public NSData EPSRepresentation() {
+ int result = OS.objc_msgSend(this.id, OS.sel_EPSRepresentation);
+ return result != 0 ? new NSData(result) : null;
+}
+
+public NSRect boundingBox() {
+ NSRect result = new NSRect();
+ OS.objc_msgSend_stret(result, this.id, OS.sel_boundingBox);
+ return result;
+}
+
+public static id imageRepWithData(NSData epsData) {
+ int result = OS.objc_msgSend(OS.class_NSEPSImageRep, OS.sel_imageRepWithData_1, epsData != null ? epsData.id : 0);
+ return result != 0 ? new id(result) : null;
+}
+
+public id initWithData(NSData epsData) {
+ int result = OS.objc_msgSend(this.id, OS.sel_initWithData_1, epsData != null ? epsData.id : 0);
+ return result != 0 ? new id(result) : null;
+}
+
+public void prepareGState() {
+ OS.objc_msgSend(this.id, OS.sel_prepareGState);
+}
+
+}