/aoo4110/main/svx/workben/ |
H A D | edittest.cxx | 596 ULONG nControl = pEditEngine->GetControlWord(); in UpdateToolBox() local 741 nControl = nControl & ~EE_CNTRL_ONLINESPELLING; in IMPL_LINK() 743 nControl = nControl | EE_CNTRL_ONLINESPELLING; in IMPL_LINK() 750 nControl = nControl & ~EE_CNTRL_NOREDLINES; in IMPL_LINK() 752 nControl = nControl | EE_CNTRL_NOREDLINES; in IMPL_LINK() 759 nControl = nControl & ~EE_CNTRL_AUTOCORRECT; in IMPL_LINK() 761 nControl = nControl | EE_CNTRL_AUTOCORRECT; in IMPL_LINK() 775 nControl = nControl | EE_CNTRL_NOCOLORS; in IMPL_LINK() 777 nControl = nControl & ~EE_CNTRL_NOCOLORS; in IMPL_LINK() 786 nControl = nControl | EE_CNTRL_OUTLINER; in IMPL_LINK() [all …]
|
/aoo4110/main/editeng/source/editeng/ |
H A D | impedit.hxx | 235 sal_uLong nControl; member in ImpEditView 349 sal_Bool IsInsertMode() const { return ( ( nControl & EV_CNTRL_OVERWRITE ) == 0 ); } in IsInsertMode() 351 …void EnablePaste( sal_Bool bEnable ) { SetFlags( nControl, EV_CNTRL_ENABLEPASTE, bEnable );… in EnablePaste() 352 sal_Bool IsPasteEnabled() const { return ( ( nControl & EV_CNTRL_ENABLEPASTE ) != 0 ); } in IsPasteEnabled() 354 sal_Bool DoSingleLinePaste() const { return ( ( nControl & EV_CNTRL_SINGLELINEPASTE ) != 0 ); } in DoSingleLinePaste() 355 sal_Bool DoAutoScroll() const { return ( ( nControl & EV_CNTRL_AUTOSCROLL ) != 0 ); } in DoAutoScroll() 356 sal_Bool DoBigScroll() const { return ( ( nControl & EV_CNTRL_BIGSCROLL ) != 0 ); } in DoBigScroll() 357 sal_Bool DoAutoSize() const { return ( ( nControl & EV_CNTRL_AUTOSIZE ) != 0 ); } in DoAutoSize() 358 sal_Bool DoAutoWidth() const { return ( ( nControl & EV_CNTRL_AUTOSIZEX) != 0 ); } in DoAutoWidth() 359 sal_Bool DoAutoHeight() const { return ( ( nControl & EV_CNTRL_AUTOSIZEY) != 0 ); } in DoAutoHeight() [all …]
|
H A D | editview.cxx | 756 pImpEditView->nControl = nWord; in SetControlWord() 762 return pImpEditView->nControl; in GetControlWord()
|
H A D | impedit.cxx | 92 nControl = EV_CNTRL_AUTOSCROLL | EV_CNTRL_ENABLEPASTE; in ImpEditView() 1114 SetFlags( nControl, EV_CNTRL_OVERWRITE, !bInsert ); in SetInsertMode()
|
/aoo4110/main/cui/source/dialogs/ |
H A D | thesdlg.cxx | 632 sal_Int32 nControl = 0; in IMPL_STATIC_LINK() local 633 while (aControls[nControl]) in IMPL_STATIC_LINK() 635 Point aPos = aControls[nControl]->GetPosPixel(); in IMPL_STATIC_LINK() 637 aControls[nControl]->SetPosPixel(aPos); in IMPL_STATIC_LINK() 638 ++nControl; in IMPL_STATIC_LINK()
|
H A D | SpellDialog.cxx | 518 sal_Int32 nControl = 0; in IMPL_STATIC_LINK() local 519 while( aControls[nControl]) in IMPL_STATIC_LINK() 521 Point aPos = aControls[nControl]->GetPosPixel(); in IMPL_STATIC_LINK() 523 aControls[nControl]->SetPosPixel(aPos); in IMPL_STATIC_LINK() 524 ++nControl; in IMPL_STATIC_LINK()
|
/aoo4110/main/reportdesign/source/filter/xml/ |
H A D | xmlFixedContent.cxx | 66 sal_Int16 nControl ); 90 sal_Int16 nControl ) in OXMLCharContent() argument 91 : XMLCharContext(rImport,nPrfx,rLName,xAttrList,nControl) in OXMLCharContent()
|
/aoo4110/main/writerfilter/source/dmapper/ |
H A D | FormControlHelper.cxx | 228 sal_Int32 nControl = 0; in insertControl() local 235 sTmp += ::rtl::OUString::valueOf(nControl); in insertControl() 237 nControl++; in insertControl()
|
/aoo4110/main/sc/source/ui/app/ |
H A D | inputwin.cxx | 1019 sal_uLong nControl = pEditEngine->GetControlWord(); in UpdateAutoCorrFlag() local 1020 sal_uLong nOld = nControl; in UpdateAutoCorrFlag() 1022 nControl &= ~EE_CNTRL_AUTOCORRECT; // keine Autokorrektur in Formeln in UpdateAutoCorrFlag() 1024 nControl |= EE_CNTRL_AUTOCORRECT; // sonst schon in UpdateAutoCorrFlag() 1025 if ( nControl != nOld ) in UpdateAutoCorrFlag() 1026 pEditEngine->SetControlWord( nControl ); in UpdateAutoCorrFlag()
|
/aoo4110/main/sw/source/ui/vba/ |
H A D | vbaparagraphformat.cxx | 323 sal_Int8 nControl = bWidow? 2:1; in setWidowControl() local 324 …pertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ParaWidows") ), uno::makeAny( nControl ) ); in setWidowControl() 325 …ertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ParaOrphans") ), uno::makeAny( nControl ) ); in setWidowControl()
|
/aoo4110/main/sc/source/core/data/ |
H A D | cell2.cxx | 152 sal_uLong nControl = rEngine.GetControlWord(); in SetTextObject() local 154 sal_Bool bNewControl = ( (nControl & nSpellControl) != nSpellControl ); in SetTextObject() 156 rEngine.SetControlWord( nControl | nSpellControl ); in SetTextObject() 160 rEngine.SetControlWord( nControl ); in SetTextObject()
|
/aoo4110/main/sc/source/ui/view/ |
H A D | output2.cxx | 2408 sal_uLong nControl = pEngine->GetControlWord(); in DrawEdit() local 2410 nControl |= EE_CNTRL_ONECHARPERLINE; in DrawEdit() 2412 nControl &= ~EE_CNTRL_ONECHARPERLINE; in DrawEdit() 2413 pEngine->SetControlWord( nControl ); in DrawEdit() 3155 sal_uLong nControl = pEngine->GetControlWord(); in DrawRotated() local 3157 nControl |= EE_CNTRL_ONECHARPERLINE; in DrawRotated() 3159 nControl &= ~EE_CNTRL_ONECHARPERLINE; in DrawRotated() 3160 pEngine->SetControlWord( nControl ); in DrawRotated()
|
H A D | viewdata.cxx | 1361 sal_uLong nControl = pEditView[eWhich]->GetControlWord(); in EditGrowY() local 1362 if ( nControl & EV_CNTRL_AUTOSCROLL ) in EditGrowY() 1423 if ((nControl & EV_CNTRL_AUTOSCROLL) == 0) in EditGrowY() 1424 pCurView->SetControlWord( nControl | EV_CNTRL_AUTOSCROLL ); in EditGrowY()
|
/aoo4110/main/basctl/source/dlged/ |
H A D | dlgedobj.cxx | 1740 for ( sal_Int32 nControl = 0; nControl < nControlCount; ++nControl ) in UpdateGroups() local 1742 const Reference< awt::XControl > xCtrl( pControls[nControl] ); in UpdateGroups()
|
/aoo4110/main/xmloff/inc/xmloff/ |
H A D | XMLCharContext.hxx | 54 sal_Int16 nControl );
|
H A D | txtimp.hxx | 478 void InsertControlCharacter( sal_Int16 nControl );
|
/aoo4110/main/xmloff/source/text/ |
H A D | txtparai.cxx | 129 sal_Int16 nControl ) : in XMLCharContext() argument 131 ,m_nControl(nControl) in XMLCharContext()
|
H A D | txtimp.cxx | 1213 void XMLTextImportHelper::InsertControlCharacter( sal_Int16 nControl ) in InsertControlCharacter() argument 1220 m_pImpl->m_xCursorAsRange, nControl, sal_False); in InsertControlCharacter()
|
/aoo4110/main/vcl/source/gdi/ |
H A D | pdfwriter_impl.hxx | 1311 void beginControlAppearance( sal_Int32 nControl );
|
H A D | pdfwriter_impl.cxx | 12108 void PDFWriterImpl::beginControlAppearance( sal_Int32 nControl ) in beginControlAppearance() argument 12110 if( nControl < 0 || nControl >= (sal_Int32)m_aWidgets.size() ) in beginControlAppearance() 12113 PDFWidget& rWidget = m_aWidgets[ nControl ]; in beginControlAppearance() 12114 m_nCurrentControl = nControl; in beginControlAppearance()
|