/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * The Contents of this file are made available subject to the terms of * the BSD license. * * Copyright 2000, 2010 Oracle and/or its affiliates. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Sun Microsystems, Inc. nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
*************************************************************************/
// comment: Step 1: get the Desktop object from the office // Step 2: open an empty text document // Step 3: enter an example text // Step 4: get some text attributes // Step 5: check the PropertyState from the selection
// Chapter 4.1.4 Hard formatting
import com.sun.star.uno.UnoRuntime;
publicclass HardFormatting {
publicstaticvoid main(String args[]) { // You need the desktop to create a document // The getDesktop method does the UNO bootstrapping, gets the // remote service manager and the desktop object.
com.sun.star.frame.XDesktop xDesktop = null;
xDesktop = getDesktop();
// the text interface contains all methods and properties to // manipulate the content from a text document
com.sun.star.text.XText xText = null;
xText = xTextDocument.getText();
String sMyText = "A very short paragraph for illustration only";
// you can travel with the cursor through the text document. // you travel only at the model, not at the view. The cursor that you can // see on the document doesn't change the position
com.sun.star.text.XTextCursor xTextCursor = null;
xTextCursor = xTextDocument.getText().createTextCursor();
// BEGIN: 'Hard formatting' // the text range not the cursor contains the 'parastyle' property
xTextRange = xText.getEnd();
xPropertySet = UnoRuntime.queryInterface(
com.sun.star.beans.XPropertySet.class, xTextRange);
// create a paragraph cursor to travel through the paragraphs
com.sun.star.text.XParagraphCursor xParagraphCursor = null;
xParagraphCursor = UnoRuntime.queryInterface(
com.sun.star.text.XParagraphCursor.class, xTextRange);
// create a WordCursor to travel into the paragraph
com.sun.star.text.XWordCursor xWordCursor = null;
xWordCursor = UnoRuntime.queryInterface(
com.sun.star.text.XWordCursor.class, xTextRange);
// the PropertySet from the cursor contains the text attributes
xPropertySet = UnoRuntime.queryInterface(
com.sun.star.beans.XPropertySet.class, xWordCursor);
System.out.println( "Parastyle : "
+xPropertySet.getPropertyValue("ParaStyleName").toString()
+ "\nFontname : "
+ xPropertySet.getPropertyValue("CharFontName").toString()
+ "\nWeight : "
+ xPropertySet.getPropertyValue("CharWeight").toString() );
// the PropertyState contains information where the attribute is set, // is a text part hard formatted or not.
com.sun.star.beans.XPropertyState xPropertyState = null;
xPropertyState = UnoRuntime.queryInterface(
com.sun.star.beans.XPropertyState.class, xWordCursor);
System.out.println("Set the default value on the selection");
xPropertyStateValue = xPropertyState.getPropertyState("CharWeight");
checkPropertyState(xWordCursor, xPropertyStateValue);
// END: 'Hard formatting' Section from the Cookbook
} catch( Exception e) {
e.printStackTrace(System.err);
System.exit(1);
}
System.out.println("Done");
System.exit(0);
}
publicstaticvoid checkPropertyState(
com.sun.star.text.XWordCursor xWordCursor,
com.sun.star.beans.PropertyState xPropertyStateValue )
{ switch( xPropertyStateValue.getValue() ) { case com.sun.star.beans.PropertyState.DIRECT_VALUE_value: {
System.out.println( "-> The selection '"
+ xWordCursor.getString()
+ "' completely hard formatted" ); break;
}
case com.sun.star.beans.PropertyState.DEFAULT_VALUE_value: {
System.out.println( "-> The selection '"
+ xWordCursor.getString()
+ "' isn't hard formatted" ); break;
}
case com.sun.star.beans.PropertyState.AMBIGUOUS_VALUE_value: {
System.out.println( "-> The selection '"
+ xWordCursor.getString()
+ "' isn't completely hard formatted" ); break;
}
default:
System.out.println( "No PropertyState found" );
}
}
// get the remote office component context
xContext = com.sun.star.comp.helper.Bootstrap.bootstrap();
// get the remote office service manager
xMCF = xContext.getServiceManager(); if( xMCF != null ) {
System.out.println("Connected to a running office ...");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.