|
@@ -45,6 +45,11 @@ typedef NS_OPTIONS(NSInteger, CEditingSelectState) {
|
|
|
CEditingSelectStateEditSelectText,
|
|
|
};
|
|
|
|
|
|
+typedef NS_OPTIONS(NSInteger, CEditingAreaSelectBorderZoomPointType) {
|
|
|
+ CEditingAreaSelectBorderZoomPointSolidCircleType = 0,
|
|
|
+ CEditingAreaSelectBorderZoomPointHollowRectangle,
|
|
|
+};
|
|
|
+
|
|
|
#pragma mark - CEditAttributes
|
|
|
|
|
|
@interface CEditAttributes : NSObject
|
|
@@ -104,6 +109,16 @@ typedef NS_OPTIONS(NSInteger, CEditingSelectState) {
|
|
|
*/
|
|
|
@property (nonatomic,assign) BOOL isShowEditingAreaItemHover;
|
|
|
|
|
|
+/**
|
|
|
+ * Editing Area Select Border Zoom Point Type Setting
|
|
|
+ */
|
|
|
+@property (nonatomic,assign) CEditingAreaSelectBorderZoomPointType zoomPointType;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Border width of the dotted box Zoom Point
|
|
|
+ */
|
|
|
+@property (nonatomic,strong) NSNumber *editingCenterBorderWidth;
|
|
|
+
|
|
|
/* *
|
|
|
* Whether to support hover changes when moving the mouse
|
|
|
*/
|