Option Strict On
Option Explicit On

Imports System.Windows.Forms
Imports Nexamas.UI.Theming
Imports SkiaSharp

Namespace Nexamas.UI.Rendering

    Friend Interface IMASPanelShellScrollableHostedContent
        Function TryHandlePanelShellScrollPointerMove(ctx As MASThemeContext, ptPx As SKPoint) As Boolean
        Function TryHandlePanelShellScrollPointerDown(ctx As MASThemeContext, ptPx As SKPoint, button As MouseButtons) As Boolean
        Function TryHandlePanelShellScrollPointerUp(ctx As MASThemeContext, ptPx As SKPoint, button As MouseButtons) As Boolean
        Function TryHandlePanelShellScrollWheel(ctx As MASThemeContext, ptPx As SKPoint, delta As Integer) As Boolean
        Sub CancelPanelShellScrollInteraction()
    End Interface

End Namespace
