Browse Source

【ComPDFKit】更新至V2.1.1

tangchao 8 months ago
parent
commit
e6e3968086
14 changed files with 568 additions and 18 deletions
  1. BIN
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/ComPDFKit
  2. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFAnnotation.h
  3. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFCircleAnnotation.h
  4. 1 1
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFFreeTextAnnotation.h
  5. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFLineAnnotation.h
  6. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFRedactAnnotation.h
  7. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSquareAnnotation.h
  8. 4 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFView.h
  9. 6 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFWidgetAnnotation.h
  10. BIN
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/Assets.car
  11. 0 0
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/CPDFUnlockViewController.nib/keyedobjects-101300.nib
  12. BIN
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/CPDFUnlockViewController.nib/keyedobjects.nib
  13. 3 3
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/Info.plist
  14. 529 14
      PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/_CodeSignature/CodeResources

BIN
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/ComPDFKit


+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFAnnotation.h

@@ -153,6 +153,11 @@ typedef NS_OPTIONS(NSInteger, CPDFAnnotationFlags) {
  */
 @property (nonatomic,retain) CPDFKitPlatformColor *color;
 
+/**
+ * remove color(Set it to transparent, or set SetColor: to nil)
+ */
+- (BOOL)removeColor;
+
 @property (nonatomic,assign) BOOL isNoRotate;
 
 /**

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFCircleAnnotation.h

@@ -31,4 +31,9 @@
  */
 @property (nonatomic,retain) CPDFKitPlatformColor *interiorColor;
 
+/**
+ * remove interior Color(Set it to transparent, or set SetInteriorColor: to nil)
+ */
+- (BOOL)removeInteriorColor;
+
 @end

+ 1 - 1
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFFreeTextAnnotation.h

@@ -25,7 +25,7 @@
  * Method to get the font used for the annotation’s text field.
  * Set freetext after manually updateAppearanceStream
  */
-@property (nonatomic,retain) CPDFKitPlatformFont *font DEPRECATED_MSG_ATTRIBUTE("use setCFont:fontSize: and cFontSize");
+@property (nonatomic,retain) CPDFKitPlatformFont *font DEPRECATED_MSG_ATTRIBUTE("use setCFont: and setFontSize:");
 
 /**
  * Method to set the font name used for the annotation’s text field.

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFLineAnnotation.h

@@ -80,6 +80,11 @@ typedef NS_ENUM(NSInteger, CPDFLineStyle) {
  */
 @property (nonatomic,retain) CPDFKitPlatformColor *interiorColor;
 
+/**
+ * remove interior Color(Set it to transparent, or set SetInteriorColor: to nil)
+ */
+- (BOOL)removeInteriorColor;
+
 #pragma mark -  Measure
 /**
 * Method to determine whether an annotation has measurement properties.

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFRedactAnnotation.h

@@ -39,6 +39,11 @@
  */
 - (void)setInteriorColor:(CPDFKitPlatformColor *)color;
 
+/**
+ * remove interior Color(Set it to transparent, or set SetInteriorColor: to nil)
+ */
+- (BOOL)removeInteriorColor;
+
 /**
  * Gets the color used for the redaction’s border in its marked state. Defaults to red.
  */

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFSquareAnnotation.h

@@ -34,4 +34,9 @@
  */
 @property (nonatomic,retain) CPDFKitPlatformColor *interiorColor;
 
+/**
+ * remove interior Color(Set it to transparent, or set SetInteriorColor: to nil)
+ */
+- (BOOL)removeInteriorColor;
+
 @end

+ 4 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFView.h

@@ -179,6 +179,10 @@ typedef NS_OPTIONS(NSInteger, CPDFAreaOfInterest) {
 - (void)setEditAnnotationFreeTextBorder:(CPDFBorder *)border freeText:(CPDFFreeTextAnnotation *)freeText;
 - (void)setEditAnnotationFreeAlignment:(NSTextAlignment)alignment  freeText:(CPDFFreeTextAnnotation *)freeText;
 
+- (void)setEditAnnotationFreeTextBorderColor:(CPDFKitPlatformColor *)color freeText:(CPDFFreeTextAnnotation *)freeText;
+- (void)setEditAnnotationFreeTextBorder:(CPDFBorder *)border freeText:(CPDFFreeTextAnnotation *)freeText;
+- (void)setEditAnnotationFreeAlignment:(NSTextAlignment)alignment  freeText:(CPDFFreeTextAnnotation *)freeText;
+
 #pragma mark - Form Annotation
 
 - (BOOL)isEditFormText;

+ 6 - 0
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Headers/CPDFWidgetAnnotation.h

@@ -29,6 +29,12 @@
  */
 @property (nonatomic,retain) CPDFKitPlatformColor *backgroundColor;
 
+/**
+ * remove backgroundColor(Set it to transparent, or set SetBackgroundColor: to nil)
+ */
+
+- (BOOL)removeBackgroundColor;
+
 @property (nonatomic,assign) CGFloat backgroundOpacity;
 
 /**

BIN
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/Assets.car


PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/CPDFUnlockViewController.nib → PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/CPDFUnlockViewController.nib/keyedobjects-101300.nib


BIN
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/CPDFUnlockViewController.nib/keyedobjects.nib


+ 3 - 3
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/Resources/Info.plist

@@ -17,13 +17,13 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>2.1.0</string>
+	<string>2.1.1</string>
 	<key>CFBundleSupportedPlatforms</key>
 	<array>
 		<string>MacOSX</string>
 	</array>
 	<key>CFBundleVersion</key>
-	<string>2100</string>
+	<string>2101</string>
 	<key>DTCompiler</key>
 	<string>com.apple.compilers.llvm.clang.1_0</string>
 	<key>DTPlatformBuild</key>
@@ -41,6 +41,6 @@
 	<key>DTXcodeBuild</key>
 	<string>14B47b</string>
 	<key>LSMinimumSystemVersion</key>
-	<string>10.13</string>
+	<string>10.10</string>
 </dict>
 </plist>

File diff suppressed because it is too large
+ 529 - 14
PDF Office/PDF Master/Class/PDFWindowController/PDFSDK/ComPDFKit.framework/Versions/A/_CodeSignature/CodeResources