summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2006-04-26 14:57:18 +0000
committerSilenio Quarti <silenio>2006-04-26 14:57:18 +0000
commit8f00f299b7757fe42d6925916d2c9d689cd31e9d (patch)
treea2b30ed55edfd95075d497c35f2e7db327b62b1b /bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java
parent36ded620c7508f4cbe34e3f788ea5ed8718a3698 (diff)
downloadeclipse.platform.swt-8f00f299b7757fe42d6925916d2c9d689cd31e9d.tar.gz
eclipse.platform.swt-8f00f299b7757fe42d6925916d2c9d689cd31e9d.tar.xz
eclipse.platform.swt-8f00f299b7757fe42d6925916d2c9d689cd31e9d.zip
37706 - Support native theme drawing API in SWT (internal)
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java b/bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java
new file mode 100644
index 0000000000..8581329112
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT Theme/win32/org/eclipse/swt/internal/theme/RangeDrawData.java
@@ -0,0 +1,13 @@
+package org.eclipse.swt.internal.theme;
+
+import org.eclipse.swt.graphics.*;
+
+public class RangeDrawData extends DrawData {
+ public int selection;
+ public int minimum;
+ public int maximum;
+
+int getSelection(Point position, Rectangle bounds) {
+ return 0;
+}
+}