File tree 2 files changed +21
-0
lines changed
binaries/org.eclipse.swt.win32.win32.x86_64/.settings
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 581
581
</message_arguments >
582
582
</filter >
583
583
</resource >
584
+ <resource path =" Eclipse SWT/common/org/eclipse/swt/graphics/ImageGcDrawer.java" type =" org.eclipse.swt.graphics.ImageGcDrawer" >
585
+ <filter id =" 404000815" >
586
+ <message_arguments >
587
+ <message_argument value =" org.eclipse.swt.graphics.ImageGcDrawer" />
588
+ <message_argument value =" getGcStyle()" />
589
+ </message_arguments >
590
+ </filter >
591
+ </resource >
584
592
<resource path =" Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoaderListener.java" type =" org.eclipse.swt.graphics.ImageLoaderListener" >
585
593
<filter id =" 576720909" >
586
594
<message_arguments >
Original file line number Diff line number Diff line change 13
13
*******************************************************************************/
14
14
package org .eclipse .swt .graphics ;
15
15
16
+ import org .eclipse .swt .*;
17
+
16
18
/**
17
19
* Interface to provide a callback mechanism to draw on different GC instances
18
20
* depending on the zoom the image will be used for. A common use case is when
@@ -45,4 +47,15 @@ public interface ImageGcDrawer {
45
47
default void postProcess (ImageData imageData ) {
46
48
}
47
49
50
+ /**
51
+ * Returns the GC style used when creating the GC instance.
52
+ * Default implementation returns <code>SWT.NONE</code>.
53
+ *
54
+ * @return the GC style constant
55
+ *
56
+ * @since 3.130
57
+ */
58
+ default int getGcStyle () {
59
+ return SWT .NONE ;
60
+ }
48
61
}
You can’t perform that action at this time.
0 commit comments