Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Shared media command glyphs. This list is intentionally action-neutral so future
    ''' media components can reuse the chrome without referencing MASImageViewer actions.
    ''' </summary>
    Friend Enum MASMediaButtonGlyphKind
        None = 0
        ZoomOut = 1
        ZoomIn = 2
        Fit = 3
        Actual = 4
        RotateLeft = 5
        RotateRight = 6
        FlipHorizontal = 7
        FlipVertical = 8
        Reset = 9
        Export = 10
    End Enum

End Namespace
