Option Strict On
Option Explicit On

Namespace Nexamas.UI.Controls

    ''' <summary>
    ''' Optional public contract for MAS controls that expose tooltip text to the root-owned tooltip service.
    ''' The tooltip runtime itself remains internal; applications register through MASApplicationWindow.Services.Tooltips.
    ''' </summary>
    Friend Interface IMASTooltipProvider

        ''' <summary>
        ''' Gets the current tooltip text for this control. Empty text means no tooltip is shown.
        ''' </summary>
        ReadOnly Property Tooltip As String

    End Interface

End Namespace
