diff options
Diffstat (limited to 'include/pugl')
-rw-r--r-- | include/pugl/pugl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/pugl/pugl.h b/include/pugl/pugl.h index 96826a1..9e65aad 100644 --- a/include/pugl/pugl.h +++ b/include/pugl/pugl.h @@ -1027,6 +1027,16 @@ PuglStatus puglSetTransientParent(PuglView* view, PuglNativeView parent); /** + Return the transient parent of the window. + + @return The native handle to the window this view is a transient child of, + or null. +*/ +PUGL_API +PuglNativeView +puglGetTransientParent(const PuglView* view); + +/** Realize a view by creating a corresponding system view or window. After this call, the (initially invisible) underlying system view exists and |