Searched refs:nZoomNumerator (Results 1 – 5 of 5) sorted by relevance
/reactos/dll/win32/riched20/ |
H A D | paint.c | 155 if (c->editor->nZoomNumerator == 0) in ME_twips2pointsX() 158 return x * c->dpi.cx * c->editor->nZoomNumerator / 1440 / c->editor->nZoomDenominator; in ME_twips2pointsX() 163 if (c->editor->nZoomNumerator == 0) in ME_twips2pointsY() 166 return y * c->dpi.cy * c->editor->nZoomNumerator / 1440 / c->editor->nZoomDenominator; in ME_twips2pointsY() 523 if (c->editor->nZoomNumerator != 0) in ME_GetBorderPenWidth() 524 width = MulDiv(width, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_GetBorderPenWidth() 1379 editor->nZoomNumerator = editor->nZoomDenominator = 0; in ME_SetZoom() 1387 editor->nZoomNumerator = numerator; in ME_SetZoom()
|
H A D | editstr.h | 411 int nZoomNumerator, nZoomDenominator; member
|
H A D | richole.c | 5741 if (c->editor->nZoomNumerator != 0) in ME_GetOLEObjectSize() 5743 pSize->cx = MulDiv(pSize->cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_GetOLEObjectSize() 5797 if (c->editor->nZoomNumerator != 0) in ME_GetOLEObjectSize() 5799 pSize->cx = MulDiv(pSize->cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_GetOLEObjectSize() 5800 pSize->cy = MulDiv(pSize->cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_GetOLEObjectSize() 5856 if (c->editor->nZoomNumerator != 0) in ME_DrawOLE() 5858 sz.cx = MulDiv(sz.cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_DrawOLE() 5859 sz.cy = MulDiv(sz.cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_DrawOLE() 5876 if (c->editor->nZoomNumerator != 0) in ME_DrawOLE() 5878 sz.cx = MulDiv(sz.cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator); in ME_DrawOLE() [all …]
|
H A D | wrap.c | 724 if (c->editor->nZoomNumerator == 0) in ME_GetParaLineSpace() 727 return sp * c->editor->nZoomNumerator / c->editor->nZoomDenominator; in ME_GetParaLineSpace()
|
H A D | editor.c | 3084 ed->nZoomNumerator = ed->nZoomDenominator = 0; in ME_MakeEditor() 4422 *(int *)wParam = editor->nZoomNumerator; in ME_HandleMessage() 4700 if (!editor->nZoomNumerator || !editor->nZoomDenominator) in ME_HandleMessage() 4704 numerator = editor->nZoomNumerator * 100 / editor->nZoomDenominator; in ME_HandleMessage()
|