SVGKit.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*!
  2. SVGKit - https://github.com/SVGKit/SVGKit
  3. THE MOST IMPORTANT ELEMENTS YOU'LL INTERACT WITH:
  4. 1. SVGKImage = contains most of the convenience methods for loading / reading / displaying SVG files
  5. 2. SVGKImageView = the easiest / fastest way to display an SVGKImage on screen
  6. 3. SVGKLayer = the low-level way of getting an SVG as a bunch of layers
  7. SVGKImage makes heavy use of the following classes - you'll often use these classes (most of them given to you by an SVGKImage):
  8. 4. SVGKSource = the "file" or "URL" for loading the SVG data
  9. 5. SVGKParseResult = contains the parsed SVG file AND/OR the list of errors during parsing
  10. */
  11. #import "SVGKDefine.h"
  12. // MARK: - Framework Header File Content
  13. @interface SVGKit : NSObject
  14. + (void) enableLogging;
  15. @end
  16. //! Project version number for SVGKitFramework-iOS.
  17. FOUNDATION_EXPORT double SVGKitFramework_VersionNumber;
  18. //! Project version string for SVGKitFramework-iOS.
  19. FOUNDATION_EXPORT const unsigned char SVGKitFramework_VersionString[];
  20. // In this header, you should import all the public headers of your framework using statements like #import <SVGKitFramework_iOS/PublicHeader.h>
  21. // Core DOM
  22. #import "AppleSucksDOMImplementation.h"
  23. #import "Attr.h"
  24. #import "CDATASection.h"
  25. #import "CharacterData.h"
  26. #import "Comment.h"
  27. #import "CSSStyleDeclaration.h"
  28. #import "CSSRule.h"
  29. #import "CSSStyleSheet.h"
  30. #import "CSSStyleRule.h"
  31. #import "CSSRuleList.h"
  32. #import "CSSRuleList+Mutable.h"
  33. #import "CSSPrimitiveValue.h"
  34. #import "CSSPrimitiveValue_ConfigurablePixelsPerInch.h"
  35. #import "CSSValueList.h"
  36. #import "CSSValue_ForSubclasses.h"
  37. #import "CSSValue.h"
  38. #import "Document+Mutable.h"
  39. #import "Document.h"
  40. #import "DocumentCSS.h"
  41. #import "DocumentStyle.h"
  42. #import "StyleSheetList+Mutable.h"
  43. #import "StyleSheetList.h"
  44. #import "StyleSheet.h"
  45. #import "MediaList.h"
  46. #import "DocumentFragment.h"
  47. #import "DocumentType.h"
  48. #import "DOMHelperUtilities.h"
  49. #import "Element.h"
  50. #import "EntityReference.h"
  51. #import "NamedNodeMap.h"
  52. #import "NamedNodeMap_Iterable.h"
  53. #import "Node+Mutable.h"
  54. #import "Node.h"
  55. #import "NodeList+Mutable.h"
  56. #import "NodeList.h"
  57. #import "ProcessingInstruction.h"
  58. #import "Text.h"
  59. #import "DOMGlobalSettings.h"
  60. // SVG DOM
  61. #import "SVGAngle.h"
  62. #import "SVGAnimatedPreserveAspectRatio.h"
  63. #import "SVGDefsElement.h"
  64. #import "SVGDocument.h"
  65. #import "SVGDocument_Mutable.h"
  66. #import "SVGElementInstance.h"
  67. #import "SVGElementInstance_Mutable.h"
  68. #import "SVGElementInstanceList.h"
  69. #import "SVGElementInstanceList_Internal.h"
  70. #import "SVGGElement.h"
  71. #import "SVGStylable.h"
  72. #import "SVGLength.h"
  73. #import "SVGMatrix.h"
  74. #import "SVGNumber.h"
  75. #import "SVGPoint.h"
  76. #import "SVGPreserveAspectRatio.h"
  77. #import "SVGRect.h"
  78. #import "SVGSVGElement_Mutable.h"
  79. #import "SVGTransform.h"
  80. #import "SVGUseElement.h"
  81. #import "SVGUseElement_Mutable.h"
  82. #import "SVGViewSpec.h"
  83. #import "SVGHelperUtilities.h"
  84. #import "SVGTransformable.h"
  85. #import "SVGFitToViewBox.h"
  86. #import "SVGTextPositioningElement.h"
  87. #import "SVGTextContentElement.h"
  88. #import "SVGTextPositioningElement_Mutable.h"
  89. #import "ConverterSVGToCALayer.h"
  90. #import "SVGGradientElement.h"
  91. #import "SVGGradientStop.h"
  92. #import "SVGLinearGradientElement.h"
  93. #import "SVGRadialGradientElement.h"
  94. #import "SVGStyleCatcher.h"
  95. #import "SVGStyleElement.h"
  96. #import "SVGCircleElement.h"
  97. #import "SVGDescriptionElement.h"
  98. #import "SVGElement.h"
  99. #import "SVGElement_ForParser.h"
  100. #import "SVGEllipseElement.h"
  101. #import "SVGGroupElement.h"
  102. #import "SVGImageElement.h"
  103. #import "SVGLineElement.h"
  104. #import "SVGPathElement.h"
  105. #import "SVGPolygonElement.h"
  106. #import "SVGPolylineElement.h"
  107. #import "SVGRectElement.h"
  108. #import "BaseClassForAllSVGBasicShapes.h"
  109. #import "BaseClassForAllSVGBasicShapes_ForSubclasses.h"
  110. #import "SVGSVGElement.h"
  111. #import "SVGTextElement.h"
  112. #import "SVGTitleElement.h"
  113. #import "SVGSwitchElement.h"
  114. #import "SVGClipPathElement.h"
  115. #import "TinySVGTextAreaElement.h"
  116. // Parser
  117. #import "SVGKImage+CGContext.h"
  118. #import "SVGKExporterNSData.h"
  119. #if SVGKIT_MAC
  120. #import "SVGKExporterNSImage.h"
  121. #else
  122. #import "SVGKExporterUIImage.h"
  123. #endif
  124. #import "SVGKSourceLocalFile.h"
  125. #import "SVGKSourceString.h"
  126. #import "SVGKSourceURL.h"
  127. #import "SVGKParserDefsAndUse.h"
  128. #import "SVGKParserDOM.h"
  129. #import "SVGKParserGradient.h"
  130. #import "SVGKParserPatternsAndGradients.h"
  131. #import "SVGKParserStyles.h"
  132. #import "SVGKParserSVG.h"
  133. #import "SVGKParser.h"
  134. #import "SVGKParseResult.h"
  135. #import "SVGKParserExtension.h"
  136. #import "SVGKPointsAndPathsParser.h"
  137. #import "CALayer+RecursiveClone.h"
  138. #import "SVGGradientLayer.h"
  139. #import "SVGTextLayer.h"
  140. #import "CALayerWithChildHitTest.h"
  141. #import "CAShapeLayerWithHitTest.h"
  142. #import "CGPathAdditions.h"
  143. #import "SVGKLayer.h"
  144. #import "SVGKImage.h"
  145. #import "SVGKSource.h"
  146. #import "NSCharacterSet+SVGKExtensions.h"
  147. #import "SVGKFastImageView.h"
  148. #import "SVGKImageView.h"
  149. #import "SVGKLayeredImageView.h"
  150. #import "SVGKPattern.h"
  151. #import "SVGUtils.h"
  152. #if SVGKIT_MAC
  153. #import "SVGKImageRep.h"
  154. #endif
  155. #import "NSData+NSInputStream.h"
  156. #import "SVGKSourceNSData.h"
  157. #import "SVGKInlineResource.h"