Home
last modified time | relevance | path

Searched refs:parentAllocation (Results 1 – 1 of 1) sorted by relevance

/dports/audio/praat/praat-6.2.03/sys/
H A DGuiWindow.cpp45 GtkAllocation *parentAllocation = (GtkAllocation *) data; in _GuiWindow_child_resizeCallback() local
67 …if (left < 0) left += parentAllocation -> width; // this replicates structGuiControl :: v_p… in _GuiWindow_child_resizeCallback()
68 if (right <= 0) right += parentAllocation -> width; in _GuiWindow_child_resizeCallback()
69 if (top < 0) top += parentAllocation -> height; in _GuiWindow_child_resizeCallback()
70 if (bottom <= 0) bottom += parentAllocation -> height; in _GuiWindow_child_resizeCallback()
72 …GtkAllocation childAllocation { parentAllocation -> x + left, parentAllocation -> y + top, right -… in _GuiWindow_child_resizeCallback()