Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Internal bridge for MASControlBase roots that render a MASPanelShell and want
    ''' the common Float host to provide header drag/close behavior.
    ''' </summary>
    Friend Interface IMASPanelShellHostedContent
        ReadOnly Property LastPanelShellResult As MASPanelShellResult
        ReadOnly Property PanelShellDragEnabled As Boolean
        ReadOnly Property PanelShellCloseEnabled As Boolean
        Sub SetPanelShellCloseButtonInteraction(isHover As Boolean, isPressed As Boolean)
        Function RequestPanelShellClose() As Boolean
    End Interface

End Namespace
