Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java161
1 files changed, 161 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java
new file mode 100755
index 0000000000..c1c8c1fbd6
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java
@@ -0,0 +1,161 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.dnd;
+
+import org.eclipse.swt.internal.win32.*;
+import org.eclipse.swt.internal.ole.win32.*;
+
+final class OleEnumFORMATETC {
+
+ private COMObject iUnknown;
+ private COMObject iEnumFORMATETC;
+
+ private int refCount;
+ private int index;
+
+ private FORMATETC[] formats;
+
+OleEnumFORMATETC() {
+
+ createCOMInterfaces();
+
+}
+int AddRef() {
+ refCount++;
+ return refCount;
+}
+private void createCOMInterfaces() {
+ // register each of the interfaces that this object implements
+ iUnknown = new COMObject(new int[] {2, 0, 0}){
+ public int /*long*/ method0(int /*long*/[] args) {return QueryInterface(args[0], args[1]);}
+ public int /*long*/ method1(int /*long*/[] args) {return AddRef();}
+ public int /*long*/ method2(int /*long*/[] args) {return Release();}
+ };
+ iEnumFORMATETC = new COMObject(new int[] {2, 0, 0, 3, 1, 0, 1}){
+ public int /*long*/ method0(int /*long*/[] args) {return QueryInterface(args[0], args[1]);}
+ public int /*long*/ method1(int /*long*/[] args) {return AddRef();}
+ public int /*long*/ method2(int /*long*/[] args) {return Release();}
+ public int /*long*/ method3(int /*long*/[] args) {return Next((int)/*64*/args[0], args[1], args[2]);}
+ public int /*long*/ method4(int /*long*/[] args) {return Skip((int)/*64*/args[0]);}
+ public int /*long*/ method5(int /*long*/[] args) {return Reset();}
+ // method6 Clone - not implemented
+ };
+}
+private void disposeCOMInterfaces() {
+
+ if (iUnknown != null)
+ iUnknown.dispose();
+ iUnknown = null;
+
+ if (iEnumFORMATETC != null)
+ iEnumFORMATETC.dispose();
+ iEnumFORMATETC = null;
+}
+int /*long*/ getAddress() {
+ return iEnumFORMATETC.getAddress();
+}
+private FORMATETC[] getNextItems(int numItems){
+
+ if (formats == null || numItems < 1) return null;
+
+ int endIndex = index + numItems - 1;
+ if (endIndex > (formats.length - 1)) endIndex = formats.length - 1;
+ if (index > endIndex) return null;
+
+ FORMATETC[] items = new FORMATETC[endIndex - index + 1];
+ for (int i = 0; i < items.length; i++){
+ items[i] = formats[index];
+ index++;
+ }
+
+ return items;
+}
+private int Next(int celt, int /*long*/ rgelt, int /*long*/ pceltFetched) {
+ /* Retrieves the next celt items in the enumeration sequence.
+ If there are fewer than the requested number of elements left in the sequence,
+ it retrieves the remaining elements.
+ The number of elements actually retrieved is returned through pceltFetched
+ (unless the caller passed in NULL for that parameter).
+ */
+
+ if (rgelt == 0) return COM.E_INVALIDARG;
+ if (pceltFetched == 0 && celt != 1) return COM.E_INVALIDARG;
+
+ FORMATETC[] nextItems = getNextItems(celt);
+ if (nextItems != null) {
+ for (int i = 0; i < nextItems.length; i++) {
+ COM.MoveMemory(rgelt + i*FORMATETC.sizeof, nextItems[i], FORMATETC.sizeof);
+ }
+
+ if (pceltFetched != 0)
+ COM.MoveMemory(pceltFetched, new int[] {nextItems.length}, 4);
+
+ if (nextItems.length == celt) return COM.S_OK;
+
+ } else {
+ if (pceltFetched != 0)
+ COM.MoveMemory(pceltFetched, new int[] {0}, 4);
+ COM.MoveMemory(rgelt, new FORMATETC(), FORMATETC.sizeof);
+
+ }
+ return COM.S_FALSE;
+}
+private int QueryInterface(int /*long*/ riid, int /*long*/ ppvObject) {
+
+ if (riid == 0 || ppvObject == 0) return COM.E_NOINTERFACE;
+
+ GUID guid = new GUID();
+ COM.MoveMemory(guid, riid, GUID.sizeof);
+
+ if (COM.IsEqualGUID(guid, COM.IIDIUnknown)) {
+ COM.MoveMemory(ppvObject, new int /*long*/[] {iUnknown.getAddress()}, OS.PTR_SIZEOF);
+ AddRef();
+ return COM.S_OK;
+ }
+ if (COM.IsEqualGUID(guid, COM.IIDIEnumFORMATETC)) {
+ COM.MoveMemory(ppvObject, new int /*long*/[] {iEnumFORMATETC.getAddress()}, OS.PTR_SIZEOF);
+ AddRef();
+ return COM.S_OK;
+ }
+ COM.MoveMemory(ppvObject, new int /*long*/[] {0}, OS.PTR_SIZEOF);
+ return COM.E_NOINTERFACE;
+}
+int Release() {
+ refCount--;
+
+ if (refCount == 0) {
+ disposeCOMInterfaces();
+ COM.CoFreeUnusedLibraries();
+ }
+
+ return refCount;
+}
+private int Reset() {
+ //Resets the enumeration sequence to the beginning.
+ index = 0;
+ return COM.S_OK;
+}
+void setFormats(FORMATETC[] newFormats) {
+ formats = newFormats;
+ index = 0;
+}
+private int Skip(int celt) {
+ //Skips over the next specified number of elements in the enumeration sequence.
+ if (celt < 1 ) return COM.E_INVALIDARG;
+
+ index += celt;
+ if (index > (formats.length - 1)){
+ index = formats.length - 1;
+ return COM.S_FALSE;
+ }
+ return COM.S_OK;
+}
+}

Back to the top