/* * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/** * implements the {@link DocumentTest} interface on top of a spreadsheet document
*/ publicclass WriterDocumentTest extends DocumentTestBase
{ public WriterDocumentTest( final XMultiServiceFactory i_orb ) throws com.sun.star.uno.Exception
{ super( i_orb, DocumentType.WRITER );
}
public String getDocumentDescription()
{ return"text document";
}
publicvoid verifyInitialDocumentState() throws com.sun.star.uno.Exception
{ final XTextDocument textDoc = UnoRuntime.queryInterface( XTextDocument.class, getDocument().getDocument() ); final XText docText = textDoc.getText();
assertEquals( "document should be empty", "", docText.getString() );
}
publicvoid verifySingleModificationDocumentState() throws com.sun.star.uno.Exception
{ final XTextDocument textDoc = UnoRuntime.queryInterface( XTextDocument.class, getDocument().getDocument() ); final XText docText = textDoc.getText();
assertEquals( "blind text not found", s_blindText, docText.getString() );
}
publicint doMultipleModifications() throws com.sun.star.uno.Exception
{ final XTextDocument textDoc = UnoRuntime.queryInterface( XTextDocument.class, getDocument().getDocument() ); final XText docText = textDoc.getText();
int expectedUndoActions = 0;
// create a cursor final XTextCursor cursor = docText.createTextCursor();
// create a table final XTextTable textTable = UnoRuntime.queryInterface( XTextTable.class,
getDocument().createInstance( "com.sun.star.text.TextTable" ) );
textTable.initialize( 3, 3 ); final XPropertySet tableProps = UnoRuntime.queryInterface( XPropertySet.class, textTable );
tableProps.setPropertyValue( "BackColor", 0xCCFF44 );
// insert the table into the doc
docText.insertTextContent( cursor, textTable, false );
++expectedUndoActions; //FIXME this will create 2 actions! currently the event is sent for every individual action; should it be sent for top-level actions only? how many internal actions are created is an implementation detail!
++expectedUndoActions;
// write some content into the center cell final XCellRange cellRange = UnoRuntime.queryInterface( XCellRange.class, textTable ); final XCell centerCell = cellRange.getCellByPosition( 1, 1 ); final XTextRange cellText = UnoRuntime.queryInterface( XTextRange.class, centerCell );
cellText.setString( "Undo Manager API Test" );
++expectedUndoActions;
// give it another color final XPropertySet cellProps = UnoRuntime.queryInterface( XPropertySet.class, centerCell );
cellProps.setPropertyValue( "BackColor", 0x44CCFF );
++expectedUndoActions;
return expectedUndoActions;
}
privatestaticfinal String s_blindText = "Lorem ipsum dolor. Sit amet penatibus. A cum turpis. Aenean ac eu. " + "Ligula est urna nulla vestibulum ullamcorper. Nec sit in amet tincidunt mus. " + "Tellus sagittis mi. Suscipit cursus in vestibulum in eros ipsum felis cursus lectus " + "nunc quis condimentum in risus nec wisi aenean luctus hendrerit magna habitasse commodo orci. " + "Nisl etiam quis. Vestibulum justo eleifend aliquet luctus sed turpis volutpat ullamcorper " + "aliquam penatibus sagittis pede tincidunt egestas. Nibh massa lectus. Sem mattis purus morbi " + "scelerisque turpis donec urna phasellus. Quis at lacus. Viverra mauris mollis. " + "Dolor tincidunt condimentum.";
}
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 und die Messung sind noch experimentell.