Lines Matching refs:aRect
2485 GdkRectangle aRect; in UnionClipRegion() local
2486 aRect.x = nX; in UnionClipRegion()
2487 aRect.y = nY; in UnionClipRegion()
2488 aRect.width = nWidth; in UnionClipRegion()
2489 aRect.height = nHeight; in UnionClipRegion()
2491 gdk_region_union_with_rect( m_pRegion, &aRect ); in UnionClipRegion()
2999 GdkRectangle aRect; in signalConfigure() local
3000 gdk_window_get_frame_extents( GTK_WIDGET(pThis->m_pWindow)->window, &aRect ); in signalConfigure()
3001 pThis->maGeometry.nTopDecoration = y - aRect.y; in signalConfigure()
3002 pThis->maGeometry.nBottomDecoration = aRect.y + aRect.height - y - pEvent->height; in signalConfigure()
3003 pThis->maGeometry.nLeftDecoration = x - aRect.x; in signalConfigure()
3004 pThis->maGeometry.nRightDecoration = aRect.x + aRect.width - x - pEvent->width; in signalConfigure()