// // CPDFDocumentPlugin.swift // compdfkit_flutter // Copyright © 2014-2023 PDF Technologies, Inc. All Rights Reserved. // // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES. // This notice may not be removed from this file. import Foundation class CPDFConstants { static let openDocument = "open_document" static let getFileName = "get_file_name" static let isEncrypted = "is_encrypted" static let isImageDoc = "is_image_doc" static let getPermissions = "get_permissions" static let checkOwnerUnlocked = "check_owner_unlocked" static let checkOwnerPassword = "check_owner_password" static let hasChange = "has_change" static let importAnnotations = "import_annotations" static let exportAnnotations = "export_annotations" static let removeAllAnnotations = "remove_all_annotations" static let getPageCount = "get_page_count" static let save = "save" static let setScale = "set_scale" static let getScale = "getScale" static let setReadBackgroundColor = "set_read_background_color" static let getReadBackgroundColor = "get_read_background_color" static let setFromFieldHighlight = "set_form_field_highlight" static let isFromFieldHighlight = "is_form_field_highlight" static let setLinkHighlight = "set_link_highlight" static let isLinkHighlight = "is_link_highlight" static let setVerticalMode = "set_vertical_mode" static let isVerticalMode = "is_vertical_mode" static let setPageSpacing = "set_page_spacing" static let setMargin = "set_margin" static let setContinueMode = "set_continue_mode" static let isContinueMode = "is_continue_mode" static let setDoublePageMode = "set_double_page_mode" static let isDoublePageMode = "is_double_page_mode" static let setCoverPageMode = "set_cover_page_mode" static let isCoverPageMode = "is_cover_page_mode" static let setCropMode = "set_crop_mode" static let isCropMode = "is_crop_mode" static let setDisplayPageIndex = "set_display_page_index" static let getCurrentPageIndex = "get_current_page_index" static let set_preview_mode = "set_preview_mode" static let get_preview_mode = "get_preview_mode" static let showThumbnailView = "show_thumbnail_view" static let showBotaView = "show_bota_view" static let showAddWatermarkView = "show_add_watermark_view" static let showSecurityView = "show_security_view" static let showDisplaySettingsView = "show_display_settings_view" static let enterSnipMode = "enter_snip_mode" static let exitSnipMode = "exit_snip_mode" static let saveAs = "save_as" static let print = "print" static let removePassword = "remove_password" static let setPassword = "set_password" static let getEncryptAlgorithm = "get_encrypt_algorithm" static let createWatermark = "create_watermark" static let removeAllWatermark = "remove_all_watermarks" }