org.jhotdraw.app.action.file
Class PrintFileAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- org.jhotdraw.app.action.AbstractViewAction
-
- org.jhotdraw.app.action.file.PrintFileAction
-
- All Implemented Interfaces:
- java.awt.event.ActionListener, java.io.Serializable, java.lang.Cloneable, java.util.EventListener, javax.swing.Action
- Direct Known Subclasses:
- PrintApplicationFileAction
public class PrintFileAction extends AbstractViewAction
Presents a printer chooser to the user and then prints theView.This action requires that the view implements the
PrintableViewinterface.This action is called when the user selects the Print item in the File menu. The menu item is automatically created by the application.
If you want this behavior in your application, you have to create it and put it in your
ApplicationModelin methodApplicationModel.initApplication(org.jhotdraw.app.Application).You should also create a
PrintFileActionwhen you create this action.
Design PatternsFramework
The interfaces and classes listed below define together the contracts of a smaller framework inside of the JHotDraw framework for document oriented applications.
Contract:PrintableView.
Client:PrintFileAction.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringID-
Fields inherited from class org.jhotdraw.app.action.AbstractViewAction
ENABLED_PROPERTY, VIEW_PROPERTY
-
-
Constructor Summary
Constructors Constructor and Description PrintFileAction(Application app, View view)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidactionPerformed(java.awt.event.ActionEvent evt)booleanisEnabled()Returns true if the action is enabled.voidprintJava2D(PrintableView v)voidprintJava2DAlternative(PrintableView v)voidprintQuartz(PrintableView v)On Mac OS X with the Quartz rendering engine, the following code achieves the best results.-
Methods inherited from class org.jhotdraw.app.action.AbstractViewAction
getActiveView, getApplication, setEnabled
-
-
-
-
Field Detail
-
ID
public static final java.lang.String ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PrintFileAction
public PrintFileAction(Application app, @Nullable View view)
Creates a new instance.
-
-
Method Detail
-
actionPerformed
public void actionPerformed(java.awt.event.ActionEvent evt)
-
printJava2D
public void printJava2D(PrintableView v)
-
printJava2DAlternative
public void printJava2DAlternative(PrintableView v)
-
printQuartz
public void printQuartz(PrintableView v)
On Mac OS X with the Quartz rendering engine, the following code achieves the best results.
-
isEnabled
public boolean isEnabled()
Returns true if the action is enabled. The enabled state of the action depends on the state that has been set using setEnabled() and on the enabled state of the application.- Specified by:
isEnabledin interfacejavax.swing.Action- Overrides:
isEnabledin classAbstractViewAction- Returns:
- true if the action is enabled, false otherwise
- See Also:
Action.isEnabled()
-
-
DataMelt 3.0 © DataMelt by jWork.ORG