/aoo4110/main/bean/com/sun/star/comp/beans/ |
H A D | OfficeDocument.java | 48 private com.sun.star.frame.XStorable xStorable; field in OfficeDocument 61 this.xStorable = (com.sun.star.frame.XStorable) in OfficeDocument() 188 return xStorable.hasLocation(); in hasLocation() 193 return xStorable.getLocation(); in getLocation() 198 return xStorable.isReadonly(); in isReadonly() 204 xStorable.store(); in store() 210 xStorable.storeAsURL( aURL, aArguments ); in storeAsURL() 216 xStorable.storeToURL( aURL, aArguments ); in storeToURL()
|
/aoo4110/test/testuno/source/fvt/uno/sw/table/ |
H A D | TableBasic.java | 77 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testCreateTable() local 85 xStorable.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties); in testCreateTable() 153 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetRowHeight() local 161 xStorable.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties); in testSetRowHeight() 234 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetTableBorder() local 242 xStorable.storeToURL(FileUtil.getUrl(Testspace.getPath("output/test.odt")), aStoreProperties); in testSetTableBorder() 340 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetTable_AlignmentAndMarginToPage() local 417 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetTableBackColor() local 460 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetTableRepeatHeading() local 534 XStorable xStorable = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in testSetTableShadow() local [all …]
|
/aoo4110/main/sdext/source/minimizer/ |
H A D | impoptimizer.cxx | 677 Reference< XStorable >xStorable( mxModel, UNO_QUERY ); in Optimize() local 678 if ( xStorable.is() ) in Optimize() 680 if ( xStorable->hasLocation() ) in Optimize() 681 nSourceSize = PPPOptimizer::GetFileSize( xStorable->getLocation() ); in Optimize() 691 xStorable->storeToURL( maSaveAsURL, aArguments ); in Optimize() 714 Reference< XStorable > xStorable( mxModel, UNO_QUERY ); in Optimize() local 715 if ( xStorable.is() && !xStorable->isReadonly() ) in Optimize() 732 if ( xStorable.is() ) in Optimize() 734 xStorable->store(); in Optimize()
|
H A D | optimizerdialog.cxx | 241 Reference< XStorable> xStorable( mxModel, UNO_QUERY_THROW ); in OptimizerDialog() local 242 mbIsReadonly = xStorable->isReadonly(); in OptimizerDialog() 568 Reference< XStorable > xStorable( mxModel, UNO_QUERY ); in actionPerformed() local 569 if ( xStorable.is() && xStorable->hasLocation() ) in actionPerformed() 571 rtl::OUString aLocation( xStorable->getLocation() ); in actionPerformed()
|
/aoo4110/test/testuno/source/fvt/uno/sw/ |
H A D | DocumentTest.java | 165 XStorable xStorable = (XStorable)UnoRuntime.queryInterface(XStorable.class, component); in testExportAsPDF() local 180 xStorable.storeToURL(FileUtil.getUrl(saveAsFile), storeProps); in testExportAsPDF() 202 XStorable xStorable = (XStorable)UnoRuntime.queryInterface(XStorable.class, component); in testSaveAsTemplate() local 203 xStorable.store(); in testSaveAsTemplate() 218 xStorable.storeToURL(FileUtil.getUrl(saveAsFile), storeProps); in testSaveAsTemplate()
|
/aoo4110/main/extensions/source/abpilot/ |
H A D | datasourcehandling.cxx | 382 Reference< XStorable > xStorable; in store() local 384 xStorable = xStorable.query( xDocAccess->getDatabaseDocument() ); in store() 385 OSL_ENSURE( xStorable.is(),"DataSource is no XStorable!" ); in store() 386 if ( xStorable.is() ) in store() 387 xStorable->storeAsURL(m_pImpl->sName,Sequence<PropertyValue>()); in store()
|
/aoo4110/main/sfx2/source/dialog/ |
H A D | mailmodel.cxx | 392 css::uno::Reference< css::frame::XStorable > xStorable( xModel, css::uno::UNO_QUERY ); in SaveDocumentAsFormat() local 396 if ( xStorable.is() ) in SaveDocumentAsFormat() 398 rtl::OUString aLocation = xStorable->getLocation(); in SaveDocumentAsFormat() 409 if ( xStorable.is() ) in SaveDocumentAsFormat() 516 INetURLObject aFileObj( xStorable->getLocation() ); in SaveDocumentAsFormat() 557 INetURLObject aFileObj( xStorable->getLocation() ); in SaveDocumentAsFormat() 675 xStorable->storeToURL( aFileURL, aArgs ); in SaveDocumentAsFormat() 738 xStorable->storeToURL( aFileURL, aArgs ); in SaveDocumentAsFormat()
|
/aoo4110/main/odk/examples/java/DocumentHandling/ |
H A D | DocumentConverter.java | 104 com.sun.star.frame.XStorable xStorable = in traverse() local 126 xStorable.storeAsURL(sStoreUrl, propertyValues); in traverse() 132 com.sun.star.util.XCloseable.class, xStorable); in traverse() 139 com.sun.star.lang.XComponent.class, xStorable); in traverse()
|
H A D | DocumentSaver.java | 83 com.sun.star.frame.XStorable xStorable = in main() local 94 xStorable.storeAsURL( sSaveUrl.toString(), propertyValue ); in main()
|
/aoo4110/main/embedserv/source/embed/ |
H A D | ed_ipersiststr.cxx | 638 uno::Reference< frame::XStorable > xStorable( m_pDocHolder->GetDocument(), uno::UNO_QUERY ); in Save() local 639 if( xStorable.is() ) in Save() 643 xStorable->storeToURL( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( "private:stream" ) ), in Save() 883 uno::Reference< frame::XStorable > xStorable( m_pDocHolder->GetDocument(), uno::UNO_QUERY_THROW ); in Save() local 886 xStorable->store(); in Save() 900 …xStorable->storeAsURL( aURL.Complete, fillArgsForStoring_Impl( uno::Reference< io::XOutputStream >… in Save() 904 …xStorable->storeToURL( aURL.Complete, fillArgsForStoring_Impl( uno::Reference< io::XOutputStream >… in Save()
|
/aoo4110/main/qadevOOo/runner/convwatch/ |
H A D | GraphicalDifferenceCheck.java | 330 XStorable xStorable = null; in createInputFile() local 331 …xStorable = (com.sun.star.frame.XStorable)UnoRuntime.queryInterface(com.sun.star.frame.XStorable.… in createInputFile() 332 if(xStorable == null) in createInputFile() 342 xStorable.storeAsURL(resultURL, new PropertyValue[]{pvFilterName, pvOverwrite}); in createInputFile()
|
/aoo4110/main/vbahelper/source/vbahelper/ |
H A D | vbadocumentbase.cxx | 116 uno::Reference< frame::XStorable > xStorable( getModel(), uno::UNO_QUERY_THROW ); in Close() local 121 if( xStorable->isReadonly() ) in Close() 128 xStorable->storeAsURL( aFileName, uno::Sequence< beans::PropertyValue >(0) ); in Close() 130 xStorable->store(); in Close()
|
/aoo4110/main/filter/source/xsltdialog/ |
H A D | xmlfiltertestdialog.cxx | 266 Reference< XStorable > xStorable( xCurrentDocument, UNO_QUERY ); in updateCurrentDocumentButtonState() local 267 if( xStorable.is() ) in updateCurrentDocumentButtonState() 269 if( xStorable->hasLocation() ) in updateCurrentDocumentButtonState() 271 OUString aURL( xStorable->getLocation() ); in updateCurrentDocumentButtonState() 470 Reference< XStorable > xStorable( xComp, UNO_QUERY ); in doExport() local 471 if( xStorable.is() ) in doExport()
|
/aoo4110/main/vcl/qa/complex/memCheck/ |
H A D | CheckMemoryUsage.java | 333 XStorable xStorable = UnoRuntime.queryInterface(XStorable.class, xComponent); in loadAndSaveNTimesDocument() local 334 if (xStorable != null) in loadAndSaveNTimesDocument() 350 xStorable.storeToURL(url, props); in loadAndSaveNTimesDocument() 358 XCloseable xCloseable = UnoRuntime.queryInterface(XCloseable.class, xStorable); in loadAndSaveNTimesDocument()
|
/aoo4110/main/scripting/examples/javascript/ExportSheetsToHTML/ |
H A D | exportsheetstohtml.js | 48 xStorable = UnoRuntime.queryInterface(XStorable,xSDoc); 67 xStorable.storeToURL(storeUrl+"_sheet"+(i+1)+".html", storeProps);
|
/aoo4110/main/embeddedobj/source/commonembedding/ |
H A D | persistence.cxx | 605 uno::Reference< frame::XStorable > xStorable; in StoreDocumentToTempStream_Impl() local 609 xStorable = uno::Reference< frame::XStorable > ( m_pDocHolder->GetComponent(), uno::UNO_QUERY ); in StoreDocumentToTempStream_Impl() 612 if( !xStorable.is() ) in StoreDocumentToTempStream_Impl() 631 xStorable->storeToURL( ::rtl::OUString::createFromAscii( "private:stream" ), aArgs ); in StoreDocumentToTempStream_Impl() 1597 uno::Reference< frame::XStorable > xStorable( m_pDocHolder->GetComponent(), uno::UNO_QUERY ); in storeOwn() local 1598 if ( !xStorable.is() ) in storeOwn() 1604 xStorable->store(); in storeOwn()
|
/aoo4110/main/sfx2/qa/complex/sfx2/standalonedocinfo/ |
H A D | Test01.java | 69 XStorable xStorable = UnoRuntime.queryInterface(XStorable.class, oTextDocument); in test() local 80 xStorable.storeToURL ( sURL, aProps ); in test()
|
/aoo4110/test/testuno/source/fvt/uno/db/ |
H A D | DBAccess.java | 155 XStorable xStorable = (XStorable) UnoRuntime.queryInterface( in saveAndReloadDoc() local 157 xStorable.storeToURL(FileUtil.getUrl(filePath), aStoreProperties); in saveAndReloadDoc()
|
/aoo4110/main/cui/source/customize/ |
H A D | eventdlg.cxx | 215 uno::Reference< frame::XStorable > xStorable( in IMPL_LINK() local 217 isReadonly = xStorable->isReadonly(); in IMPL_LINK()
|
/aoo4110/main/filter/source/flash/ |
H A D | swffilter.cxx | 280 Reference< XStorable > xStorable(rDesktop->getCurrentComponent(), UNO_QUERY); in ExportAsMultipleFiles() local 281 if (!xStorable.is()) in ExportAsMultipleFiles() 304 OUString sPresentation(xStorable->getLocation()); in ExportAsMultipleFiles()
|
/aoo4110/test/testuno/source/fvt/uno/sd/shape/ |
H A D | ShapeTypes.java | 171 XStorable xStorable = (XStorable) UnoRuntime.queryInterface( in saveAndReloadDoc() local 173 xStorable.storeToURL(FileUtil.getUrl(filePath), aStoreProperties); in saveAndReloadDoc()
|
/aoo4110/test/testuno/source/fvt/uno/sd/slideshow/ |
H A D | SlideShow.java | 183 XStorable xStorable = (XStorable) UnoRuntime.queryInterface( in saveAndReloadDoc() local 185 xStorable.storeToURL(FileUtil.getUrl(filePath), aStoreProperties); in saveAndReloadDoc()
|
/aoo4110/main/chart2/source/controller/main/ |
H A D | ShapeController.cxx | 101 Reference< frame::XStorable > xStorable( m_pChartController->getModel(), uno::UNO_QUERY ); in getState() local 102 if ( xStorable.is() ) in getState() 104 bWritable = !xStorable->isReadonly(); in getState()
|
/aoo4110/test/testuno/source/fvt/uno/sd/animation/ |
H A D | TextAnimation.java | 196 XStorable xStorable = (XStorable) UnoRuntime.queryInterface( in saveAndReloadDoc() local 198 xStorable.storeToURL(FileUtil.getUrl(filePath), aStoreProperties); in saveAndReloadDoc()
|
/aoo4110/test/testuno/source/fvt/uno/sd/paragraph/ |
H A D | ParagraphTextProperty.java | 181 XStorable xStorable = (XStorable) UnoRuntime.queryInterface( in saveAndReloadDoc() local 183 xStorable.storeToURL(FileUtil.getUrl(filePath), aStoreProperties); in saveAndReloadDoc()
|