Lines Matching refs:uno

96 uno::Any sbxToUnoValue( SbxVariable* pVar );
121 ScVbaApplication::ScVbaApplication( const uno::Reference<uno::XComponentContext >& xContext ) : in ScVbaApplication()
136 …ObjectShell* ScVbaApplication::GetDocShell( const uno::Reference< frame::XModel >& xModel ) throw … in GetDocShell()
142 ScVbaApplication::getExactName( const ::rtl::OUString& aApproximateName ) throw (uno::RuntimeExcept… in getExactName()
144 uno::Reference< beans::XExactName > xWSF( new ScVbaWSFunction( this, mxContext ) ); in getExactName()
148 uno::Reference< beans::XIntrospectionAccess > SAL_CALL
149 ScVbaApplication::getIntrospection() throw(css::uno::RuntimeException) in getIntrospection()
151 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in getIntrospection()
155 uno::Any SAL_CALL
156uno::Sequence< uno::Any >& Params, uno::Sequence< sal_Int16 >& OutParamIndex, uno::Sequence< uno::… in invoke()
160 uno::Any aAny; in invoke()
163 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in invoke()
166 catch( uno::Exception& ) in invoke()
168 …aAny <<= script::BasicErrorException( ::rtl::OUString(), uno::Reference< uno::XInterface >(), 1000… in invoke()
174 …ame, const uno::Any& Value ) throw(beans::UnknownPropertyException, script::CannotConvertException… in setValue()
176 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in setValue()
180 uno::Any SAL_CALL
181 …const ::rtl::OUString& PropertyName ) throw(beans::UnknownPropertyException, uno::RuntimeException) in getValue()
183 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in getValue()
188 ScVbaApplication::hasMethod( const ::rtl::OUString& Name ) throw(uno::RuntimeException) in hasMethod()
190 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in hasMethod()
195 ScVbaApplication::hasProperty( const ::rtl::OUString& Name ) throw(uno::RuntimeException) in hasProperty()
197 uno::Reference< script::XInvocation > xWSF( new ScVbaWSFunction( this, mxContext ) ); in hasProperty()
201 uno::Reference< excel::XWorkbook >
202 ScVbaApplication::getActiveWorkbook() throw (uno::RuntimeException) in getActiveWorkbook()
204 uno::Reference< frame::XModel > xModel( getCurrentExcelDoc( mxContext ), uno::UNO_SET_THROW ); in getActiveWorkbook()
205 uno::Reference< excel::XWorkbook > xWorkbook( getVBADocument( xModel ), uno::UNO_QUERY ); in getActiveWorkbook()
211 uno::Reference< excel::XWorkbook > SAL_CALL
212 ScVbaApplication::getThisWorkbook() throw (uno::RuntimeException) in getThisWorkbook()
214 uno::Reference< frame::XModel > xModel( getThisExcelDoc( mxContext ), uno::UNO_SET_THROW ); in getThisWorkbook()
215 uno::Reference< excel::XWorkbook > xWorkbook( getVBADocument( xModel ), uno::UNO_QUERY ); in getThisWorkbook()
221 uno::Reference< XAssistant > SAL_CALL
222 ScVbaApplication::getAssistant() throw (uno::RuntimeException) in getAssistant()
224 return uno::Reference< XAssistant >( new ScVbaAssistant( this, mxContext ) ); in getAssistant()
227 uno::Any SAL_CALL
228 ScVbaApplication::getSelection() throw (uno::RuntimeException) in getSelection()
231 uno::Reference< frame::XModel > xModel( getCurrentDocument() ); in getSelection()
232uno::Reference< lang::XServiceInfo > xServiceInfo( xModel->getCurrentSelection(), uno::UNO_QUERY_T… in getSelection()
236uno::Reference< drawing::XShapes > xShapes( xModel->getCurrentSelection(), uno::UNO_QUERY_THROW ); in getSelection()
237 uno::Reference< container::XIndexAccess > xIndexAccess( xShapes, uno::UNO_QUERY_THROW ); in getSelection()
238uno::Reference< drawing::XShape > xShape( xIndexAccess->getByIndex(0), uno::UNO_QUERY_THROW ); in getSelection()
244 uno::Reference< lang::XServiceInfo > xShapeServiceInfo( xShape, uno::UNO_QUERY_THROW ); in getSelection()
247 …return uno::makeAny( uno::Reference< msforms::XTextBoxShape >(new ScVbaTextBoxShape( mxContext, xS… in getSelection()
250 …return uno::makeAny( uno::Reference< msforms::XShape >(new ScVbaShape( this, mxContext, xShape, xS… in getSelection()
255uno::Reference< table::XCellRange > xRange( getCurrentDocument()->getCurrentSelection(), ::uno::UN… in getSelection()
258uno::Reference< sheet::XSheetCellRangeContainer > xRanges( getCurrentDocument()->getCurrentSelecti… in getSelection()
260 …return uno::makeAny( uno::Reference< excel::XRange >( new ScVbaRange( excel::getUnoSheetModuleObj(… in getSelection()
263 …return uno::makeAny( uno::Reference< excel::XRange >(new ScVbaRange( excel::getUnoSheetModuleObj( … in getSelection()
267 …throw uno::RuntimeException( sImpementaionName + rtl::OUString::createFromAscii(" not suported"), in getSelection()
271 uno::Reference< excel::XRange >
272 ScVbaApplication::getActiveCell() throw (uno::RuntimeException ) in getActiveCell()
274uno::Reference< sheet::XSpreadsheetView > xView( getCurrentDocument()->getCurrentController(), uno in getActiveCell()
275 uno::Reference< table::XCellRange > xRange( xView->getActiveSheet(), ::uno::UNO_QUERY_THROW); in getActiveCell()
278 …throw uno::RuntimeException( rtl::OUString::createFromAscii("No ViewShell available"), uno::Refere… in getActiveCell()
281 …throw uno::RuntimeException( rtl::OUString::createFromAscii("No ViewData available"), uno::Referen… in getActiveCell()
290 uno::Any SAL_CALL
291 ScVbaApplication::Workbooks( const uno::Any& aIndex ) throw (uno::RuntimeException) in Workbooks()
293 uno::Reference< XCollection > xWorkBooks( new ScVbaWorkbooks( this, mxContext ) ); in Workbooks()
294 if ( aIndex.getValueTypeClass() == uno::TypeClass_VOID ) in Workbooks()
297 return uno::Any( xWorkBooks ); in Workbooks()
300 return uno::Any ( xWorkBooks->Item( aIndex, uno::Any() ) ); in Workbooks()
303 uno::Any SAL_CALL
304 ScVbaApplication::Worksheets( const uno::Any& aIndex ) throw (uno::RuntimeException) in Worksheets()
306 uno::Reference< excel::XWorkbook > xWorkbook( getActiveWorkbook(), uno::UNO_SET_THROW ); in Worksheets()
310 uno::Any SAL_CALL
311 ScVbaApplication::WorksheetFunction( ) throw (::com::sun::star::uno::RuntimeException) in WorksheetFunction()
313 …return uno::makeAny( uno::Reference< script::XInvocation >( new ScVbaWSFunction( this, mxContext )… in WorksheetFunction()
316 uno::Any SAL_CALL
317 ScVbaApplication::Evaluate( const ::rtl::OUString& Name ) throw (uno::RuntimeException) in Evaluate()
322 uno::Any aVoid; in Evaluate()
323 return uno::Any( getActiveWorkbook()->getActiveSheet()->Range( uno::Any( Name ), aVoid ) ); in Evaluate()
326 uno::Any
327 ScVbaApplication::Dialogs( const uno::Any &aIndex ) throw (uno::RuntimeException) in Dialogs()
329uno::Reference< excel::XDialogs > xDialogs( new ScVbaDialogs( uno::Reference< XHelperInterface >( … in Dialogs()
331 return uno::Any( xDialogs ); in Dialogs()
332 return uno::Any( xDialogs->Item( aIndex ) ); in Dialogs()
335 uno::Reference< excel::XWindow > SAL_CALL
336 ScVbaApplication::getActiveWindow() throw (uno::RuntimeException) in getActiveWindow()
338 uno::Reference< frame::XModel > xModel = getCurrentDocument(); in getActiveWindow()
339uno::Reference< frame::XController > xController( xModel->getCurrentController(), uno::UNO_SET_THR… in getActiveWindow()
340 uno::Reference< XHelperInterface > xParent( getActiveWorkbook(), uno::UNO_QUERY_THROW ); in getActiveWindow()
341uno::Reference< excel::XWindow > xWin( new ScVbaWindow( xParent, mxContext, xModel, xController ) … in getActiveWindow()
345 uno::Any SAL_CALL
346 ScVbaApplication::getCutCopyMode() throw (uno::RuntimeException) in getCutCopyMode()
349 uno::Any result; in getCutCopyMode()
355 ScVbaApplication::setCutCopyMode( const uno::Any& /*_cutcopymode*/ ) throw (uno::RuntimeException) in setCutCopyMode()
360 uno::Any SAL_CALL
361 ScVbaApplication::getStatusBar() throw (uno::RuntimeException) in getStatusBar()
363 return uno::makeAny( !getDisplayStatusBar() ); in getStatusBar()
367 ScVbaApplication::setStatusBar( const uno::Any& _statusbar ) throw (uno::RuntimeException) in setStatusBar()
371 uno::Reference< frame::XModel > xModel( getCurrentDocument(), uno::UNO_QUERY_THROW ); in setStatusBar()
372uno::Reference< task::XStatusIndicatorSupplier > xStatusIndicatorSupplier( xModel->getCurrentContr… in setStatusBar()
373uno::Reference< task::XStatusIndicator > xStatusIndicator( xStatusIndicatorSupplier->getStatusIndi… in setStatusBar()
391 …throw uno::RuntimeException( rtl::OUString::createFromAscii( "Invalid prarameter. It should be a s… in setStatusBar()
392 uno::Reference< uno::XInterface >() ); in setStatusBar()
396 ScVbaApplication::getCalculation() throw (uno::RuntimeException) in getCalculation()
399 uno::Reference<sheet::XCalculatable> xCalc(getCurrentDocument(), uno::UNO_QUERY_THROW); in getCalculation()
407 ScVbaApplication::setCalculation( ::sal_Int32 _calculation ) throw (uno::RuntimeException) in setCalculation()
410 uno::Reference< sheet::XCalculatable > xCalc(getCurrentDocument(), uno::UNO_QUERY_THROW); in setCalculation()
423 uno::Any SAL_CALL
424 ScVbaApplication::Windows( const uno::Any& aIndex ) throw (uno::RuntimeException) in Windows()
426 uno::Reference< excel::XWindows > xWindows( new ScVbaWindows( this, mxContext ) ); in Windows()
427 if ( aIndex.getValueTypeClass() == uno::TypeClass_VOID ) in Windows()
428 return uno::Any( xWindows ); in Windows()
429 return uno::Any( xWindows->Item( aIndex, uno::Any() ) ); in Windows()
432 ScVbaApplication::wait( double time ) throw (uno::RuntimeException) in wait()
450 uno::Any SAL_CALL
451 ScVbaApplication::Range( const uno::Any& Cell1, const uno::Any& Cell2 ) throw (uno::RuntimeExceptio… in Range()
453uno::Reference< excel::XRange > xVbRange = ScVbaRange::ApplicationRange( mxContext, Cell1, Cell2 )… in Range()
454 return uno::makeAny( xVbRange ); in Range()
457 uno::Any SAL_CALL
458 ScVbaApplication::Names( const css::uno::Any& aIndex ) throw ( uno::RuntimeException ) in Names()
460 uno::Reference< frame::XModel > xModel( getCurrentDocument(), uno::UNO_QUERY_THROW ); in Names()
461 uno::Reference< beans::XPropertySet > xPropertySet( xModel, uno::UNO_QUERY_THROW ); in Names()
462uno::Reference< sheet::XNamedRanges > xNamedRanges( xPropertySet->getPropertyValue( rtl::OUString:… in Names()
463 …css::uno::Reference< excel::XNames > xNames ( new ScVbaNames( this , mxContext , xNamedRanges , xM… in Names()
464 if ( aIndex.getValueTypeClass() == uno::TypeClass_VOID ) in Names()
466 return uno::Any( xNames ); in Names()
468 return uno::Any( xNames->Item( aIndex, uno::Any() ) ); in Names()
472 uno::Reference< excel::XWorksheet > SAL_CALL
473 ScVbaApplication::getActiveSheet() throw (uno::RuntimeException) in getActiveSheet()
475 uno::Reference< excel::XWorksheet > result; in getActiveSheet()
476 uno::Reference< excel::XWorkbook > xWorkbook( getActiveWorkbook(), uno::UNO_QUERY ); in getActiveSheet()
479 uno::Reference< excel::XWorksheet > xWorksheet( in getActiveSheet()
480 xWorkbook->getActiveSheet(), uno::UNO_QUERY ); in getActiveSheet()
490 throw uno::RuntimeException( rtl::OUString::createFromAscii( in getActiveSheet()
491 "No activeSheet available" ), uno::Reference< uno::XInterface >() ); in getActiveSheet()
508 ScVbaApplication::GoTo( const uno::Any& Reference, const uno::Any& Scroll ) throw (uno::RuntimeExce… in GoTo()
522 …throw uno::RuntimeException( rtl::OUString::createFromAscii( "sencond parameter should be boolean"… in GoTo()
523 uno::Reference< uno::XInterface >() ); in GoTo()
529 uno::Reference< frame::XModel > xModel( getCurrentDocument(), uno::UNO_QUERY_THROW ); in GoTo()
530 uno::Reference< sheet::XSpreadsheetView > xSpreadsheet( in GoTo()
531 xModel->getCurrentController(), uno::UNO_QUERY_THROW ); in GoTo()
532 uno::Reference< sheet::XSpreadsheet > xDoc = xSpreadsheet->getActiveSheet(); in GoTo()
538 uno::Reference< excel::XRange > xVbaSheetRange = ScVbaRange::getRangeObjectForName( in GoTo()
544 uno::Reference< excel::XWindow > xWindow = getActiveWindow(); in GoTo()
548 xWindow->SmallScroll( uno::makeAny( (sal_Int16)(xVbaSheetRange->getRow() - 1) ), in GoTo()
549 uno::makeAny( (sal_Int16)nValueY ), in GoTo()
550 uno::makeAny( (sal_Int16)(xVbaSheetRange->getColumn() - 1) ), in GoTo()
551 uno::makeAny( (sal_Int16)nValueX ) ); in GoTo()
560 catch( uno::RuntimeException ) in GoTo()
568 …throw uno::RuntimeException( rtl::OUString::createFromAscii( "invalid reference for range name, it… in GoTo()
569 uno::Reference< uno::XInterface >() ); in GoTo()
573 uno::Reference< excel::XRange > xRange; in GoTo()
576 uno::Reference< excel::XRange > xVbaRange( Reference, uno::UNO_QUERY ); in GoTo()
585 uno::Reference< excel::XWindow > xWindow = getActiveWindow(); in GoTo()
589 xWindow->SmallScroll( uno::makeAny( (sal_Int16)(xVbaRange->getRow() - 1) ), in GoTo()
590 uno::makeAny( (sal_Int16)nValueY ), in GoTo()
591 uno::makeAny( (sal_Int16)(xVbaRange->getColumn() - 1) ), in GoTo()
592 uno::makeAny( (sal_Int16)nValueX ) ); in GoTo()
603 throw uno::RuntimeException( rtl::OUString::createFromAscii( "invalid reference or name" ), in GoTo()
604 uno::Reference< uno::XInterface >() ); in GoTo()
608 ScVbaApplication::getCursor() throw (uno::RuntimeException) in getCursor()
628 ScVbaApplication::setCursor( sal_Int32 _cursor ) throw (uno::RuntimeException) in setCursor()
632 uno::Reference< frame::XModel > xModel( getCurrentDocument(), uno::UNO_QUERY_THROW ); in setCursor()
656 throw uno::RuntimeException( rtl::OUString( in setCursor()
657 …RTL_CONSTASCII_USTRINGPARAM("Unknown value for Cursor pointer")), uno::Reference< uno::XInterface … in setCursor()
662 catch( const uno::Exception& ) in setCursor()
671 ScVbaApplication::getName() throw (uno::RuntimeException) in getName()
684 ScVbaApplication::setDisplayAlerts(sal_Bool displayAlerts) throw (uno::RuntimeException) in setDisplayAlerts()
690 ScVbaApplication::getDisplayAlerts() throw (uno::RuntimeException) in getDisplayAlerts()
696 ScVbaApplication::setEnableEvents(sal_Bool bEnable) throw (uno::RuntimeException) in setEnableEvents()
702 ScVbaApplication::getEnableEvents() throw (uno::RuntimeException) in getEnableEvents()
708 ScVbaApplication::Calculate() throw( script::BasicErrorException , uno::RuntimeException ) in Calculate()
710 uno::Reference< frame::XModel > xModel( getCurrentDocument(), uno::UNO_QUERY_THROW ); in Calculate()
711 uno::Reference< sheet::XCalculatable > xCalculatable( getCurrentDocument(), uno::UNO_QUERY_THROW ); in Calculate()
715 uno::Reference< beans::XPropertySet > lcl_getPathSettingsService( const uno::Reference< uno::XCompo… in lcl_getPathSettingsService()
717 static uno::Reference< beans::XPropertySet > xPathSettings; in lcl_getPathSettingsService()
720uno::Reference< lang::XMultiComponentFactory > xSMgr( xContext->getServiceManager(), uno::UNO_QUER… in lcl_getPathSettingsService()
721 …tl::OUString::createFromAscii("com.sun.star.util.PathSettings"), xContext), uno::UNO_QUERY_THROW ); in lcl_getPathSettingsService()
725 rtl::OUString ScVbaApplication::getOfficePath( const rtl::OUString& _sPathType ) throw ( uno::Runti… in getOfficePath()
728 uno::Reference< beans::XPropertySet > xProps = lcl_getPathSettingsService( mxContext ); in getOfficePath()
740 catch (uno::Exception&) in getOfficePath()
748 ScVbaApplication::setDefaultFilePath( const ::rtl::OUString& DefaultFilePath ) throw (uno::RuntimeE… in setDefaultFilePath()
750 uno::Reference< beans::XPropertySet > xProps = lcl_getPathSettingsService( mxContext ); in setDefaultFilePath()
753 xProps->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Work")), uno::Any( aURL ) ); in setDefaultFilePath()
757 ScVbaApplication::getDefaultFilePath() throw (uno::RuntimeException) in getDefaultFilePath()
763 ScVbaApplication::getLibraryPath() throw (uno::RuntimeException) in getLibraryPath()
769 ScVbaApplication::getTemplatesPath() throw (uno::RuntimeException) in getTemplatesPath()
775 ScVbaApplication::getPathSeparator() throw (uno::RuntimeException) in getPathSeparator()
789 void lclAddToListOfScRange( ListOfScRange& rList, const uno::Any& rArg ) in lclAddToListOfScRange()
790 throw (script::BasicErrorException, uno::RuntimeException) in lclAddToListOfScRange()
794 uno::Reference< excel::XRange > xRange( rArg, uno::UNO_QUERY_THROW ); in lclAddToListOfScRange()
795 uno::Reference< XCollection > xCol( xRange->Areas( uno::Any() ), uno::UNO_QUERY_THROW ); in lclAddToListOfScRange()
798uno::Reference< excel::XRange > xAreaRange( xCol->Item( uno::Any( nIdx ), uno::Any() ), uno::UNO_Q… in lclAddToListOfScRange()
799uno::Reference< sheet::XCellRangeAddressable > xAddressable( xAreaRange->getCellRange(), uno::UNO_… in lclAddToListOfScRange()
892 void lclIntersectRanges( ListOfScRange& rList, const uno::Any& rArg ) in lclIntersectRanges()
893 throw (script::BasicErrorException, uno::RuntimeException) in lclIntersectRanges()
930 uno::Reference< excel::XRange > lclCreateVbaRange( in lclCreateVbaRange()
931 const uno::Reference< uno::XComponentContext >& rxContext, in lclCreateVbaRange()
932 const uno::Reference< frame::XModel >& rxModel, in lclCreateVbaRange()
933 const ListOfScRange& rList ) throw (uno::RuntimeException) in lclCreateVbaRange()
936 if( !pDocShell ) throw uno::RuntimeException(); in lclCreateVbaRange()
944uno::Reference< table::XCellRange > xRange( new ScCellRangeObj( pDocShell, *aCellRanges.First() ) … in lclCreateVbaRange()
949uno::Reference< sheet::XSheetCellRangeContainer > xRanges( new ScCellRangesObj( pDocShell, aCellRa… in lclCreateVbaRange()
959 uno::Reference< excel::XRange > SAL_CALL ScVbaApplication::Intersect( in Intersect()
960 const uno::Reference< excel::XRange >& rArg1, const uno::Reference< excel::XRange >& rArg2, in Intersect()
961 const uno::Any& rArg3, const uno::Any& rArg4, const uno::Any& rArg5, const uno::Any& rArg6, in Intersect()
962 const uno::Any& rArg7, const uno::Any& rArg8, const uno::Any& rArg9, const uno::Any& rArg10, in Intersect()
963 … const uno::Any& rArg11, const uno::Any& rArg12, const uno::Any& rArg13, const uno::Any& rArg14, in Intersect()
964 … const uno::Any& rArg15, const uno::Any& rArg16, const uno::Any& rArg17, const uno::Any& rArg18, in Intersect()
965 … const uno::Any& rArg19, const uno::Any& rArg20, const uno::Any& rArg21, const uno::Any& rArg22, in Intersect()
966 … const uno::Any& rArg23, const uno::Any& rArg24, const uno::Any& rArg25, const uno::Any& rArg26, in Intersect()
967 … const uno::Any& rArg27, const uno::Any& rArg28, const uno::Any& rArg29, const uno::Any& rArg30 ) in Intersect()
968 throw (script::BasicErrorException, uno::RuntimeException) in Intersect()
975 lclAddToListOfScRange( aList, uno::Any( rArg1 ) ); in Intersect()
979 lclIntersectRanges( aList, uno::Any( rArg2 ) ); in Intersect()
1013 uno::Reference< excel::XRange > SAL_CALL ScVbaApplication::Union( in Union()
1014 const uno::Reference< excel::XRange >& rArg1, const uno::Reference< excel::XRange >& rArg2, in Union()
1015 const uno::Any& rArg3, const uno::Any& rArg4, const uno::Any& rArg5, const uno::Any& rArg6, in Union()
1016 const uno::Any& rArg7, const uno::Any& rArg8, const uno::Any& rArg9, const uno::Any& rArg10, in Union()
1017 … const uno::Any& rArg11, const uno::Any& rArg12, const uno::Any& rArg13, const uno::Any& rArg14, in Union()
1018 … const uno::Any& rArg15, const uno::Any& rArg16, const uno::Any& rArg17, const uno::Any& rArg18, in Union()
1019 … const uno::Any& rArg19, const uno::Any& rArg20, const uno::Any& rArg21, const uno::Any& rArg22, in Union()
1020 … const uno::Any& rArg23, const uno::Any& rArg24, const uno::Any& rArg25, const uno::Any& rArg26, in Union()
1021 … const uno::Any& rArg27, const uno::Any& rArg28, const uno::Any& rArg29, const uno::Any& rArg30 ) in Union()
1022 throw (script::BasicErrorException, uno::RuntimeException) in Union()
1028 lclAddToListOfScRange( aList, uno::Any( rArg1 ) ); in Union()
1029 lclAddToListOfScRange( aList, uno::Any( rArg2 ) ); in Union()
1067 ScVbaApplication::Volatile( const uno::Any& aVolatile ) throw ( uno::RuntimeException ) in Volatile()
1075 ScVbaApplication::DoEvents() throw ( uno::RuntimeException ) in DoEvents()
1079 ScVbaApplication::getDisplayFormulaBar() throw ( css::uno::RuntimeException ) in getDisplayFormulaBar()
1098 ScVbaApplication::setDisplayFormulaBar( ::sal_Bool _displayformulabar ) throw ( css::uno::RuntimeEx… in setDisplayFormulaBar()
1110 uno::Any SAL_CALL
1111 ScVbaApplication::Caller( const uno::Any& /*aIndex*/ ) throw ( uno::RuntimeException ) in Caller()
1115 uno::Any aRet; in Caller()
1127 uno::Any SAL_CALL ScVbaApplication::GetOpenFilename( in GetOpenFilename()
1128 const uno::Any& rFileFilter, const uno::Any& rFilterIndex, const uno::Any& rTitle, in GetOpenFilename()
1129 const uno::Any& rButtonText, const uno::Any& rMultiSelect ) throw (uno::RuntimeException) in GetOpenFilename()
1131 uno::Sequence< uno::Any > aArgs( 6 ); in GetOpenFilename()
1138uno::Reference< lang::XMultiComponentFactory > xFactory( mxContext->getServiceManager(), uno::UNO_… in GetOpenFilename()
1139 uno::Reference< XExecutableDialog > xFilePicker( xFactory->createInstanceWithArgumentsAndContext( in GetOpenFilename()
1140 …_CONSTASCII_USTRINGPARAM( "ooo.vba.OpenFilePicker" ) ), aArgs, mxContext ), uno::UNO_QUERY_THROW ); in GetOpenFilename()
1144 uno::Any SAL_CALL ScVbaApplication::GetSaveAsFilename( in GetSaveAsFilename()
1145 const uno::Any& rInitialFileName, const uno::Any& rFileFilter, const uno::Any& rFilterIndex, in GetSaveAsFilename()
1146 const uno::Any& rTitle, const uno::Any& rButtonText ) throw (uno::RuntimeException) in GetSaveAsFilename()
1148 uno::Sequence< uno::Any > aArgs( 6 ); in GetSaveAsFilename()
1155uno::Reference< lang::XMultiComponentFactory > xFactory( mxContext->getServiceManager(), uno::UNO_… in GetSaveAsFilename()
1156 uno::Reference< XExecutableDialog > xFilePicker( xFactory->createInstanceWithArgumentsAndContext( in GetSaveAsFilename()
1157 …ONSTASCII_USTRINGPARAM( "ooo.vba.SaveAsFilePicker" ) ), aArgs, mxContext ), uno::UNO_QUERY_THROW ); in GetSaveAsFilename()
1161 uno::Reference< frame::XModel >
1162 ScVbaApplication::getCurrentDocument() throw (css::uno::RuntimeException) in getCurrentDocument()
1174 uno::Sequence< rtl::OUString >
1177 static uno::Sequence< rtl::OUString > aServiceNames; in getServiceNames()