Lines Matching refs:pImpl

164 	pImpl(new SvxAsianLayoutPage_Impl)  in SvxAsianLayoutPage()
181 delete pImpl; in ~SvxAsianLayoutPage()
197 pImpl->aConfig.SetKerningWesternTextOnly(aCharKerningRB.IsChecked()); in FillItemSet()
199 if(pImpl->xPrSetInfo.is() && pImpl->xPrSetInfo->hasPropertyByName(sPunct)) in FillItemSet()
204 pImpl->xPrSet->setPropertyValue(sPunct, aVal); in FillItemSet()
213 pImpl->aConfig.SetCharDistanceCompression(nSet); in FillItemSet()
215 if(pImpl->xPrSetInfo.is() && pImpl->xPrSetInfo->hasPropertyByName(sCompress)) in FillItemSet()
219 pImpl->xPrSet->setPropertyValue(sCompress, aVal); in FillItemSet()
222 if(pImpl->aConfig.IsModified()) in FillItemSet()
223 pImpl->aConfig.Commit(); in FillItemSet()
224 if(pImpl->xForbidden.is()) in FillItemSet()
228 for( SvxForbiddenChars_Impl* pElem = pImpl->aChangedLanguagesTbl.First(); in FillItemSet()
229 pElem; pElem = pImpl->aChangedLanguagesTbl.Next() ) in FillItemSet()
231 sal_uLong nLang = pImpl->aChangedLanguagesTbl.GetKey( pElem ); in FillItemSet()
235 pImpl->xForbidden->removeForbiddenCharacters( aLocale ); in FillItemSet()
237 pImpl->xForbidden->setForbiddenCharacters( aLocale, *pElem->pCharacters ); in FillItemSet()
262 pImpl->xPrSet = Reference<XPropertySet>( in Reset()
265 if( pImpl->xPrSet.is() ) in Reset()
266 pImpl->xPrSetInfo = pImpl->xPrSet->getPropertySetInfo(); in Reset()
268 sal_Bool bKernWesternText = pImpl->aConfig.IsKerningWesternTextOnly(); in Reset()
269 sal_Int16 nCompress = pImpl->aConfig.GetCharDistanceCompression(); in Reset()
270 if(pImpl->xPrSetInfo.is()) in Reset()
272 if(pImpl->xPrSetInfo->hasPropertyByName(sForbidden)) in Reset()
274 Any aForbidden = pImpl->xPrSet->getPropertyValue(sForbidden); in Reset()
275 aForbidden >>= pImpl->xForbidden; in Reset()
278 if(pImpl->xPrSetInfo->hasPropertyByName(sCompress)) in Reset()
280 Any aVal = pImpl->xPrSet->getPropertyValue(sCompress); in Reset()
284 if(pImpl->xPrSetInfo->hasPropertyByName(sPunct)) in Reset()
286 Any aVal = pImpl->xPrSet->getPropertyValue(sPunct); in Reset()
350 if(pImpl->xForbidden.is()) in IMPL_LINK()
352 bAvail = pImpl->hasForbiddenCharacters(eSelectLanguage); in IMPL_LINK()
355 SvxForbiddenChars_Impl* pElement = pImpl->getForbiddenCharacters(eSelectLanguage); in IMPL_LINK()
370 bAvail = pImpl->xForbidden->hasForbiddenCharacters(aLocale); in IMPL_LINK()
373 ForbiddenCharacters aForbidden = pImpl->xForbidden->getForbiddenCharacters( aLocale ); in IMPL_LINK()
386 bAvail = pImpl->aConfig.GetStartEndChars( aLocale, sStart, sEnd ); in IMPL_LINK()
431 if(pImpl->xForbidden.is()) in IMPL_LINK()
441 pImpl->addForbiddenCharacters(eSelectLanguage, &aSet); in IMPL_LINK()
444 pImpl->addForbiddenCharacters(eSelectLanguage, 0); in IMPL_LINK()
452 pImpl->aConfig.SetStartEndChars( aLocale, bEnable ? &sStart : 0, bEnable ? &sEnd : 0); in IMPL_LINK()