Home
last modified time | relevance | path

Searched refs:rOptions (Results 1 – 25 of 81) sorted by relevance

1234

/trunk/main/sc/source/ui/unoobj/
H A Doptuno.cxx83 rOptions.SetTabDistance( nIntVal ); in setPropertyValue()
96 rOptions.SetIterCount( (sal_uInt16)nIntVal ); in setPropertyValue()
103 rOptions.SetIterEps( fDoubleVal ); in setPropertyValue()
126 rOptions.SetStdPrecision( nIntVal ); in setPropertyValue()
139 const ScDocOptions& rOptions, in getPropertyValue() argument
153 aRet <<= (sal_Int16)( rOptions.GetTabDistance() ); in getPropertyValue()
159 ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsIter() ); in getPropertyValue()
162 aRet <<= (sal_Int32)( rOptions.GetIterCount() ); in getPropertyValue()
165 aRet <<= (double)( rOptions.GetIterEps() ); in getPropertyValue()
176 rOptions.GetDate( nD, nM, nY ); in getPropertyValue()
[all …]
H A Ddocuno.cxx659 long nPropCount = rOptions.getLength(); in lcl_GetRenderDevice()
788 rOptions[i].Value >>= bSelectedSheetsOnly; in FillRenderMarkData()
792 rOptions[i].Value >>= bIncludeEmptyPages; in FillRenderMarkData()
794 else if( rOptions[i].Name.equalsAscii( "PageRange" ) ) in FillRenderMarkData()
796 rOptions[i].Value >>= aPageRange; in FillRenderMarkData()
800 rOptions[i].Value >>= nPrintRange; in FillRenderMarkData()
805 rOptions[i].Value >>= nPrintContent; in FillRenderMarkData()
807 else if( rOptions[i].Name.equalsAscii( "View" ) ) in FillRenderMarkData()
809 rOptions[i].Value >>= xView; in FillRenderMarkData()
1105 const uno::Sequence<beans::PropertyValue>& rOptions ) in render() argument
[all …]
/trunk/main/cpputools/source/registercomponent/
H A Dregistercomponent.cxx224 rOptions.bRegister = sal_True; in parseOptions()
228 rOptions.bRevoke = sal_True; in parseOptions()
322 rOptions.sComponentUrls = tmp; in parseOptions()
325 rOptions.sComponentUrls = sUrls; in parseOptions()
358 rOptions.bSilent = sal_True; in parseOptions()
381 rOptions.bPrefix = sal_True; in parseOptions()
390 rOptions.bPrefix = sal_True; in parseOptions()
485 rOptions.sComponentUrls.matchAsciiL( in parseOptions()
488 if( ! rOptions.bSilent ) in parseOptions()
492 rOptions.sLoaderName = OUString( in parseOptions()
[all …]
/trunk/main/svtools/source/config/
H A Dprintoptions.cxx740 rOptions.SetReduceTransparency( IsReduceTransparency() ); in GetPrinterOptions()
742 rOptions.SetReduceGradients( IsReduceGradients() ); in GetPrinterOptions()
744 rOptions.SetReducedGradientStepCount( GetReducedGradientStepCount() ); in GetPrinterOptions()
745 rOptions.SetReduceBitmaps( IsReduceBitmaps() ); in GetPrinterOptions()
749 rOptions.SetConvertToGreyscales( IsConvertToGreyscales() ); in GetPrinterOptions()
756 SetReduceTransparency( rOptions.IsReduceTransparency() ); in SetPrinterOptions()
759 rOptions.GetReducedTransparencyMode()) ); in SetPrinterOptions()
760 SetReduceGradients( rOptions.IsReduceGradients() ); in SetPrinterOptions()
764 SetReduceBitmaps( rOptions.IsReduceBitmaps() ); in SetPrinterOptions()
768 SetConvertToGreyscales( rOptions.IsConvertToGreyscales() ); in SetPrinterOptions()
[all …]
/trunk/main/sw/source/core/view/
H A Dprintdata.cxx143 SwPrintData & rOptions, in MakeSwPrtOptions() argument
155 ::sw::InitPrintOptionsFromApplication(rOptions, bWeb); in MakeSwPrtOptions()
158 rOptions.bPrintGraphic = pOpt->IsPrintGraphics(); in MakeSwPrtOptions()
159 rOptions.bPrintTable = pOpt->IsPrintTables(); in MakeSwPrtOptions()
160 rOptions.bPrintDraw = pOpt->IsPrintDrawings(); in MakeSwPrtOptions()
162 rOptions.bPrintLeftPages = pOpt->IsPrintLeftPages(); in MakeSwPrtOptions()
167 rOptions.bPaperFromSetup = pOpt->IsPaperFromSetup(); in MakeSwPrtOptions()
168 rOptions.bPrintReverse = pOpt->IsPrintReverse(); in MakeSwPrtOptions()
169 rOptions.bPrintProspect = pOpt->IsPrintProspect(); in MakeSwPrtOptions()
180 rOptions.SetPrintUIOptions( pOpt ); in MakeSwPrtOptions()
[all …]
H A Dvprint.cxx597 void ViewShell::PrtOle2( SwDoc *pDoc, const SwViewOption *pOpt, const SwPrintData& rOptions, in PrtOle2() argument
611 pSh->PrepareForPrint( rOptions ); in PrtOle2()
717 void ViewShell::PrepareForPrint( const SwPrintData &rOptions ) in PrepareForPrint() argument
720 pOpt->SetGraphic ( sal_True == rOptions.bPrintGraphic ); in PrepareForPrint()
721 pOpt->SetTable ( sal_True == rOptions.bPrintTable ); in PrepareForPrint()
722 pOpt->SetDraw ( sal_True == rOptions.bPrintDraw ); in PrepareForPrint()
723 pOpt->SetControl ( sal_True == rOptions.bPrintControl ); in PrepareForPrint()
724 pOpt->SetPageBack( sal_True == rOptions.bPrintPageBackground ); in PrepareForPrint()
725 pOpt->SetBlackFont( sal_True == rOptions.bPrintBlackFont ); in PrepareForPrint()
735 pDrawView->SetLayerPrintable( sLayerNm, rOptions.bPrintControl ); in PrepareForPrint()
[all …]
/trunk/main/sc/source/ui/dbgui/
H A Dscuiimoptdlg.cxx255 void ScImportOptionsDlg::GetImportOptions( ScImportOptions& rOptions ) const in GetImportOptions()
257 rOptions.SetTextEncoding( aLbFont.GetSelectTextEncoding() ); in GetImportOptions()
261 rOptions.nFieldSepCode = GetCodeFromCombo( aEdFieldSep ); in GetImportOptions()
262 rOptions.nTextSepCode = GetCodeFromCombo( aEdTextSep ); in GetImportOptions()
263 rOptions.bFixedWidth = aCbFixed.IsChecked(); in GetImportOptions()
264 rOptions.bSaveAsShown = aCbShown.IsChecked(); in GetImportOptions()
265 rOptions.bQuoteAllText = aCbQuoteAll.IsChecked(); in GetImportOptions()
H A Dcsvtablebox.cxx252 void ScCsvTableBox::FillColumnData( ScAsciiOptions& rOptions ) const in FillColumnData()
255 maGrid.FillColumnDataFix( rOptions ); in FillColumnData()
257 maGrid.FillColumnDataSep( rOptions ); in FillColumnData()
/trunk/main/sc/source/ui/docshell/
H A Dtablink.cxx466 String& rFilter, String& rOptions, in GetFilterName() argument
479 rOptions = GetOptions(*pMed); in GetFilterName()
531 String& rFilterName, String& rOptions, in ScDocumentLoader() argument
537 GetFilterName( rFileName, rFilterName, rOptions, sal_True, bWithInteraction ); in ScDocumentLoader()
543 if ( rOptions.Len() ) in ScDocumentLoader()
544 pSet->Put( SfxStringItem( SID_FILE_FILTEROPTIONS, rOptions ) ); in ScDocumentLoader()
571 if (aNew.Len() && aNew != rOptions) in ScDocumentLoader()
572 rOptions = aNew; in ScDocumentLoader()
/trunk/main/sw/source/ui/dialog/
H A Dascfldlg.cxx310 void SwAsciiFilterDlg::FillOptions( SwAsciiOptions& rOptions ) in FillOptions() argument
321 rOptions.SetFontName( sFont ); in FillOptions()
322 rOptions.SetCharSet( rtl_TextEncoding( nCCode ) ); in FillOptions()
323 rOptions.SetLanguage( sal_uInt16( nLng ) ); in FillOptions()
324 rOptions.SetParaFlags( GetCRLF() ); in FillOptions()
328 rOptions.WriteUserData( sData ); in FillOptions()
/trunk/main/sw/source/ui/uiview/
H A Dviewsrch.cxx668 sal_uLong SwView::FUNC_Search( const SwSearchOptions& rOptions ) in FUNC_Search() argument
725 rOptions.eStart, in FUNC_Search()
726 rOptions.eEnd, in FUNC_Search()
736 rOptions.eStart, in FUNC_Search()
737 rOptions.eEnd, in FUNC_Search()
745 rOptions.eStart, in FUNC_Search()
746 rOptions.eEnd, in FUNC_Search()
H A Dviewprt.cxx278 const SfxItemSet &rOptions, sal_Bool bPreview ) in CreatePrintOptionsPage() argument
286 pPage = (*fnCreatePage)( pParent, rOptions ); in CreatePrintOptionsPage()
288 SfxAllItemSet aSet(*(rOptions.GetPool())); in CreatePrintOptionsPage()
/trunk/main/vcl/unx/generic/fontmanager/
H A Dfontconfig.cxx1112 ImplFontOptions& rOptions) const in getFontOptions()
1115 (void)rInfo;(void)nSize;(void)subcallback;(void)rOptions; in getFontOptions()
1164 rOptions.meEmbeddedBitmap = embitmap ? EMBEDDEDBITMAP_TRUE : EMBEDDEDBITMAP_FALSE; in getFontOptions()
1166 rOptions.meAntiAlias = antialias ? ANTIALIAS_TRUE : ANTIALIAS_FALSE; in getFontOptions()
1168 rOptions.meAutoHint = autohint ? AUTOHINT_TRUE : AUTOHINT_FALSE; in getFontOptions()
1170 rOptions.meHinting = hinting ? HINTING_TRUE : HINTING_FALSE; in getFontOptions()
1173 case FC_HINT_NONE: rOptions.meHintStyle = HINT_NONE; break; in getFontOptions()
1174 case FC_HINT_SLIGHT: rOptions.meHintStyle = HINT_SLIGHT; break; in getFontOptions()
1175 case FC_HINT_MEDIUM: rOptions.meHintStyle = HINT_MEDIUM; break; in getFontOptions()
1177 case FC_HINT_FULL: rOptions.meHintStyle = HINT_FULL; break; in getFontOptions()
/trunk/main/sc/source/core/data/
H A Dcolumn2.cxx186 sal_Bool bWidth, const ScNeededSizeOptions& rOptions ) in GetNeededSize() argument
194 const ScPatternAttr* pPattern = rOptions.pPattern; in GetNeededSize()
208 if ( rOptions.bSkipMerged && pMerge->GetColMerge() > 1 ) in GetNeededSize()
215 if ( rOptions.bSkipMerged && pMerge->GetRowMerge() > 1 ) in GetNeededSize()
317 if (rOptions.bGetFont) in GetNeededSize()
340 sal_True, rOptions.bFormula, ftCheck ); in GetNeededSize()
363 else if ( rOptions.bTotalSize ) in GetNeededSize()
376 if ( bBreak && !rOptions.bTotalSize ) in GetNeededSize()
504 sal_True, rOptions.bFormula, ftCheck ); in GetNeededSize()
530 else if ( rOptions.bTotalSize ) in GetNeededSize()
[all …]
/trunk/main/i18npool/source/search/
H A Dtextsearch.cxx94 void TextSearch::setOptions( const SearchOptions& rOptions ) throw( RuntimeException ) in setOptions() argument
96 aSrchPara = rOptions; in setOptions()
721 void TextSearch::RESrchPrepare( const ::com::sun::star::util::SearchOptions& rOptions) in RESrchPrepare() argument
725 (rOptions.transliterateFlags & REGEX_TRANS_MASK) ? sSrchStr in RESrchPrepare()
726 : ((rOptions.transliterateFlags & COMPLEX_TRANS_MASK) ? sSrchStr2 : rOptions.searchString); in RESrchPrepare()
737 if( (rOptions.searchFlag & com::sun::star::util::SearchFlags::ALL_IGNORE_CASE) != 0 in RESrchPrepare()
738 || (rOptions.transliterateFlags & TransliterationModules_IGNORE_CASE) != 0) in RESrchPrepare()
/trunk/main/sw/source/core/doc/
H A Ddoc.cxx1221 const SwPrintUIOptions &rOptions, in CalculatePagesForPrinting() argument
1225 const sal_Int64 nContent = rOptions.getIntValue( "PrintContent", 0 ); in CalculatePagesForPrinting()
1230 bool bPrintLeftPages = bIsPDFExport ? true : rOptions.IsPrintLeftPages(); in CalculatePagesForPrinting()
1231 bool bPrintRightPages = bIsPDFExport ? true : rOptions.IsPrintRightPages(); in CalculatePagesForPrinting()
1351 aPageRange = rOptions.getStringValue( "PageRange", OUString() ); in CalculatePagesForPrinting()
1382 const SwPrintUIOptions &rOptions, in UpdatePagesForPrintingWithPostItData() argument
1567 const SwPrintUIOptions &rOptions, in CalculatePagePairsForProspectPrinting() argument
1579 rtl::OUString aPageRange = rOptions.getStringValue( "PageRange", rtl::OUString() ); in CalculatePagePairsForProspectPrinting()
1584 const sal_Int64 nContent = rOptions.getIntValue( "PrintContent", 0 ); in CalculatePagePairsForProspectPrinting()
1623 bool bPrintLeftPages = rOptions.IsPrintLeftPages(); in CalculatePagePairsForProspectPrinting()
[all …]
/trunk/main/sc/source/ui/miscdlgs/
H A Dlinkarea.cxx147 …ScLinkedAreaDlg::LoadDocument( const String& rFile, const String& rFilter, const String& rOptions ) in LoadDocument() argument
162 String aNewOptions = rOptions; in LoadDocument()
181 const String& rOptions, const String& rSource, in InitFromOldLink() argument
184 LoadDocument( rFile, rFilter, rOptions ); in InitFromOldLink()
/trunk/main/unotools/source/config/
H A Dlingucfg.cxx197 sal_Bool GetOptions( SvtLinguOptions &rOptions ) const;
198 sal_Bool SetOptions( const SvtLinguOptions &rOptions );
575 sal_Bool SvtLinguConfigItem::GetOptions( SvtLinguOptions &rOptions ) const in GetOptions()
579 rOptions = aOpt; in GetOptions()
584 sal_Bool SvtLinguConfigItem::SetOptions( const SvtLinguOptions &rOptions ) in SetOptions() argument
588 aOpt = rOptions; in SetOptions()
932 sal_Bool SvtLinguConfig::GetOptions( SvtLinguOptions &rOptions ) const in GetOptions()
934 return GetConfigItem().GetOptions( rOptions ); in GetOptions()
938 sal_Bool SvtLinguConfig::SetOptions( const SvtLinguOptions &rOptions ) in SetOptions() argument
940 return GetConfigItem().SetOptions( rOptions ); in SetOptions()
/trunk/main/sw/source/filter/basflt/
H A Dshellio.cxx71 sal_uLong SwReader::Read( const Reader& rOptions ) in Read() argument
74 Reader* po = (Reader*) &rOptions; in Read()
706 sal_Bool SwReader::HasGlossaries( const Reader& rOptions ) in HasGlossaries() argument
709 Reader* po = (Reader*) &rOptions; in HasGlossaries()
721 sal_Bool SwReader::ReadGlossaries( const Reader& rOptions, in ReadGlossaries() argument
725 Reader* po = (Reader*) &rOptions; in ReadGlossaries()
/trunk/main/cui/source/options/
H A Dsecurityoptions.cxx38 bool enableAndSet( const SvtSecurityOptions& rOptions, in enableAndSet() argument
42 bool bEnable = rOptions.IsOptionEnabled( eOption ); in enableAndSet()
45 rCheckBox.Check( rOptions.IsOptionSet( eOption ) ); in enableAndSet()
/trunk/main/sd/source/ui/view/
H A DDocumentRenderer.cxx1262 void ProcessProperties (const css::uno::Sequence<css::beans::PropertyValue >& rOptions) in ProcessProperties() argument
1268 bool bIsValueChanged = processProperties( rOptions ); in ProcessProperties()
1317 const css::uno::Sequence<css::beans::PropertyValue>& rOptions) in GetProperties() argument
1319 (void)rOptions; in GetProperties()
2377 const css::uno::Sequence<css::beans::PropertyValue >& rOptions) in getRendererCount()
2381 mpImpl->ProcessProperties(rOptions); in getRendererCount()
2391 const css::uno::Sequence<css::beans::PropertyValue>& rOptions) in getRenderer() argument
2396 mpImpl->ProcessProperties(rOptions); in getRenderer()
2397 return mpImpl->GetProperties(rOptions); in getRenderer()
2406 const css::uno::Sequence<css::beans::PropertyValue>& rOptions) in render() argument
[all …]
/trunk/main/vcl/unx/generic/printer/
H A Dcupsmgr.cxx857 …ionsFromDocumentSetup( const JobData& rJob, bool bBanner, int& rNumOptions, void** rOptions ) const in getOptionsFromDocumentSetup()
860 *rOptions = NULL; in getOptionsFromDocumentSetup()
883 …PSWrapper->cupsAddOption( aKey.getStr(), aValue.getStr(), rNumOptions, (cups_option_t**)rOptions ); in getOptionsFromDocumentSetup()
891 …= m_pCUPSWrapper->cupsAddOption( "copies", aVal.getStr(), rNumOptions, (cups_option_t**)rOptions ); in getOptionsFromDocumentSetup()
895 …ns = m_pCUPSWrapper->cupsAddOption( "job-sheets", "none", rNumOptions, (cups_option_t**)rOptions ); in getOptionsFromDocumentSetup()
/trunk/main/svtools/inc/svtools/
H A Dprintoptions.hxx82 void GetPrinterOptions( PrinterOptions& rOptions ) const;
83 void SetPrinterOptions( const PrinterOptions& rOptions );
/trunk/main/sc/source/ui/inc/
H A Dlinkarea.hxx82 const String& rOptions );
89 const String& rOptions, const String& rSource,
/trunk/main/sc/inc/
H A Doptuno.hxx49 static sal_Bool setPropertyValue( ScDocOptions& rOptions,
54 const ScDocOptions& rOptions,

Completed in 194 milliseconds

1234