summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDuong Nguyen <dnguyen>2008-06-02 22:10:21 +0000
committerDuong Nguyen <dnguyen>2008-06-02 22:10:21 +0000
commitfe061e9b1bc7963cb7dee3674d38e0621c0dbb72 (patch)
tree82da468fead4f4fffb1c2a84787ad33f78067404
parent69fc4c0eaf3d9fecc18c5798d7c42b083086c0d7 (diff)
downloadeclipse.platform.swt-fe061e9b1bc7963cb7dee3674d38e0621c0dbb72.tar.gz
eclipse.platform.swt-fe061e9b1bc7963cb7dee3674d38e0621c0dbb72.tar.xz
eclipse.platform.swt-fe061e9b1bc7963cb7dee3674d38e0621c0dbb72.zip
javadoc
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java
index 98f74ace2a..e004344c89 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java
@@ -683,6 +683,14 @@ private SIZE getExtent() {
}
return xFormHimetricToPixels(sizel);
}
+/**
+ * Returns the indent value that would be used to compute the clipping area
+ * of the active X object.
+ *
+ * NOTE: The indent value is no longer being used by the client site.
+ *
+ * @return the rectangle representing the indent
+ */
public Rectangle getIndent() {
return new Rectangle(indent.left, indent.right, indent.top, indent.bottom);
}
@@ -790,6 +798,14 @@ private int GetWindowContext(int /*long*/ ppFrame, int /*long*/ ppDoc, int /*lon
return COM.S_OK;
}
+/**
+ * Returns whether ole document is dirty by checking whether the content
+ * of the file representing the document is dirty.
+ *
+ * @return <code>true</code> if the document has been modified,
+ * <code>false</code> otherwise.
+ * @since 3.1
+ */
public boolean isDirty() {
/*
* Note: this method must return true unless it is absolutely clear that the
@@ -1065,6 +1081,17 @@ protected void releaseObjectInterfaces() {
COM.CoFreeUnusedLibraries();
}
+/**
+ * Saves the document to the specified file and includes OLE specific information if specified.
+ * This method must <b>only</b> be used for files that have an OLE Storage format. For example,
+ * a word file edited with Word.Document should be saved using this method because there is
+ * formating information that should be stored in the OLE specific Storage format.
+ *
+ * @param file the file to which the changes are to be saved
+ * @param includeOleInfo the flag to indicate whether OLE specific information should be saved.
+ *
+ * @return true if the save was successful
+ */
public boolean save(File file, boolean includeOleInfo) {
if (includeOleInfo)
return saveToStorageFile(file);
@@ -1265,6 +1292,11 @@ private void setExtent(int width, int height){
objIOleObject.Close(COM.OLECLOSE_SAVEIFDIRTY);
}
}
+/**
+ * The indent value is no longer being used by the client site.
+ *
+ * @param newIndent the rectangle representing the indent amount
+ */
public void setIndent(Rectangle newIndent) {
indent = new RECT();
indent.left = newIndent.x;