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 / osakit / OSALanguageInstance.inc
Size: Mime:
{ Parsed from OSAKit.framework OSALanguageInstance.h }


{$ifdef TYPES}
type
  OSALanguageInstancePtr = ^OSALanguageInstance;
{$endif}

{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)}
{$ifdef CLASSES}

type
  OSALanguageInstance = objcclass external (NSObject)
  private
    _private: OSALanguageInstancePrivate;
  public
    class function languageInstanceWithLanguage (language: OSALanguage): instancetype; message 'languageInstanceWithLanguage:';
    function initWithLanguage (language: OSALanguage): instancetype; message 'initWithLanguage:';
    function language: OSALanguage; message 'language';
    function componentInstance: ComponentInstance; message 'componentInstance';
    procedure setDefaultTarget(newValue: NSAppleEventDescriptor); message 'setDefaultTarget:';
    function defaultTarget: NSAppleEventDescriptor; message 'defaultTarget';
    function richTextFromDescriptor (descriptor: NSAppleEventDescriptor): NSAttributedString; message 'richTextFromDescriptor:'; { available in 10_10 }
  end;
{$endif}

{$endif}