1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
|
/*************************************************************************
*
* 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
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
using System;
using unoidl.com.sun.star.lang;
using unoidl.com.sun.star.uno;
using unoidl.com.sun.star.frame;
using unoidl.com.sun.star.util;
namespace cliversion
{
public class Version
{
public Version()
{
try
{
// System.Diagnostics.Debugger.Launch();
//link with cli_ure.dll
uno.util.WeakBase wb = new uno.util.WeakBase();
using ( SpreadsheetSample aSample = new SpreadsheetSample() )
{
aSample.doCellRangeSamples();
aSample.terminate();
}
}
catch (System.Exception )
{
//This exception is thrown if we link with a library which is not
//available
throw;
}
}
}
class SpreadsheetSample: SpreadsheetDocHelper
{
public SpreadsheetSample()
{
}
/** All samples regarding the service com.sun.star.sheet.SheetCellRange. */
public void doCellRangeSamples()
{
unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 );
unoidl.com.sun.star.table.XCellRange xCellRange = null;
unoidl.com.sun.star.beans.XPropertySet xPropSet = null;
unoidl.com.sun.star.table.CellRangeAddress aRangeAddress = null;
// Preparation
setFormula( xSheet, "B5", "First cell" );
setFormula( xSheet, "B6", "Second cell" );
// Get cell range B5:B6 by position - (column, row, column, row)
xCellRange = xSheet.getCellRangeByPosition( 1, 4, 1, 5 );
// --- Change cell range properties. ---
xPropSet = (unoidl.com.sun.star.beans.XPropertySet) xCellRange;
// from com.sun.star.styles.CharacterProperties
xPropSet.setPropertyValue(
"CharColor", new uno.Any( (Int32) 0x003399 ) );
xPropSet.setPropertyValue(
"CharHeight", new uno.Any( (Single) 20.0 ) );
// from com.sun.star.styles.ParagraphProperties
xPropSet.setPropertyValue(
"ParaLeftMargin", new uno.Any( (Int32) 500 ) );
// from com.sun.star.table.CellProperties
xPropSet.setPropertyValue(
"IsCellBackgroundTransparent", new uno.Any( false ) );
xPropSet.setPropertyValue(
"CellBackColor", new uno.Any( (Int32) 0x99CCFF ) );
// --- Replace text in all cells. ---
unoidl.com.sun.star.util.XReplaceable xReplace =
(unoidl.com.sun.star.util.XReplaceable) xCellRange;
unoidl.com.sun.star.util.XReplaceDescriptor xReplaceDesc =
xReplace.createReplaceDescriptor();
xReplaceDesc.setSearchString( "cell" );
xReplaceDesc.setReplaceString( "text" );
// property SearchWords searches for whole cells!
xReplaceDesc.setPropertyValue( "SearchWords", new uno.Any( false ) );
int nCount = xReplace.replaceAll( xReplaceDesc );
// --- Merge cells. ---
xCellRange = xSheet.getCellRangeByName( "F3:G6" );
prepareRange( xSheet, "E1:H7", "XMergeable" );
unoidl.com.sun.star.util.XMergeable xMerge =
(unoidl.com.sun.star.util.XMergeable) xCellRange;
xMerge.merge( true );
// --- Column properties. ---
xCellRange = xSheet.getCellRangeByName( "B1" );
unoidl.com.sun.star.table.XColumnRowRange xColRowRange =
(unoidl.com.sun.star.table.XColumnRowRange) xCellRange;
unoidl.com.sun.star.table.XTableColumns xColumns =
xColRowRange.getColumns();
uno.Any aColumnObj = xColumns.getByIndex( 0 );
xPropSet = (unoidl.com.sun.star.beans.XPropertySet) aColumnObj.Value;
xPropSet.setPropertyValue( "Width", new uno.Any( (Int32) 6000 ) );
unoidl.com.sun.star.container.XNamed xNamed =
(unoidl.com.sun.star.container.XNamed) aColumnObj.Value;
// --- Cell range data ---
prepareRange( xSheet, "A9:C30", "XCellRangeData" );
xCellRange = xSheet.getCellRangeByName( "A10:C30" );
unoidl.com.sun.star.sheet.XCellRangeData xData =
(unoidl.com.sun.star.sheet.XCellRangeData) xCellRange;
uno.Any [][] aValues =
{
new uno.Any [] { new uno.Any( "Name" ),
new uno.Any( "Fruit" ),
new uno.Any( "Quantity" ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 3.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 7.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 3.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 9.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 5.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 6.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 3.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 8.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 1.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 2.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 7.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 1.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 8.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 8.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 7.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 1.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 9.0 ) },
new uno.Any [] { new uno.Any( "Bob" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 3.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Oranges" ),
new uno.Any( (Double) 4.0 ) },
new uno.Any [] { new uno.Any( "Alice" ),
new uno.Any( "Apples" ),
new uno.Any( (Double) 9.0 ) }
};
xData.setDataArray( aValues );
// --- Get cell range address. ---
unoidl.com.sun.star.sheet.XCellRangeAddressable xRangeAddr =
(unoidl.com.sun.star.sheet.XCellRangeAddressable) xCellRange;
aRangeAddress = xRangeAddr.getRangeAddress();
// --- Sheet operation. ---
// uses the range filled with XCellRangeData
unoidl.com.sun.star.sheet.XSheetOperation xSheetOp =
(unoidl.com.sun.star.sheet.XSheetOperation) xData;
double fResult = xSheetOp.computeFunction(
unoidl.com.sun.star.sheet.GeneralFunction.AVERAGE );
// --- Fill series ---
// Prepare the example
setValue( xSheet, "E10", 1 );
setValue( xSheet, "E11", 4 );
setDate( xSheet, "E12", 30, 1, 2002 );
setFormula( xSheet, "I13", "Text 10" );
setFormula( xSheet, "E14", "Jan" );
setValue( xSheet, "K14", 10 );
setValue( xSheet, "E16", 1 );
setValue( xSheet, "F16", 2 );
setDate( xSheet, "E17", 28, 2, 2002 );
setDate( xSheet, "F17", 28, 1, 2002 );
setValue( xSheet, "E18", 6 );
setValue( xSheet, "F18", 4 );
}
/** Returns the XCellSeries interface of a cell range.
@param xSheet The spreadsheet containing the cell range.
@param aRange The address of the cell range.
@return The XCellSeries interface. */
private unoidl.com.sun.star.sheet.XCellSeries getCellSeries(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet, String aRange )
{
return (unoidl.com.sun.star.sheet.XCellSeries)
xSheet.getCellRangeByName( aRange );
}
}
/** This is a helper class for the spreadsheet and table samples.
It connects to a running office and creates a spreadsheet document.
Additionally it contains various helper functions.
*/
class SpreadsheetDocHelper : System.IDisposable
{
// __ private members ___________________________________________
private const String msDataSheetName = "Data";
private unoidl.com.sun.star.uno.XComponentContext m_xContext;
private unoidl.com.sun.star.lang.XMultiServiceFactory mxMSFactory;
private unoidl.com.sun.star.sheet.XSpreadsheetDocument mxDocument;
// ________________________________________________________________
public SpreadsheetDocHelper()
{
// System.Diagnostics.Debugger.Launch();
// Connect to a running office and get the service manager
mxMSFactory = connect();
// Create a new spreadsheet document
mxDocument = initDocument();
}
// __ helper methods ____________________________________________
/** Returns the service manager.
@return XMultiServiceFactory interface of the service manager. */
public unoidl.com.sun.star.lang.XMultiServiceFactory getServiceManager()
{
return mxMSFactory;
}
/** Returns the whole spreadsheet document.
@return XSpreadsheetDocument interface of the document. */
public unoidl.com.sun.star.sheet.XSpreadsheetDocument getDocument()
{
return mxDocument;
}
/** Returns the spreadsheet with the specified index (0-based).
@param nIndex The index of the sheet.
@return XSpreadsheet interface of the sheet. */
public unoidl.com.sun.star.sheet.XSpreadsheet getSpreadsheet( int nIndex )
{
// Collection of sheets
unoidl.com.sun.star.sheet.XSpreadsheets xSheets =
mxDocument.getSheets();
unoidl.com.sun.star.container.XIndexAccess xSheetsIA =
(unoidl.com.sun.star.container.XIndexAccess) xSheets;
unoidl.com.sun.star.sheet.XSpreadsheet xSheet =
(unoidl.com.sun.star.sheet.XSpreadsheet)
xSheetsIA.getByIndex( nIndex ).Value;
return xSheet;
}
/** Inserts a new empty spreadsheet with the specified name.
@param aName The name of the new sheet.
@param nIndex The insertion index.
@return The XSpreadsheet interface of the new sheet. */
public unoidl.com.sun.star.sheet.XSpreadsheet insertSpreadsheet(
String aName, short nIndex )
{
// Collection of sheets
unoidl.com.sun.star.sheet.XSpreadsheets xSheets =
mxDocument.getSheets();
xSheets.insertNewByName( aName, nIndex );
unoidl.com.sun.star.sheet.XSpreadsheet xSheet =
(unoidl.com.sun.star.sheet.XSpreadsheet)
xSheets.getByName( aName ).Value;
return xSheet;
}
// ________________________________________________________________
// Methods to fill values into cells.
/** Writes a double value into a spreadsheet.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aCellName The address of the cell (or a named range).
@param fValue The value to write into the cell. */
public void setValue(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet,
String aCellName,
double fValue )
{
xSheet.getCellRangeByName( aCellName ).getCellByPosition(
0, 0 ).setValue( fValue );
}
/** Writes a formula into a spreadsheet.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aCellName The address of the cell (or a named range).
@param aFormula The formula to write into the cell. */
public void setFormula(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet,
String aCellName,
String aFormula )
{
xSheet.getCellRangeByName( aCellName ).getCellByPosition(
0, 0 ).setFormula( aFormula );
}
/** Writes a date with standard date format into a spreadsheet.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aCellName The address of the cell (or a named range).
@param nDay The day of the date.
@param nMonth The month of the date.
@param nYear The year of the date. */
public void setDate(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet,
String aCellName,
int nDay, int nMonth, int nYear )
{
// Set the date value.
unoidl.com.sun.star.table.XCell xCell =
xSheet.getCellRangeByName( aCellName ).getCellByPosition( 0, 0 );
String aDateStr = nMonth + "/" + nDay + "/" + nYear;
xCell.setFormula( aDateStr );
// Set standard date format.
unoidl.com.sun.star.util.XNumberFormatsSupplier xFormatsSupplier =
(unoidl.com.sun.star.util.XNumberFormatsSupplier) getDocument();
unoidl.com.sun.star.util.XNumberFormatTypes xFormatTypes =
(unoidl.com.sun.star.util.XNumberFormatTypes)
xFormatsSupplier.getNumberFormats();
int nFormat = xFormatTypes.getStandardFormat(
unoidl.com.sun.star.util.NumberFormat.DATE,
new unoidl.com.sun.star.lang.Locale() );
unoidl.com.sun.star.beans.XPropertySet xPropSet =
(unoidl.com.sun.star.beans.XPropertySet) xCell;
xPropSet.setPropertyValue(
"NumberFormat",
new uno.Any( (Int32) nFormat ) );
}
/** Draws a colored border around the range and writes the headline
in the first cell.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aRange The address of the cell range (or a named range).
@param aHeadline The headline text. */
public void prepareRange(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet,
String aRange, String aHeadline )
{
unoidl.com.sun.star.beans.XPropertySet xPropSet = null;
unoidl.com.sun.star.table.XCellRange xCellRange = null;
// draw border
xCellRange = xSheet.getCellRangeByName( aRange );
xPropSet = (unoidl.com.sun.star.beans.XPropertySet) xCellRange;
unoidl.com.sun.star.table.BorderLine aLine =
new unoidl.com.sun.star.table.BorderLine();
aLine.Color = 0x99CCFF;
aLine.InnerLineWidth = aLine.LineDistance = 0;
aLine.OuterLineWidth = 100;
unoidl.com.sun.star.table.TableBorder aBorder =
new unoidl.com.sun.star.table.TableBorder();
aBorder.TopLine = aBorder.BottomLine = aBorder.LeftLine =
aBorder.RightLine = aLine;
aBorder.IsTopLineValid = aBorder.IsBottomLineValid = true;
aBorder.IsLeftLineValid = aBorder.IsRightLineValid = true;
xPropSet.setPropertyValue(
"TableBorder",
new uno.Any(
typeof (unoidl.com.sun.star.table.TableBorder), aBorder ) );
// draw headline
unoidl.com.sun.star.sheet.XCellRangeAddressable xAddr =
(unoidl.com.sun.star.sheet.XCellRangeAddressable) xCellRange;
unoidl.com.sun.star.table.CellRangeAddress aAddr =
xAddr.getRangeAddress();
xCellRange = xSheet.getCellRangeByPosition(
aAddr.StartColumn,
aAddr.StartRow, aAddr.EndColumn, aAddr.StartRow );
xPropSet = (unoidl.com.sun.star.beans.XPropertySet) xCellRange;
xPropSet.setPropertyValue(
"CellBackColor", new uno.Any( (Int32) 0x99CCFF ) );
// write headline
unoidl.com.sun.star.table.XCell xCell =
xCellRange.getCellByPosition( 0, 0 );
xCell.setFormula( aHeadline );
xPropSet = (unoidl.com.sun.star.beans.XPropertySet) xCell;
xPropSet.setPropertyValue(
"CharColor", new uno.Any( (Int32) 0x003399 ) );
xPropSet.setPropertyValue(
"CharWeight",
new uno.Any( (Single) unoidl.com.sun.star.awt.FontWeight.BOLD ) );
}
// ________________________________________________________________
// Methods to create cell addresses and range addresses.
/** Creates a unoidl.com.sun.star.table.CellAddress and initializes it
with the given range.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aCell The address of the cell (or a named cell). */
public unoidl.com.sun.star.table.CellAddress createCellAddress(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet,
String aCell )
{
unoidl.com.sun.star.sheet.XCellAddressable xAddr =
(unoidl.com.sun.star.sheet.XCellAddressable)
xSheet.getCellRangeByName( aCell ).getCellByPosition( 0, 0 );
return xAddr.getCellAddress();
}
/** Creates a unoidl.com.sun.star.table.CellRangeAddress and initializes
it with the given range.
@param xSheet The XSpreadsheet interface of the spreadsheet.
@param aRange The address of the cell range (or a named range). */
public unoidl.com.sun.star.table.CellRangeAddress createCellRangeAddress(
unoidl.com.sun.star.sheet.XSpreadsheet xSheet, String aRange )
{
unoidl.com.sun.star.sheet.XCellRangeAddressable xAddr =
(unoidl.com.sun.star.sheet.XCellRangeAddressable)
xSheet.getCellRangeByName( aRange );
return xAddr.getRangeAddress();
}
// ________________________________________________________________
// Methods to convert cell addresses and range addresses to strings.
/** Returns the text address of the cell.
@param nColumn The column index.
@param nRow The row index.
@return A string containing the cell address. */
public String getCellAddressString( int nColumn, int nRow )
{
String aStr = "";
if (nColumn > 25)
aStr += (char) ('A' + nColumn / 26 - 1);
aStr += (char) ('A' + nColumn % 26);
aStr += (nRow + 1);
return aStr;
}
/** Returns the text address of the cell range.
@param aCellRange The cell range address.
@return A string containing the cell range address. */
public String getCellRangeAddressString(
unoidl.com.sun.star.table.CellRangeAddress aCellRange )
{
return
getCellAddressString( aCellRange.StartColumn, aCellRange.StartRow )
+ ":"
+ getCellAddressString( aCellRange.EndColumn, aCellRange.EndRow );
}
/** Returns the text address of the cell range.
@param xCellRange The XSheetCellRange interface of the cell range.
@param bWithSheet true = Include sheet name.
@return A string containing the cell range address. */
public String getCellRangeAddressString(
unoidl.com.sun.star.sheet.XSheetCellRange xCellRange, bool bWithSheet )
{
String aStr = "";
if (bWithSheet)
{
unoidl.com.sun.star.sheet.XSpreadsheet xSheet =
xCellRange.getSpreadsheet();
unoidl.com.sun.star.container.XNamed xNamed =
(unoidl.com.sun.star.container.XNamed) xSheet;
aStr += xNamed.getName() + ".";
}
unoidl.com.sun.star.sheet.XCellRangeAddressable xAddr =
(unoidl.com.sun.star.sheet.XCellRangeAddressable) xCellRange;
aStr += getCellRangeAddressString( xAddr.getRangeAddress() );
return aStr;
}
/** Returns a list of addresses of all cell ranges contained in the
collection.
@param xRangesIA The XIndexAccess interface of the collection.
@return A string containing the cell range address list. */
public String getCellRangeListString(
unoidl.com.sun.star.container.XIndexAccess xRangesIA )
{
String aStr = "";
int nCount = xRangesIA.getCount();
for (int nIndex = 0; nIndex < nCount; ++nIndex)
{
if (nIndex > 0)
aStr += " ";
uno.Any aRangeObj = xRangesIA.getByIndex( nIndex );
unoidl.com.sun.star.sheet.XSheetCellRange xCellRange =
(unoidl.com.sun.star.sheet.XSheetCellRange) aRangeObj.Value;
aStr += getCellRangeAddressString( xCellRange, false );
}
return aStr;
}
// ________________________________________________________________
/** Connect to a running office that is accepting connections.
@return The ServiceManager to instantiate office components. */
private XMultiServiceFactory connect()
{
m_xContext = uno.util.Bootstrap.bootstrap();
return (XMultiServiceFactory) m_xContext.getServiceManager();
}
public void Dispose()
{
}
/** Creates an empty spreadsheet document.
@return The XSpreadsheetDocument interface of the document. */
private unoidl.com.sun.star.sheet.XSpreadsheetDocument initDocument()
{
XComponentLoader aLoader = (XComponentLoader)
mxMSFactory.createInstance( "com.sun.star.frame.Desktop" );
XComponent xComponent = aLoader.loadComponentFromURL(
"private:factory/scalc", "_blank", 0,
new unoidl.com.sun.star.beans.PropertyValue[0] );
return (unoidl.com.sun.star.sheet.XSpreadsheetDocument) xComponent;
}
public void terminate()
{
XModifiable xMod = (XModifiable) mxDocument;
if (xMod != null)
xMod.setModified(false);
XDesktop aDesktop = (XDesktop)
mxMSFactory.createInstance( "com.sun.star.frame.Desktop" );
if (aDesktop != null)
{
try
{
aDesktop.terminate();
}
catch (DisposedException d)
{
//This exception may be thrown because shutting down OOo using
//XDesktop terminate does not really work. In the case of the
//Exception OOo will still terminate.
}
}
}
// ________________________________________________________________
}
}
|