Add more beanshell samples
For Writer & Calc Change-Id: I85815acf11b750ec76d138ff8fe72cc4791e9038 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125689 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
This commit is contained in:
parent
324daa38a8
commit
acd820a47e
13 changed files with 328 additions and 0 deletions
|
@ -10,6 +10,12 @@
|
||||||
$(eval $(call gb_Package_Package,scripting_ScriptsBeanShell,$(SRCDIR)/scripting/examples))
|
$(eval $(call gb_Package_Package,scripting_ScriptsBeanShell,$(SRCDIR)/scripting/examples))
|
||||||
|
|
||||||
$(eval $(call gb_Package_add_files_with_dir,scripting_ScriptsBeanShell,$(LIBO_SHARE_FOLDER)/Scripts,\
|
$(eval $(call gb_Package_add_files_with_dir,scripting_ScriptsBeanShell,$(LIBO_SHARE_FOLDER)/Scripts,\
|
||||||
|
beanshell/Calc/CopyRange.bsh \
|
||||||
|
beanshell/Calc/FixView.bsh \
|
||||||
|
beanshell/Calc/InsertSheet.bsh \
|
||||||
|
beanshell/Calc/parcel-descriptor.xml \
|
||||||
|
beanshell/Calc/ProtectSheet.bsh \
|
||||||
|
beanshell/Calc/SelectCell.bsh \
|
||||||
beanshell/Capitalise/capitalise.bsh \
|
beanshell/Capitalise/capitalise.bsh \
|
||||||
beanshell/Capitalise/parcel-descriptor.xml \
|
beanshell/Capitalise/parcel-descriptor.xml \
|
||||||
beanshell/HelloWorld/helloworld.bsh \
|
beanshell/HelloWorld/helloworld.bsh \
|
||||||
|
@ -22,6 +28,12 @@ $(eval $(call gb_Package_add_files_with_dir,scripting_ScriptsBeanShell,$(LIBO_SH
|
||||||
beanshell/MemoryUsage/parcel-descriptor.xml \
|
beanshell/MemoryUsage/parcel-descriptor.xml \
|
||||||
beanshell/WordCount/parcel-descriptor.xml \
|
beanshell/WordCount/parcel-descriptor.xml \
|
||||||
beanshell/WordCount/wordcount.bsh \
|
beanshell/WordCount/wordcount.bsh \
|
||||||
|
beanshell/Writer/ChangeFont.bsh \
|
||||||
|
beanshell/Writer/ChangeParaAdjust.bsh \
|
||||||
|
beanshell/Writer/InsertTable.bsh \
|
||||||
|
beanshell/Writer/InsertText.bsh \
|
||||||
|
beanshell/Writer/parcel-descriptor.xml \
|
||||||
|
beanshell/Writer/SetText.bsh \
|
||||||
))
|
))
|
||||||
|
|
||||||
# vim: set noet sw=4 ts=4:
|
# vim: set noet sw=4 ts=4:
|
||||||
|
|
39
scripting/examples/beanshell/Calc/CopyRange.bsh
Normal file
39
scripting/examples/beanshell/Calc/CopyRange.bsh
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
* 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.sheet.XSpreadsheetDocument;
|
||||||
|
import com.sun.star.sheet.XSpreadsheet;
|
||||||
|
import com.sun.star.sheet.XSpreadsheets;
|
||||||
|
import com.sun.star.container.XIndexAccess;
|
||||||
|
import com.sun.star.sheet.XCellAddressable;
|
||||||
|
import com.sun.star.sheet.XCellRangeAddressable;
|
||||||
|
import com.sun.star.table.CellAddress;
|
||||||
|
import com.sun.star.table.CellRangeAddress;
|
||||||
|
import com.sun.star.sheet.XCellRangeMovement;
|
||||||
|
|
||||||
|
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||||
|
if ( oDoc == null )
|
||||||
|
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||||
|
|
||||||
|
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
|
||||||
|
XSpreadsheets xSheets = xDoc.getSheets();
|
||||||
|
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
|
||||||
|
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
|
||||||
|
|
||||||
|
XCellRangeAddressable xAddr1 = UnoRuntime.queryInterface(XCellRangeAddressable.class, xSheet.getCellRangeByName("A1:A10") );
|
||||||
|
CellRangeAddress source = xAddr1.getRangeAddress();
|
||||||
|
|
||||||
|
XCellAddressable xAddr2 = UnoRuntime.queryInterface(XCellAddressable.class, xSheet.getCellRangeByName("B1").getCellByPosition( 0, 0 ) );
|
||||||
|
CellAddress target = xAddr2.getCellAddress();
|
||||||
|
|
||||||
|
XCellRangeMovement xCRM = UnoRuntime.queryInterface(XCellRangeMovement.class, xSheet);
|
||||||
|
xCRM.copyRange(target, source);
|
||||||
|
|
||||||
|
return 0;
|
34
scripting/examples/beanshell/Calc/FixView.bsh
Normal file
34
scripting/examples/beanshell/Calc/FixView.bsh
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/*
|
||||||
|
* 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.sheet.XSpreadsheetDocument;
|
||||||
|
import com.sun.star.sheet.XSpreadsheet;
|
||||||
|
import com.sun.star.sheet.XSpreadsheets;
|
||||||
|
import com.sun.star.container.XIndexAccess;
|
||||||
|
import com.sun.star.sheet.XViewFreezable;
|
||||||
|
import com.sun.star.sheet.XViewPane;
|
||||||
|
|
||||||
|
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||||
|
if ( oDoc == null )
|
||||||
|
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||||
|
|
||||||
|
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
|
||||||
|
XSpreadsheets xSheets = xDoc.getSheets();
|
||||||
|
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
|
||||||
|
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
|
||||||
|
|
||||||
|
XViewFreezable xFreeze = UnoRuntime.queryInterface(XViewFreezable.class, oDoc.getCurrentController() );
|
||||||
|
xFreeze.freezeAtPosition(2, 3);
|
||||||
|
|
||||||
|
XViewPane xViewPane = UnoRuntime.queryInterface(XViewPane.class, oDoc.getCurrentController() );
|
||||||
|
xViewPane.setFirstVisibleColumn(12);
|
||||||
|
xViewPane.setFirstVisibleRow(149);
|
||||||
|
|
||||||
|
return 0;
|
25
scripting/examples/beanshell/Calc/InsertSheet.bsh
Normal file
25
scripting/examples/beanshell/Calc/InsertSheet.bsh
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
/*
|
||||||
|
* 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.sheet.XSpreadsheetDocument;
|
||||||
|
import com.sun.star.sheet.XSpreadsheets;
|
||||||
|
import com.sun.star.lang.XMultiServiceFactory;
|
||||||
|
|
||||||
|
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||||
|
if ( oDoc == null )
|
||||||
|
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||||
|
|
||||||
|
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
|
||||||
|
XSpreadsheets xSheets = xDoc.getSheets();
|
||||||
|
|
||||||
|
xSheets.insertNewByName("First new sheet", (short)0);
|
||||||
|
xSheets.insertNewByName("Second new sheet", (short)1);
|
||||||
|
|
||||||
|
return 0;
|
30
scripting/examples/beanshell/Calc/ProtectSheet.bsh
Normal file
30
scripting/examples/beanshell/Calc/ProtectSheet.bsh
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* 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.sheet.XSpreadsheetDocument;
|
||||||
|
import com.sun.star.sheet.XSpreadsheet;
|
||||||
|
import com.sun.star.sheet.XSpreadsheets;
|
||||||
|
import com.sun.star.container.XIndexAccess;
|
||||||
|
import com.sun.star.util.XProtectable;
|
||||||
|
|
||||||
|
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||||
|
if ( oDoc == null )
|
||||||
|
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||||
|
|
||||||
|
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class, oDoc);
|
||||||
|
XSpreadsheets xSheets = xDoc.getSheets();
|
||||||
|
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
|
||||||
|
XSpreadsheet xSheet = UnoRuntime.queryInterface(XSpreadsheet.class, xSheetsIA.getByIndex(0));
|
||||||
|
XProtectable xProtectable = UnoRuntime.queryInterface(XProtectable.class, xSheet);
|
||||||
|
xProtectable.protect("myPassword");
|
||||||
|
|
||||||
|
//xProtectable.unprotect("myPassword");
|
||||||
|
|
||||||
|
return 0;
|
30
scripting/examples/beanshell/Calc/SelectCell.bsh
Normal file
30
scripting/examples/beanshell/Calc/SelectCell.bsh
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* 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.sheet.XSpreadsheetDocument;
|
||||||
|
import com.sun.star.sheet.XSpreadsheet;
|
||||||
|
import com.sun.star.sheet.XSpreadsheets;
|
||||||
|
import com.sun.star.view.XSelectionSupplier;
|
||||||
|
import com.sun.star.container.XIndexAccess;
|
||||||
|
import com.sun.star.table.XCellRange;
|
||||||
|
|
||||||
|
oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
|
||||||
|
if ( oDoc == null )
|
||||||
|
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||||
|
|
||||||
|
XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
|
||||||
|
XSpreadsheets xSheets = xDoc.getSheets();
|
||||||
|
XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
|
||||||
|
XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
|
||||||
|
XCellRange xResultRange = xSheet.getCellRangeByName("B20");
|
||||||
|
XSelectionSupplier xSel = UnoRuntime.queryInterface(XSelectionSupplier.class, oDoc.getCurrentController());
|
||||||
|
xSel.select(xResultRange);
|
||||||
|
|
||||||
|
return 0;
|
2
scripting/examples/beanshell/Calc/parcel-descriptor.xml
Normal file
2
scripting/examples/beanshell/Calc/parcel-descriptor.xml
Normal file
|
@ -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="SelectCell.bsh"/><description>SelectCell.bsh</description></locale><logicalname value="SelectCell.bsh"/><functionname value="SelectCell.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="InsertSheet.bsh"/><description>InsertSheet.bsh</description></locale><logicalname value="InsertSheet.bsh"/><functionname value="InsertSheet.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="ProtectSheet.bsh"/><description>ProtectSheet.bsh</description></locale><logicalname value="ProtectSheet.bsh"/><functionname value="ProtectSheet.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="CopyRange.bsh"/><description>CopyRange.bsh</description></locale><logicalname value="CopyRange.bsh"/><functionname value="CopyRange.bsh"/></script><script language="BeanShell"><locale lang="en"><displayname value="FixView.bsh"/><description>FixView.bsh</description></locale><logicalname value="FixView.bsh"/><functionname value="FixView.bsh"/></script></parcel>
|
36
scripting/examples/beanshell/Writer/ChangeFont.bsh
Normal file
36
scripting/examples/beanshell/Writer/ChangeFont.bsh
Normal file
|
@ -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;
|
37
scripting/examples/beanshell/Writer/ChangeParaAdjust.bsh
Normal file
37
scripting/examples/beanshell/Writer/ChangeParaAdjust.bsh
Normal file
|
@ -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;
|
32
scripting/examples/beanshell/Writer/InsertTable.bsh
Normal file
32
scripting/examples/beanshell/Writer/InsertTable.bsh
Normal file
|
@ -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); //vier Reihen, drei Spalten
|
||||||
|
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;
|
28
scripting/examples/beanshell/Writer/InsertText.bsh
Normal file
28
scripting/examples/beanshell/Writer/InsertText.bsh
Normal file
|
@ -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;
|
21
scripting/examples/beanshell/Writer/SetText.bsh
Normal file
21
scripting/examples/beanshell/Writer/SetText.bsh
Normal file
|
@ -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>
|
Loading…
Reference in a new issue