/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
*
*
* or null
*/
public static String getDocumentType(XComponent xComponent)
{
XServiceInfo sInfo = (XServiceInfo) UnoRuntime.queryInterface(
XServiceInfo.class, xComponent);
if (sInfo == null)
{
return "";
}
else if (sInfo.supportsService("com.sun.star.sheet.SpreadsheetDocument"))
{
return "scalc";
}
else if (sInfo.supportsService("com.sun.star.text.TextDocument"))
{
return "swriter";
}
else if (sInfo.supportsService("com.sun.star.drawing.DrawingDocument"))
{
return "sdraw";
}
else if (sInfo.supportsService("com.sun.star.presentation.PresentationDocument"))
{
return "simpress";
}
else if (sInfo.supportsService("com.sun.star.formula.FormulaProperties"))
{
return "smath";
}
else
{
return null;
}
}
/**
* Opens a new document of a given kind
* with arguments
* @return the XComponent Interface of the document
* @param kind the kind of document to load.
* possible:
*
*
* @param Args arguments which passed to the document to load
* @param xMSF the MultiServiceFactory
*/
public static XComponent openNewDoc(XMultiServiceFactory xMSF, String kind,
PropertyValue[] Args)
{
XComponent oDoc = null;
try
{
oDoc = getCLoader(xMSF).loadComponentFromURL("private:factory/" + kind,
"_blank", 0, Args);
}
catch (com.sun.star.uno.Exception e)
{
throw new IllegalArgumentException("Document could not be opened");
}
return oDoc;
} //finish openNewDoc
/**
* loads a document of from a given url
* with arguments
* @return the XComponent Interface of the document
* @param url the URL of the document to load.
* @param Args arguments which passed to the document to load
* @param xMSF the MultiServiceFactory
*/
public static XComponent loadDoc(XMultiServiceFactory xMSF, String url,
PropertyValue[] Args)
{
XComponent oDoc = null;
if (Args == null)
{
Args = new PropertyValue[0];
}
try
{
oDoc = getCLoader(xMSF).loadComponentFromURL(url, "_blank", 0, Args);
}
catch (com.sun.star.uno.Exception e)
{
throw new IllegalArgumentException("Document could not be loaded");
}
bringWindowToFront(oDoc);
return oDoc;
} //finish openNewDoc
/**
* closes a given document
* @param DocumentToClose the document to close
*/
public static void closeDoc(XInterface DocumentToClose)
{
if (DocumentToClose == null)
{
return;
}
String kd = System.getProperty("KeepDocument");
if (kd != null)
{
System.out.println("The property 'KeepDocument' is set and so the document won't be disposed");
return;
}
XModifiable modified = (XModifiable) UnoRuntime.queryInterface(XModifiable.class, DocumentToClose);
XCloseable closer = (XCloseable) UnoRuntime.queryInterface(XCloseable.class, DocumentToClose);
try
{
if (modified != null)
{
modified.setModified(false);
}
closer.close(true);
}
catch (com.sun.star.util.CloseVetoException e)
{
// e.printStackTrace();
System.out.println("Couldn't close document");
}
catch (com.sun.star.lang.DisposedException e)
{
// e.printStackTrace();
System.out.println("Couldn't close document");
}
catch (java.lang.NullPointerException e)
{
// e.printStackTrace();
System.out.println("Couldn't close document");
}
catch (com.sun.star.beans.PropertyVetoException e)
{
// e.printStackTrace();
System.out.println("Couldn't close document");
}
}
/**
* Creates a floating XWindow with the size of X=500 Y=100 width=400 height=600
* @param xMSF the MultiServiceFactory
* @throws lib.StatusException if it is not possible to create a floating window a lib.StatusException was thrown
* @return a floating XWindow
*/
public static XWindowPeer createFloatingWindow(XMultiServiceFactory xMSF)
throws StatusException
{
return createFloatingWindow(xMSF, 500, 100, 400, 600);
}
/**
* Creates a floating XWindow on the given position and size.
* @return a floating XWindow
* @param X the X-Postion of the floating XWindow
* @param Y the Y-Postion of the floating XWindow
* @param width the width of the floating XWindow
* @param height the height of the floating XWindow
* @param xMSF the MultiServiceFactory
* @throws lib.StatusException if it is not possible to create a floating window a lib.StatusException was thrown
*/
public static XWindowPeer createFloatingWindow(XMultiServiceFactory xMSF, int X, int Y, int width, int height)
throws StatusException
{
XInterface oObj = null;
try
{
oObj = (XInterface) xMSF.createInstance("com.sun.star.awt.Toolkit");
}
catch (com.sun.star.uno.Exception e)
{
throw new StatusException("Couldn't get toolkit", e);
}
XToolkit tk = (XToolkit) UnoRuntime.queryInterface(
XToolkit.class, oObj);
WindowDescriptor descriptor = new com.sun.star.awt.WindowDescriptor();
descriptor.Type = com.sun.star.awt.WindowClass.TOP;
descriptor.WindowServiceName = "modelessdialog";
descriptor.ParentIndex = -1;
Rectangle bounds = new com.sun.star.awt.Rectangle();
bounds.X = X;
bounds.Y = Y;
bounds.Width = width;
bounds.Height = height;
descriptor.Bounds = bounds;
descriptor.WindowAttributes = (com.sun.star.awt.WindowAttribute.BORDER +
com.sun.star.awt.WindowAttribute.MOVEABLE +
com.sun.star.awt.WindowAttribute.SIZEABLE +
com.sun.star.awt.WindowAttribute.CLOSEABLE +
com.sun.star.awt.VclWindowPeerAttribute.CLIPCHILDREN);
XWindowPeer xWindow = null;
try
{
xWindow = tk.createWindow(descriptor);
}
catch (com.sun.star.lang.IllegalArgumentException e)
{
throw new StatusException("Could not create window", e);
}
return xWindow;
}
/**
* zoom to have a view over the hole page
* @param xDoc the document to zoom
*/
public static void zoomToEntirePage(XInterface xDoc)
{
try
{
XModel xMod = (XModel) UnoRuntime.queryInterface(XModel.class, xDoc);
XInterface oCont = xMod.getCurrentController();
XViewSettingsSupplier oVSSupp = (XViewSettingsSupplier) UnoRuntime.queryInterface(XViewSettingsSupplier.class, oCont);
XInterface oViewSettings = oVSSupp.getViewSettings();
XPropertySet oViewProp = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, oViewSettings);
oViewProp.setPropertyValue("ZoomType",
new Short(com.sun.star.view.DocumentZoomType.ENTIRE_PAGE));
utils.shortWait(5000);
}
catch (Exception e)
{
System.out.println("Could not zoom to entire page: " + e.toString());
}
}
/**
* This function docks the Stylist onto the right side of the window.
* Since the svt.viewoptions cache the view configuration at start up * the chage of the docking will be effective at a restart. * @param xMSF the XMultiServiceFactory */ public static void dockStylist(XMultiServiceFactory xMSF) { // prepare Window-Settings try { ConfigHelper aConfig = new ConfigHelper(xMSF, "org.openoffice.Office.Views", false); // Is node "5539" (slot-id for navigator) available? If not, insert it XNameReplace x5539 = aConfig.getOrInsertGroup("Windows", "5539"); aConfig.updateGroupProperty( "Windows", "5539", "WindowState", "952,180,244,349;1;0,0,0,0;"); aConfig.insertOrUpdateExtensibleGroupProperty( "Windows", "5539", "UserData", "Data", "V2,V,0,AL:(5,16,0/0/244/349,244;610)"); // Is node "SplitWindow2" available? If not, instert it. aConfig.getOrInsertGroup("Windows", "SplitWindow2"); aConfig.insertOrUpdateExtensibleGroupProperty( "Windows", "SplitWindow2", "UserData", "UserItem", "V1,2,1,0,5539"); aConfig.flush(); aConfig = null; } catch (com.sun.star.uno.Exception e) { e.printStackTrace(); } } /** * Due to typo deprecated * @param xModel * @deprecated */ @Deprecated public static void bringWindowToFromt(XModel xModel) { bringWindowToFront(xModel); } /** * This function brings a document to the front.
* NOTE: it is not possible to change the window order of your Window-Manager!! * Only the order of Office documents are changeable. * @param xModel the XModel of the document to bring to top */ public static void bringWindowToFront(XModel xModel) { // System.out.println("DEBUG: bring to front xModel"); XTopWindow xTopWindow = (XTopWindow) UnoRuntime.queryInterface( XTopWindow.class, xModel.getCurrentController().getFrame().getContainerWindow()); xTopWindow.toFront(); } public static void bringWindowToFront(XComponent xComponent) { // System.out.println("DEBUG: bring to front xComponent"); XModel xModel = (XModel) UnoRuntime.queryInterface(XModel.class, xComponent); if (xModel != null) { bringWindowToFront(xModel); } } }