Lines Matching refs:aInfo
68 MONITORINFOEXW aInfo; in handleMonitorCallback() local
69 aInfo.cbSize = sizeof( aInfo ); in handleMonitorCallback()
70 if( GetMonitorInfoW( reinterpret_cast<HMONITOR>(hMonitor), &aInfo ) ) in handleMonitorCallback()
72 aInfo.szDevice[CCHDEVICENAME-1] = 0; in handleMonitorCallback()
73 rtl::OUString aDeviceName( reinterpret_cast<const sal_Unicode *>(aInfo.szDevice) ); in handleMonitorCallback()
79 rMon.m_aArea = Rectangle( Point( aInfo.rcMonitor.left, in handleMonitorCallback()
80 aInfo.rcMonitor.top ), in handleMonitorCallback()
81 Size( aInfo.rcMonitor.right - aInfo.rcMonitor.left, in handleMonitorCallback()
82 aInfo.rcMonitor.bottom - aInfo.rcMonitor.top ) ); in handleMonitorCallback()
83 rMon.m_aWorkArea = Rectangle( Point( aInfo.rcWork.left, in handleMonitorCallback()
84 aInfo.rcWork.top ), in handleMonitorCallback()
85 Size( aInfo.rcWork.right - aInfo.rcWork.left, in handleMonitorCallback()
86 aInfo.rcWork.bottom - aInfo.rcWork.top ) ); in handleMonitorCallback()
87 if( (aInfo.dwFlags & MONITORINFOF_PRIMARY) != 0 ) in handleMonitorCallback()