Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / avkit / AVPlayerView.inc
Size: Mime:
{ Parsed from AVKit.framework AVPlayerView.h }


{ Types from AVPlayerView }
{$ifdef TYPES}

type
  AVPlayerViewControlsStyle = NSInteger;
type
  AVPlayerViewControlsStylePtr = ^AVPlayerViewControlsStyle;

const
  AVPlayerViewControlsStyleNone = 0;
  AVPlayerViewControlsStyleInline = 1;
  AVPlayerViewControlsStyleFloating = 2;
  AVPlayerViewControlsStyleMinimal = 3;
  AVPlayerViewControlsStyleDefault = AVPlayerViewControlsStyleInline;
{$endif}


{ Types from AVPlayerViewTrimming }
{$ifdef TYPES}

type
  AVPlayerViewTrimResult = NSInteger;
type
  AVPlayerViewTrimResultPtr = ^AVPlayerViewTrimResult;

const
  AVPlayerViewTrimOKButton = 0;
  AVPlayerViewTrimCancelButton = 1;
{$endif}


{$ifdef TYPES}
type
  AVPlayerViewPtr = ^AVPlayerView;
{$endif}

{$ifdef CLASSES}

type
  AVPlayerView = objcclass external (NSView)
  public
    procedure setPlayer(newValue: AVPlayer); message 'setPlayer:';
    function player: AVPlayer; message 'player';
    procedure setControlsStyle(newValue: AVPlayerViewControlsStyle); message 'setControlsStyle:';
    function controlsStyle: AVPlayerViewControlsStyle; message 'controlsStyle';
    procedure setVideoGravity(newValue: NSString); message 'setVideoGravity:';
    function videoGravity: NSString; message 'videoGravity';
    function isReadyForDisplay: ObjCBOOL; message 'isReadyForDisplay';
    function videoBounds: NSRect; message 'videoBounds';
    function contentOverlayView: NSView; message 'contentOverlayView';
  end;


type
  AVPlayerViewCustomization = objccategory external (AVPlayerView)
    procedure setShowsFrameSteppingButtons(newValue: ObjCBOOL); message 'setShowsFrameSteppingButtons:';
    function showsFrameSteppingButtons: ObjCBOOL; message 'showsFrameSteppingButtons';
    procedure setShowsSharingServiceButton(newValue: ObjCBOOL); message 'setShowsSharingServiceButton:';
    function showsSharingServiceButton: ObjCBOOL; message 'showsSharingServiceButton';
    procedure setActionPopUpButtonMenu(newValue: NSMenu); message 'setActionPopUpButtonMenu:';
    function actionPopUpButtonMenu: NSMenu; message 'actionPopUpButtonMenu';
    procedure setShowsFullScreenToggleButton(newValue: ObjCBOOL); message 'setShowsFullScreenToggleButton:';
    function showsFullScreenToggleButton: ObjCBOOL; message 'showsFullScreenToggleButton';
  end;

type
  AVPlayerViewTrimming = objccategory external (AVPlayerView)
    function canBeginTrimming: ObjCBOOL; message 'canBeginTrimming';
    procedure beginTrimmingWithCompletionHandler (handler: OpaqueCBlock); message 'beginTrimmingWithCompletionHandler:';
  end;

type
  AVPlayerViewChapterIndicator = objccategory external (AVPlayerView)
    procedure flashChapterNumber_chapterTitle (chapterNumber: NSUInteger; chapterTitle: NSString); message 'flashChapterNumber:chapterTitle:';
  end;
{$endif}