/aoo41x/main/sw/source/ui/envelp/ |
H A D | envimg.cxx | 275 …case 3: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lAddrFromLeft)) ; break… in Commit() 276 …case 4: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lAddrFromTop)) ; break… in Commit() 277 …case 5: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lSendFromLeft)) ; break… in Commit() 278 …case 6: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lSendFromTop)) ; break… in Commit() 279 …case 7: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lWidth)) ; break;// "F… in Commit() 280 …case 8: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lHeight)) ; break;// "F… in Commit() 283 …case 11: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lShiftRight));break; //… in Commit() 284 …case 12: pValues[nProp] <<= static_cast <sal_Int32>(TWIP_TO_MM100(aEnvItem.lShiftDown)); break;// … in Commit()
|
H A D | labelcfg.cxx | 142 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lHDist) ); sTmp += sColon; in lcl_CreateProperties() 143 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lVDist)); sTmp += sColon; in lcl_CreateProperties() 144 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lWidth) ); sTmp += sColon; in lcl_CreateProperties() 145 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lHeight) ); sTmp += sColon; in lcl_CreateProperties() 146 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lLeft) ); sTmp += sColon; in lcl_CreateProperties() 147 sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lUpper) ); sTmp += sColon; in lcl_CreateProperties()
|
H A D | labimg.cxx | 427 …case 5: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lHDist));break;// "Format/H… in Commit() 428 …case 6: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lVDist));break;// "Format/V… in Commit() 429 …case 7: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lWidth)); break;// "Forma… in Commit() 430 …case 8: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lHeight)); break;// "Form… in Commit() 431 …case 9: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lLeft)); break;// "Format… in Commit() 432 …case 10: pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(aItem.lUpper)); break;// "Forma… in Commit()
|
/aoo41x/main/svx/source/items/ |
H A D | grfitem.cxx | 35 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 128 aRet.Right = TWIP_TO_MM100(aRet.Right ); in QueryValue() 129 aRet.Top = TWIP_TO_MM100(aRet.Top ); in QueryValue() 130 aRet.Left = TWIP_TO_MM100(aRet.Left ); in QueryValue() 131 aRet.Bottom = TWIP_TO_MM100(aRet.Bottom); in QueryValue()
|
H A D | algitem.cxx | 56 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 684 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nLeftMargin) : nLeftMargin ); in QueryValue() 687 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nRightMargin) : nRightMargin ); in QueryValue() 690 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nTopMargin) : nTopMargin ); in QueryValue() 693 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nBottomMargin) : nBottomMargin ); in QueryValue() 707 long nMaxVal = bConvert ? TWIP_TO_MM100(SHRT_MAX) : SHRT_MAX; // Members sind sal_Int16 in PutValue()
|
/aoo41x/main/svx/source/dialog/ |
H A D | rulritem.cxx | 59 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 73 aLeftRightMargin.Left = bConvert ? TWIP_TO_MM100( lLeft ) : lLeft; in QueryValue() 74 aLeftRightMargin.Right = bConvert ? TWIP_TO_MM100( lRight ) : lRight; in QueryValue() 85 nVal = TWIP_TO_MM100( nVal ); in QueryValue() 199 aUpperLowerMargin.Upper = bConvert ? TWIP_TO_MM100( lLeft ) : lLeft; in QueryValue() 200 aUpperLowerMargin.Lower = bConvert ? TWIP_TO_MM100( lRight ) : lRight; in QueryValue() 211 nVal = TWIP_TO_MM100( nVal ); in QueryValue()
|
/aoo41x/main/svl/source/items/ |
H A D | ptitem.cxx | 40 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 145 aTmp.X = TWIP_TO_MM100(aTmp.X); in QueryValue() 146 aTmp.Y = TWIP_TO_MM100(aTmp.Y); in QueryValue()
|
/aoo41x/main/sw/source/core/unocore/ |
H A D | unodraw.cxx | 676 aMM100Pos.X = TWIP_TO_MM100(pDesc->GetHOrient()->GetPos()); in add() 689 aMM100Pos.Y = TWIP_TO_MM100(pDesc->GetVOrient()->GetPos()); in add() 1532 awt::Point aPoint( TWIP_TO_MM100( aPt.X() ), in getPropertyValue() 1533 TWIP_TO_MM100( aPt.Y() ) ); in getPropertyValue() 2278 aOffset.X = TWIP_TO_MM100(aOffset.X); in getPosition() 2279 aOffset.Y = TWIP_TO_MM100(aOffset.Y); in getPosition() 2464 aAttrPos.X = TWIP_TO_MM100(aObjRect.Left()); in _GetAttrPosition() 2465 aAttrPos.Y = TWIP_TO_MM100(aObjRect.Top()); in _GetAttrPosition() 2560 TWIP_TO_MM100( aTmpObjPos.X() - pObj->GetAnchorPos().X() ), in _ConvertTransformationToLayoutDir() 2711 TWIP_TO_MM100( aTmpObjPos.X() - pObj->GetAnchorPos().X() ), in _ConvertStartOrEndPosToLayoutDir() [all …]
|
H A D | unosett.cxx | 1525 sal_Int32 nINT32 = TWIP_TO_MM100(rFmt.GetAbsLSpace()); in GetNumberingRuleByIndex() 1530 nINT32 = TWIP_TO_MM100(rFmt.GetCharTextDistance()); in GetNumberingRuleByIndex() 1535 nINT32 = TWIP_TO_MM100(rFmt.GetFirstLineOffset()); in GetNumberingRuleByIndex() 1571 sal_Int32 nINT32 = TWIP_TO_MM100(rFmt.GetListtabPos()); in GetNumberingRuleByIndex() 1578 nINT32 = TWIP_TO_MM100(rFmt.GetFirstLineIndent()); in GetNumberingRuleByIndex() 1585 nINT32 = TWIP_TO_MM100(rFmt.GetIndentAt()); in GetNumberingRuleByIndex() 1663 awt::Size aAwtSize(TWIP_TO_MM100(aSize.Width()), TWIP_TO_MM100(aSize.Height())); in GetNumberingRuleByIndex() 2548 nAutoDistance = TWIP_TO_MM100(nAutoDistance); in SwXTextColumns() 2742 aRet <<= static_cast < sal_Int32 >(TWIP_TO_MM100(nSepLineWidth)); in getPropertyValue()
|
/aoo41x/main/sw/source/ui/utlui/ |
H A D | uiitems.cxx | 130 … case MID_FTN_HEIGHT : rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetHeight());break; in QueryValue() 141 … case MID_LINE_TEXT_DIST : rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetTopDist());break; in QueryValue() 142 …case MID_LINE_FOOTNOTE_DIST: rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetBottomDist());break; in QueryValue()
|
/aoo41x/main/sw/source/filter/html/ |
H A D | htmlform.cxx | 992 nLeftSpace = static_cast< sal_uInt16 >(TWIP_TO_MM100( aLRItem.GetLeft() )); in InsertControl() 997 nRightSpace = static_cast< sal_uInt16 >(TWIP_TO_MM100( aLRItem.GetRight() )); in InsertControl() 1184 nXPos = TWIP_TO_MM100( rCSS1PropInfo.nLeft ) + nLeftSpace; in InsertControl() 1185 nYPos = TWIP_TO_MM100( rCSS1PropInfo.nTop ) + nUpperSpace; in InsertControl() 1908 aSz.Width() = TWIP_TO_MM100( aCSS1PropInfo.nWidth ); in InsertInput() 1914 aSz.Height() = TWIP_TO_MM100( aCSS1PropInfo.nHeight ); in InsertInput() 2181 aSz.Width() = TWIP_TO_MM100( aCSS1PropInfo.nWidth ); in NewTextArea() 2186 aSz.Height() = TWIP_TO_MM100( aCSS1PropInfo.nHeight ); in NewTextArea() 2464 aSz.Width() = TWIP_TO_MM100( aCSS1PropInfo.nWidth ); in NewSelect() 2470 aSz.Height() = TWIP_TO_MM100( aCSS1PropInfo.nHeight ); in NewSelect()
|
/aoo41x/main/writerfilter/source/dmapper/ |
H A D | ConversionHelper.cxx | 40 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 113 sal_Int32 nLineThickness = TWIP_TO_MM100(nLineThicknessTwip); in MakeBorderLine() 462 return TWIP_TO_MM100( _t ); in convertTwipToMM100()
|
/aoo41x/main/sw/source/filter/xml/ |
H A D | xmlexp.cxx | 498 pValue[nIndex++].Value <<= bTwip ? TWIP_TO_MM100 ( rRect.Top() ) : rRect.Top(); in GetViewSettings() 501 pValue[nIndex++].Value <<= bTwip ? TWIP_TO_MM100 ( rRect.Left() ) : rRect.Left(); in GetViewSettings() 504 pValue[nIndex++].Value <<= bTwip ? TWIP_TO_MM100 ( rRect.GetWidth() ) : rRect.GetWidth(); in GetViewSettings() 507 pValue[nIndex++].Value <<= bTwip ? TWIP_TO_MM100 ( rRect.GetHeight() ) : rRect.GetHeight(); in GetViewSettings()
|
/aoo41x/main/sw/source/ui/uiview/ |
H A D | view.cxx | 1497 pValue->Value <<= TWIP_TO_MM100 ( rRect.Left() ); in WriteUserDataSequence() 1501 pValue->Value <<= TWIP_TO_MM100 ( rRect.Top() ); in WriteUserDataSequence() 1505 pValue->Value <<= TWIP_TO_MM100 ( rVis.Left() ); in WriteUserDataSequence() 1509 pValue->Value <<= TWIP_TO_MM100 ( rVis.Top() ); in WriteUserDataSequence() 1513 pValue->Value <<= TWIP_TO_MM100 ( bBrowse ? LONG_MIN : rVis.Right() ); in WriteUserDataSequence() 1517 pValue->Value <<= TWIP_TO_MM100 ( bBrowse ? LONG_MIN : rVis.Bottom() ); in WriteUserDataSequence()
|
/aoo41x/main/sw/source/ui/config/ |
H A D | usrpref.cxx | 330 …case 15: rVal <<= static_cast<sal_Int32>(TWIP_TO_MM100(rParent.GetDefTab())); break;// "Other/TabS… in Commit() 459 …case 3: pValues[nProp] <<= (sal_Int32)TWIP_TO_MM100(rParent.GetSnapSize().Width()); break;// … in Commit() 460 …case 4: pValues[nProp] <<= (sal_Int32)TWIP_TO_MM100(rParent.GetSnapSize().Height()); break;// … in Commit()
|
H A D | fontcfg.cxx | 178 …pValues[nProp] <<= static_cast<sal_Int32>(TWIP_TO_MM100(nDefaultFontHeight[nProp - DEF_FONT_COUNT]… in Commit()
|
/aoo41x/main/sw/source/core/graphic/ |
H A D | ndgrf.cxx | 1219 rGA.SetCrop( TWIP_TO_MM100( rCrop.GetLeft() ), in GetGraphicAttr() 1220 TWIP_TO_MM100( rCrop.GetTop() ), in GetGraphicAttr() 1221 TWIP_TO_MM100( rCrop.GetRight() ), in GetGraphicAttr() 1222 TWIP_TO_MM100( rCrop.GetBottom() ) ); in GetGraphicAttr()
|
/aoo41x/main/editeng/source/items/ |
H A D | paraitem.cxx | 74 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 159 aLSp.Height = ( bConvert ? (short)TWIP_TO_MM100(nInterLineSpace) : nInterLineSpace); in QueryValue() 1028 … pArr[i].Position = bConvert ? TWIP_TO_MM100(rTab.GetTabPos()) : rTab.GetTabPos(); in QueryValue() 1048 … rVal <<= static_cast<sal_Int32>(bConvert ? TWIP_TO_MM100(rTab.GetTabPos()) : rTab.GetTabPos()); in QueryValue()
|
H A D | frmitems.cxx | 96 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 225 aTmp.Height = TWIP_TO_MM100(aTmp.Height); in QueryValue() 226 aTmp.Width = TWIP_TO_MM100(aTmp.Width); in QueryValue() 440 rVal <<= (sal_Int32)(bConvert ? TWIP_TO_MM100(nLeftMargin) : nLeftMargin); in QueryValue() 444 rVal <<= (sal_Int32)(bConvert ? TWIP_TO_MM100(nTxtLeft) : nTxtLeft); in QueryValue() 447 rVal <<= (sal_Int32)(bConvert ? TWIP_TO_MM100(nRightMargin) : nRightMargin); in QueryValue() 457 rVal <<= (sal_Int32)(bConvert ? TWIP_TO_MM100(nFirstLineOfst) : nFirstLineOfst); in QueryValue()
|
H A D | textitem.cxx | 118 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro 983 nDiff = (short)TWIP_TO_MM100((long)(nDiff)); in lcl_GetRealHeight_Impl() 1078 nHeight += bConvert ? nCoreDiffValue : TWIP_TO_MM100(nCoreDiffValue); in PutValue() 2295 nVal = (sal_Int16)TWIP_TO_MM100(nVal); in QueryValue()
|
/aoo41x/main/sw/source/core/layout/ |
H A D | atrfrm.cxx | 292 aTmp.Height = TWIP_TO_MM100(aSize.Height()); in QueryValue() 293 aTmp.Width = TWIP_TO_MM100(aSize.Width()); in QueryValue() 316 rVal <<= (sal_Int32)TWIP_TO_MM100(aSize.Width()); in QueryValue() 323 rVal <<= (sal_Int32)TWIP_TO_MM100(aSize.Height() < MINLAY ? MINLAY : aSize.Height() ); in QueryValue() 1292 rVal <<= (sal_Int32)TWIP_TO_MM100(GetPos()); in QueryValue() 1408 rVal <<= (sal_Int32)TWIP_TO_MM100(GetPos()); in QueryValue()
|
/aoo41x/main/sw/source/ui/vba/ |
H A D | vbainformationhelper.cxx | 65 …nCurrentPos = nCurrentPos + nTopMargin - ( DEFAULT_PAGE_DISTANCE + TWIP_TO_MM100( nPageHeight ) ) … in handleWdVerticalPositionRelativeToPage()
|
/aoo41x/main/cui/source/tabpages/ |
H A D | numpages.cxx | 3125 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) in lcl_PrintDebugOutput() macro 3130 String sDebugText( UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetAbsLSpace() ) ) ); in lcl_PrintDebugOutput() 3132 sDebugText += UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetCharTextDistance() ) ); in lcl_PrintDebugOutput() 3134 sDebugText += UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetFirstLineOffset() ) ); in lcl_PrintDebugOutput() 3139 String sDebugText( UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetListtabPos() ) ) ); in lcl_PrintDebugOutput() 3141 sDebugText += UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetFirstLineIndent() ) ); in lcl_PrintDebugOutput() 3143 sDebugText += UniString::CreateFromInt32( TWIP_TO_MM100(rNumFmt.GetIndentAt() ) ); in lcl_PrintDebugOutput()
|
/aoo41x/main/sw/source/ui/uno/ |
H A D | unomod.cxx | 929 rValue <<= (sal_Int32) TWIP_TO_MM100(mpConstViewOption->GetSnapSize().Width()); in _getSingleValue() 933 rValue <<= (sal_Int32) TWIP_TO_MM100(mpConstViewOption->GetSnapSize().Height()); in _getSingleValue()
|
/aoo41x/main/sw/inc/ |
H A D | swtypes.hxx | 233 #define TWIP_TO_MM100(TWIP) ((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L)) macro
|