![JAR search and dependency download from the Maven repository](/logo.png)
org.jpedal.external.Options Maven / Gradle / Ivy
/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info: http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2017 IDRsolutions and Contributors.
*
* This file is part of JPedal/JPDF2HTML5
*
@LICENSE@
*
* ---------------
* Options.java
* ---------------
*/
package org.jpedal.external;
/**
* Holds set of values to indicate types of external handler
*/
public class Options {
/**
* allow user to process image - implements
* {@link org.jpedal.external.ImageHandler} examples in
* org.jpedal.examples.handlers and sample code to use commented out in
* Viewer
*/
public static final int ImageHandler = 1;
/**
* allows user to over-ride form creation code with own - needs to implement
* {@link org.jpedal.objects.acroforms.creation.FormFactory}
*/
public static final int FormFactory = 3;
/**
* used by Viewer - use not recommended
*/
public static final int MultiPageUpdate = 4;
/**
* used by NetBeans plugin
*/
public static final int PluginHandler = -4;
/**
* allows user to replace whole forms action Handling code - needs to
* implement {@link org.jpedal.objects.acroforms.actions.ActionHandler} It
* is recommended you look at Options.ExpressionEngine and
* Options.LinkHandler for most purposes
*/
public static final int FormsActionHandler = 5;
/**
* allows user to link in their own code for Javascript validation - needs
* to implement {@link org.jpedal.objects.javascript.ExpressionEngine}
* Default implementation at
* {@link org.jpedal.objects.acroforms.creation.SwingFormFactory}
*/
public static final int ExpressionEngine = 6;
/**
* used by Viewer - use not recommended
*/
public static final int ThumbnailHandler = 8;
public static final int JPedalActionHandler = 9;
/**
* pass in GUI in Viewers
*/
public static final int GUIContainer = 11;
/**
* allow user to track glyfs generated
*/
public static final int GlyphTracker = 12;
/**
* allow user to track shapes
*/
public static final int ShapeTracker = 13;
/**
* allow user to print own forms
*/
public static final int CustomFormPrint = 14;
/**
* allow user to replace info messages with own code -also disables error
* and other info messages
*/
public static final int CustomMessageOutput = 15;
/**
* Internal use only - do not use
*/
public static final int Display = 16;
/**
* Internal use only - do not use
*/
public static final int CurrentOffset = 17;
/**
* Internal use only - do not use
*/
public static final int CustomPrintHintingHandler = 18;
/**
* allow user to make bw
*/
public static final int ColorHandler = 19;
/**
* allow user to make own output from parser
*/
public static final int CustomOutput = 20;
/**
* allow user to replace info messages with own code -also disables error
* and other info messages
*/
public static final int RenderChangeListener = 21;
/**
* ContentHandler
*/
// public static final int StructuredContentHandler = 22;
//public static final int ErrorTracker = 23;
public static final int JPedalActionHandlers = 24;
public static final int UniqueAnnotationHandler = 25;
public static final int CustomMouseHandler = 26;
// public static final int ImageLibrary = 27;
public static final int USE_XFA = 28;
public static final int USE_XFA_IN_LEGACY_MODE = 29;
/* [AWI] Indicates that the UI is ready for Keyboard input (used for touchscreens with virtual keyboards). */
public static final int KeyboardReadyHandler = 30;
public static final int ErrorTracker = 31;
public static final int SpeechEngine = 32;
public static final int JavaFX_ADDITIONAL_OBJECTS = 33;
public static final int FileAccess = 35;
public static final int DisplayOffsets = 37;
public static final int AdditionalHandler = 39;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy