Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1.  
  2. [BaseType (typeof (UIViewController))]
  3. interface ATMHud {
  4. [Export ("margin")]
  5. float Margin { get; set; }
  6.  
  7. [Export ("padding")]
  8. float Padding { get; set; }
  9.  
  10. [Export ("alpha")]
  11. float Alpha { get; set; }
  12.  
  13. [Export ("appearScaleFactor")]
  14. float AppearScaleFactor { get; set; }
  15.  
  16. [Export ("disappearScaleFactor")]
  17. float DisappearScaleFactor { get; set; }
  18.  
  19. [Export ("progressBorderRadius")]
  20. float ProgressBorderRadius { get; set; }
  21.  
  22. [Export ("progressBorderWidth")]
  23. float ProgressBorderWidth { get; set; }
  24.  
  25. [Export ("progressBarRadius")]
  26. float ProgressBarRadius { get; set; }
  27.  
  28. [Export ("progressBarInset")]
  29. float ProgressBarInset { get; set; }
  30.  
  31. [Export ("center")]
  32. PointF Center { get; set; }
  33.  
  34. [Export ("shadowEnabled")]
  35. bool ShadowEnabled { get; set; }
  36.  
  37. [Export ("blockTouches")]
  38. bool BlockTouches { get; set; }
  39.  
  40. [Export ("maximizeTouchArea")]
  41. bool MaximizeTouchArea { get; set; }
  42.  
  43. [Export ("useSameSizeInQueue")]
  44. bool UseSameSizeInQueue { get; set; }
  45.  
  46. [Export ("blockUserInt")]
  47. bool BlockUserInt { get; set; }
  48.  
  49. [Export ("showSound")]
  50. string ShowSound { get; set; }
  51.  
  52. [Export ("updateSound")]
  53. string UpdateSound { get; set; }
  54.  
  55. [Export ("hideSound")]
  56. string HideSound { get; set; }
  57.  
  58. [Export ("delegate")]
  59. ATMHudDelegate { get; set; }
  60.  
  61. [Export ("accessoryPosition")]
  62. ATMHudAccessoryPosition AccessoryPosition { get; set; }
  63.  
  64. [Export ("hudView")]
  65. ATMHudView HudView { get; set; }
  66.  
  67. [Export ("displayQueue")]
  68. NSMutableArray DisplayQueue { get; set; }
  69.  
  70. [Export ("queuePosition")]
  71. int QueuePosition { get; set; }
  72.  
  73. [Export ("useStandby")]
  74. bool UseStandby { get; set; }
  75.  
  76. [Export ("sound")]
  77. ATMSoundFX Sound { get; set; }
  78.  
  79. [Static]
  80. [Export ("buildInfo")]
  81. string BuildInfo { get; }
  82.  
  83. [Export ("initWithDelegate:")]
  84. IntPtr Constructor (NSObject hudDelegate);
  85.  
  86. [Export ("setCaption:")]
  87. void SetCaption (string caption);
  88.  
  89. [Export ("setImage:")]
  90. void SetImage (UIImage image);
  91.  
  92. [Export ("setActivity:")]
  93. void SetActivity (bool flag);
  94.  
  95. [Export ("setActivityStyle:")]
  96. void SetActivityStyle (UIActivityIndicatorViewStyle style);
  97.  
  98. [Export ("setFixedSize:")]
  99. void SetFixedSize (CGSize size);
  100.  
  101. [Export ("setProgress:")]
  102. void SetProgress (float progress);
  103.  
  104. [Export ("addToQueueWithCaption:image:accessoryPosition:showActivity:")]
  105. void AddToQueueWithCaptionimageaccessoryPositionshowActivity (string caption, UIImage image, ATMHudAccessoryPosition position, bool flag);
  106.  
  107. [Export ("addToQueueWithCaptions:images:accessoryPositions:showActivities:")]
  108. void AddToQueueWithCaptionsimagesaccessoryPositionsshowActivities (NSArray captions, NSArray images, NSArray positions, NSArray flags);
  109.  
  110. [Export ("clearQueue")]
  111. void ClearQueue ();
  112.  
  113. [Export ("show")]
  114. void Show ();
  115.  
  116. [Export ("showInParentView:")]
  117. void ShowInParentView (UIView pView);
  118.  
  119. [Export ("update")]
  120. void Update ();
  121.  
  122. [Export ("hide")]
  123. void Hide ();
  124.  
  125. [Export ("hideAfter:")]
  126. void HideAfter (double delay);
  127.  
  128. [Export ("startQueue")]
  129. void StartQueue ();
  130.  
  131. [Export ("showNextInQueue")]
  132. void ShowNextInQueue ();
  133.  
  134. [Export ("showQueueAtIndex:")]
  135. void ShowQueueAtIndex (int index);
  136.  
  137. [Export ("playSound:")]
  138. void PlaySound (string soundPath);
  139.  
  140. }
Add Comment
Please, Sign In to add comment