Lines Matching refs:pState
281 void SvpSalFrame::SetWindowState( const SalFrameState *pState ) in SetWindowState() argument
283 if (pState == NULL) in SetWindowState()
287 if (pState->mnMask & _FRAMESTATE_MASK_GEOMETRY) in SetWindowState()
295 if (pState->mnMask & SAL_FRAMESTATE_MASK_X) in SetWindowState()
296 nX = pState->mnX; in SetWindowState()
297 if (pState->mnMask & SAL_FRAMESTATE_MASK_Y) in SetWindowState()
298 nY = pState->mnY; in SetWindowState()
299 if (pState->mnMask & SAL_FRAMESTATE_MASK_WIDTH) in SetWindowState()
300 nWidth = pState->mnWidth; in SetWindowState()
301 if (pState->mnMask & SAL_FRAMESTATE_MASK_HEIGHT) in SetWindowState()
302 nHeight = pState->mnHeight; in SetWindowState()
310 sal_Bool SvpSalFrame::GetWindowState( SalFrameState* pState ) in GetWindowState() argument
312 pState->mnState = SAL_FRAMESTATE_NORMAL; in GetWindowState()
313 pState->mnX = maGeometry.nX; in GetWindowState()
314 pState->mnY = maGeometry.nY; in GetWindowState()
315 pState->mnWidth = maGeometry.nWidth; in GetWindowState()
316 pState->mnHeight = maGeometry.nHeight; in GetWindowState()
317 pState->mnMask = _FRAMESTATE_MASK_GEOMETRY | SAL_FRAMESTATE_MASK_STATE; in GetWindowState()