update
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import com.sun.star.beans.XPropertySet;
|
||||
import com.sun.star.lang.XServiceInfo;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.frame.XModel;
|
||||
import com.sun.star.container.XEnumeration;
|
||||
import com.sun.star.container.XEnumerationAccess;
|
||||
|
||||
import com.sun.star.text.XTextDocument;
|
||||
|
||||
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||
if ( oDoc == null )
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
|
||||
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
|
||||
xText = xTextDoc.getText();
|
||||
XEnumerationAccess xEnumAcc = (XEnumerationAccess)(UnoRuntime.queryInterface(XEnumerationAccess.class, xText));
|
||||
XEnumeration xEnum = xEnumAcc.createEnumeration();
|
||||
while (xEnum.hasMoreElements()) {
|
||||
Object xObj = xEnum.nextElement();
|
||||
XServiceInfo xServiceInfo = (XServiceInfo) UnoRuntime.queryInterface(XServiceInfo.class, xObj);
|
||||
if (xServiceInfo.supportsService("com.sun.star.text.Paragraph")) {
|
||||
XPropertySet xSet = UnoRuntime.queryInterface(XPropertySet.class, xServiceInfo );
|
||||
xSet.setPropertyValue( "CharHeight", 28 );
|
||||
xSet.setPropertyValue( "CharFontName", "Liberation Sans" );
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import com.sun.star.beans.XPropertySet;
|
||||
import com.sun.star.lang.XServiceInfo;
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.frame.XModel;
|
||||
import com.sun.star.container.XEnumeration;
|
||||
import com.sun.star.container.XEnumerationAccess;
|
||||
|
||||
import com.sun.star.text.XTextDocument;
|
||||
import com.sun.star.text.XText;
|
||||
|
||||
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||
if ( oDoc == null )
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
|
||||
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
|
||||
xText = xTextDoc.getText();
|
||||
XEnumerationAccess xEnumAcc = (XEnumerationAccess)(UnoRuntime.queryInterface(XEnumerationAccess.class, xText));
|
||||
XEnumeration xEnum = xEnumAcc.createEnumeration();
|
||||
while (xEnum.hasMoreElements()) {
|
||||
Object xObj = xEnum.nextElement();
|
||||
XServiceInfo xServiceInfo = (XServiceInfo) UnoRuntime.queryInterface(XServiceInfo.class, xObj);
|
||||
if (xServiceInfo.supportsService("com.sun.star.text.Paragraph")) {
|
||||
XPropertySet xSet = UnoRuntime.queryInterface(XPropertySet.class, xServiceInfo );
|
||||
// Set the justification to be center justified
|
||||
xSet.setPropertyValue( "ParaAdjust", com.sun.star.style.ParagraphAdjust.CENTER );
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.frame.XModel;
|
||||
import com.sun.star.lang.XMultiServiceFactory;
|
||||
|
||||
import com.sun.star.text.XTextDocument;
|
||||
import com.sun.star.text.XText;
|
||||
import com.sun.star.text.XTextContent;
|
||||
import com.sun.star.text.XTextTable;
|
||||
|
||||
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||
if ( oDoc == null )
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
|
||||
XMultiServiceFactory xDocMSF = (XMultiServiceFactory) UnoRuntime.queryInterface(XMultiServiceFactory.class, oDoc);
|
||||
Object oTab = xDocMSF.createInstance("com.sun.star.text.TextTable");
|
||||
XTextTable xTextTable = (XTextTable)UnoRuntime.queryInterface(XTextTable.class, oTab);
|
||||
xTextTable.initialize(4,3); // four rows, three columns
|
||||
xTextContent = (XTextContent)UnoRuntime.queryInterface(XTextContent.class, xTextTable);
|
||||
|
||||
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
|
||||
xText = (XText) UnoRuntime.queryInterface(XText.class, xTextDoc.getText());
|
||||
xText.insertTextContent(xText.getEnd(), xTextContent, false);
|
||||
|
||||
return 0;
|
||||
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.frame.XModel;
|
||||
|
||||
import com.sun.star.text.XTextDocument;
|
||||
import com.sun.star.text.XText;
|
||||
import com.sun.star.text.XTextRange;
|
||||
|
||||
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||
if ( oDoc == null )
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
|
||||
String sText = "This text is inserted before the existing text\n" +
|
||||
"Here comes a second line\n";
|
||||
|
||||
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
|
||||
xText = xTextDoc.getText();
|
||||
xTextRange = xText.getEnd();
|
||||
xTextRange.setString(sText);
|
||||
|
||||
return 0;
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import com.sun.star.uno.UnoRuntime;
|
||||
import com.sun.star.frame.XModel;
|
||||
|
||||
import com.sun.star.text.XTextDocument;
|
||||
|
||||
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||
if ( oDoc == null )
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
|
||||
xTextDoc = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class,oDoc);
|
||||
xTextDoc.getText().setString("Hello from Beanshell!");
|
||||
|
||||
return 0;
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><parcel xmlns:parcel="scripting.dtd" language="BeanShell">
|
||||
<script language="BeanShell"><locale lang="en"><displayname value="InsertText.bsh"/><description>InsertText.bsh</description></locale><logicalname value="InsertText.bsh"/><functionname value="InsertText.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="SetText.bsh"/><description>SetText.bsh</description></locale><logicalname value="SetText.bsh"/><functionname value="SetText.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="InsertTable.bsh"/><description>InsertTable.bsh</description></locale><logicalname value="InsertTable.bsh"/><functionname value="InsertTable.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ChangeParaAdjust.bsh"/><description>ChangeParaAdjust.bsh</description></locale><logicalname value="ChangeParaAdjust.bsh"/><functionname value="ChangeParaAdjust.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ChangeFont.bsh"/><description>ChangeFont.bsh</description></locale><logicalname value="ChangeFont.bsh"/><functionname value="ChangeFont.bsh"/></script></parcel>
|
||||
Reference in New Issue
Block a user