CHIPageControl-Swift.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. // Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
  2. #ifndef CHIPAGECONTROL_SWIFT_H
  3. #define CHIPAGECONTROL_SWIFT_H
  4. #pragma clang diagnostic push
  5. #pragma clang diagnostic ignored "-Wgcc-compat"
  6. #if !defined(__has_include)
  7. # define __has_include(x) 0
  8. #endif
  9. #if !defined(__has_attribute)
  10. # define __has_attribute(x) 0
  11. #endif
  12. #if !defined(__has_feature)
  13. # define __has_feature(x) 0
  14. #endif
  15. #if !defined(__has_warning)
  16. # define __has_warning(x) 0
  17. #endif
  18. #if __has_include(<swift/objc-prologue.h>)
  19. # include <swift/objc-prologue.h>
  20. #endif
  21. #pragma clang diagnostic ignored "-Wauto-import"
  22. #include <Foundation/Foundation.h>
  23. #include <stdint.h>
  24. #include <stddef.h>
  25. #include <stdbool.h>
  26. #if !defined(SWIFT_TYPEDEFS)
  27. # define SWIFT_TYPEDEFS 1
  28. # if __has_include(<uchar.h>)
  29. # include <uchar.h>
  30. # elif !defined(__cplusplus)
  31. typedef uint_least16_t char16_t;
  32. typedef uint_least32_t char32_t;
  33. # endif
  34. typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
  35. typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
  36. typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
  37. typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
  38. typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
  39. typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
  40. typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
  41. typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
  42. typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
  43. typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
  44. typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
  45. typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
  46. #endif
  47. #if !defined(SWIFT_PASTE)
  48. # define SWIFT_PASTE_HELPER(x, y) x##y
  49. # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
  50. #endif
  51. #if !defined(SWIFT_METATYPE)
  52. # define SWIFT_METATYPE(X) Class
  53. #endif
  54. #if !defined(SWIFT_CLASS_PROPERTY)
  55. # if __has_feature(objc_class_property)
  56. # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
  57. # else
  58. # define SWIFT_CLASS_PROPERTY(...)
  59. # endif
  60. #endif
  61. #if __has_attribute(objc_runtime_name)
  62. # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
  63. #else
  64. # define SWIFT_RUNTIME_NAME(X)
  65. #endif
  66. #if __has_attribute(swift_name)
  67. # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
  68. #else
  69. # define SWIFT_COMPILE_NAME(X)
  70. #endif
  71. #if __has_attribute(objc_method_family)
  72. # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
  73. #else
  74. # define SWIFT_METHOD_FAMILY(X)
  75. #endif
  76. #if __has_attribute(noescape)
  77. # define SWIFT_NOESCAPE __attribute__((noescape))
  78. #else
  79. # define SWIFT_NOESCAPE
  80. #endif
  81. #if __has_attribute(ns_consumed)
  82. # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
  83. #else
  84. # define SWIFT_RELEASES_ARGUMENT
  85. #endif
  86. #if __has_attribute(warn_unused_result)
  87. # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  88. #else
  89. # define SWIFT_WARN_UNUSED_RESULT
  90. #endif
  91. #if __has_attribute(noreturn)
  92. # define SWIFT_NORETURN __attribute__((noreturn))
  93. #else
  94. # define SWIFT_NORETURN
  95. #endif
  96. #if !defined(SWIFT_CLASS_EXTRA)
  97. # define SWIFT_CLASS_EXTRA
  98. #endif
  99. #if !defined(SWIFT_PROTOCOL_EXTRA)
  100. # define SWIFT_PROTOCOL_EXTRA
  101. #endif
  102. #if !defined(SWIFT_ENUM_EXTRA)
  103. # define SWIFT_ENUM_EXTRA
  104. #endif
  105. #if !defined(SWIFT_CLASS)
  106. # if __has_attribute(objc_subclassing_restricted)
  107. # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
  108. # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
  109. # else
  110. # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
  111. # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
  112. # endif
  113. #endif
  114. #if !defined(SWIFT_RESILIENT_CLASS)
  115. # if __has_attribute(objc_class_stub)
  116. # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
  117. # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
  118. # else
  119. # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
  120. # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
  121. # endif
  122. #endif
  123. #if !defined(SWIFT_PROTOCOL)
  124. # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
  125. # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
  126. #endif
  127. #if !defined(SWIFT_EXTENSION)
  128. # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
  129. #endif
  130. #if !defined(OBJC_DESIGNATED_INITIALIZER)
  131. # if __has_attribute(objc_designated_initializer)
  132. # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
  133. # else
  134. # define OBJC_DESIGNATED_INITIALIZER
  135. # endif
  136. #endif
  137. #if !defined(SWIFT_ENUM_ATTR)
  138. # if defined(__has_attribute) && __has_attribute(enum_extensibility)
  139. # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
  140. # else
  141. # define SWIFT_ENUM_ATTR(_extensibility)
  142. # endif
  143. #endif
  144. #if !defined(SWIFT_ENUM)
  145. # define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
  146. # if __has_feature(generalized_swift_name)
  147. # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
  148. # else
  149. # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
  150. # endif
  151. #endif
  152. #if !defined(SWIFT_UNAVAILABLE)
  153. # define SWIFT_UNAVAILABLE __attribute__((unavailable))
  154. #endif
  155. #if !defined(SWIFT_UNAVAILABLE_MSG)
  156. # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
  157. #endif
  158. #if !defined(SWIFT_AVAILABILITY)
  159. # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
  160. #endif
  161. #if !defined(SWIFT_WEAK_IMPORT)
  162. # define SWIFT_WEAK_IMPORT __attribute__((weak_import))
  163. #endif
  164. #if !defined(SWIFT_DEPRECATED)
  165. # define SWIFT_DEPRECATED __attribute__((deprecated))
  166. #endif
  167. #if !defined(SWIFT_DEPRECATED_MSG)
  168. # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
  169. #endif
  170. #if __has_feature(attribute_diagnose_if_objc)
  171. # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
  172. #else
  173. # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
  174. #endif
  175. #if !defined(IBSegueAction)
  176. # define IBSegueAction
  177. #endif
  178. #if !defined(SWIFT_EXTERN)
  179. # if defined(__cplusplus)
  180. # define SWIFT_EXTERN extern "C"
  181. # else
  182. # define SWIFT_EXTERN extern
  183. # endif
  184. #endif
  185. #if __has_feature(modules)
  186. #if __has_warning("-Watimport-in-framework-header")
  187. #pragma clang diagnostic ignored "-Watimport-in-framework-header"
  188. #endif
  189. @import CoreGraphics;
  190. @import UIKit;
  191. #endif
  192. #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
  193. #pragma clang diagnostic ignored "-Wduplicate-method-arg"
  194. #if __has_warning("-Wpragma-clang-attribute")
  195. # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
  196. #endif
  197. #pragma clang diagnostic ignored "-Wunknown-pragmas"
  198. #pragma clang diagnostic ignored "-Wnullability"
  199. #if __has_attribute(external_source_symbol)
  200. # pragma push_macro("any")
  201. # undef any
  202. # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="CHIPageControl",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
  203. # pragma pop_macro("any")
  204. #endif
  205. @class UIColor;
  206. @class NSCoder;
  207. IB_DESIGNABLE
  208. SWIFT_CLASS("_TtC14CHIPageControl18CHIBasePageControl")
  209. @interface CHIBasePageControl : UIControl
  210. @property (nonatomic) IBInspectable NSInteger numberOfPages;
  211. @property (nonatomic) IBInspectable double progress;
  212. @property (nonatomic) IBInspectable CGFloat padding;
  213. @property (nonatomic) IBInspectable CGFloat radius;
  214. @property (nonatomic) IBInspectable CGFloat inactiveTransparency;
  215. @property (nonatomic) IBInspectable BOOL hidesForSinglePage;
  216. @property (nonatomic) IBInspectable CGFloat borderWidth;
  217. @property (nonatomic, strong) UIColor * _Null_unspecified tintColor;
  218. @property (nonatomic, strong) IBInspectable UIColor * _Nullable currentPageTintColor;
  219. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  220. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  221. @property (nonatomic) IBInspectable BOOL enableTouchEvents;
  222. @end
  223. @class UITapGestureRecognizer;
  224. SWIFT_CLASS("_TtC14CHIPageControl17CHIPageControlAji")
  225. @interface CHIPageControlAji : CHIBasePageControl
  226. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  227. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  228. - (void)layoutSubviews;
  229. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  230. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  231. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  232. @end
  233. SWIFT_CLASS("_TtC14CHIPageControl20CHIPageControlAleppo")
  234. @interface CHIPageControlAleppo : CHIBasePageControl
  235. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  236. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  237. - (void)layoutSubviews;
  238. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  239. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  240. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  241. @end
  242. SWIFT_CLASS("_TtC14CHIPageControl21CHIPageControlChimayo")
  243. @interface CHIPageControlChimayo : CHIBasePageControl
  244. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  245. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  246. - (void)awakeFromNib;
  247. - (void)layoutSubviews;
  248. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  249. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  250. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  251. @end
  252. SWIFT_CLASS("_TtC14CHIPageControl20CHIPageControlFresno")
  253. @interface CHIPageControlFresno : CHIBasePageControl
  254. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  255. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  256. - (void)layoutSubviews;
  257. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  258. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  259. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  260. @end
  261. SWIFT_CLASS("_TtC14CHIPageControl22CHIPageControlJalapeno")
  262. @interface CHIPageControlJalapeno : CHIBasePageControl
  263. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  264. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  265. - (void)layoutSubviews;
  266. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  267. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  268. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  269. @end
  270. SWIFT_CLASS("_TtC14CHIPageControl20CHIPageControlJaloro")
  271. @interface CHIPageControlJaloro : CHIBasePageControl
  272. @property (nonatomic) IBInspectable CGFloat elementWidth;
  273. @property (nonatomic) IBInspectable CGFloat elementHeight;
  274. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  275. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  276. - (void)layoutSubviews;
  277. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  278. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  279. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  280. @end
  281. SWIFT_CLASS("_TtC14CHIPageControl21CHIPageControlPaprika")
  282. @interface CHIPageControlPaprika : CHIBasePageControl
  283. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  284. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  285. - (void)layoutSubviews;
  286. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  287. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  288. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  289. @end
  290. SWIFT_CLASS("_TtC14CHIPageControl18CHIPageControlPuya")
  291. @interface CHIPageControlPuya : CHIBasePageControl
  292. - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
  293. - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
  294. - (void)layoutSubviews;
  295. @property (nonatomic, readonly) CGSize intrinsicContentSize;
  296. - (CGSize)sizeThatFits:(CGSize)size SWIFT_WARN_UNUSED_RESULT;
  297. - (void)didTouchWithGesture:(UITapGestureRecognizer * _Nonnull)gesture;
  298. @end
  299. #if __has_attribute(external_source_symbol)
  300. # pragma clang attribute pop
  301. #endif
  302. #pragma clang diagnostic pop
  303. #endif