All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.PrintOperation

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.PrintOperation

public class PrintOperation
extends NativeObject
This class wraps the Objective-C class NSPrintOperation.


Variable Index

 o AscendingPageOrder
 o DescendingPageOrder
 o SpecialPageOrder
 o UnknownPageOrder

Constructor Index

 o PrintOperation()
This default constructor is equivalent to Objective-C's [[NSPrintOperation alloc] init].
 o PrintOperation(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o PrintOperation(View, PrintInfo)
This constructor has the same effect as calling - initWithView:printInfo: on a newly allocated object.

Method Index

 o accessoryView()
A wrapper for the - accessoryView Objective-C instance method.
 o cleanUpOperation()
A wrapper for the - cleanUpOperation Objective-C instance method.
 o context()
A wrapper for the - context Objective-C instance method.
 o createContext()
A wrapper for the - createContext Objective-C instance method.
 o currentOperation()
A wrapper for the + currentOperation Objective-C class method.
 o currentPage()
A wrapper for the - currentPage Objective-C instance method.
 o deliverResult()
A wrapper for the - deliverResult Objective-C instance method.
 o destroyContext()
A wrapper for the - destroyContext Objective-C instance method.
 o EPSOperationWithViewInsideRectToData(View, Rect, MutableData)
A wrapper for the + EPSOperationWithView:insideRect:toData: Objective-C class method.
 o EPSOperationWithViewInsideRectToDataPrintInfo(View, Rect, MutableData, PrintInfo)
A wrapper for the + EPSOperationWithView:insideRect:toData:printInfo: Objective-C class method.
 o EPSOperationWithViewInsideRectToPathPrintInfo(View, Rect, String, PrintInfo)
A wrapper for the + EPSOperationWithView:insideRect:toPath:printInfo: Objective-C class method.
 o isEPSOperation()
A wrapper for the - isEPSOperation Objective-C instance method.
 o pageOrder()
A wrapper for the - pageOrder Objective-C instance method.
 o printInfo()
A wrapper for the - printInfo Objective-C instance method.
 o printOperationWithView(View)
A wrapper for the + printOperationWithView: Objective-C class method.
 o printOperationWithViewAndPrintInfo(View, PrintInfo)
A wrapper for the + printOperationWithView:printInfo: Objective-C class method.
 o printPanel()
A wrapper for the - printPanel Objective-C instance method.
 o runOperation()
A wrapper for the - runOperation Objective-C instance method.
 o setAccessoryView(View)
A wrapper for the - setAccessoryView: Objective-C instance method.
 o setCurrentOperation(PrintOperation)
A wrapper for the + setCurrentOperation: Objective-C class method.
 o setPageOrder(int)
A wrapper for the - setPageOrder: Objective-C instance method.
 o setPrintInfo(PrintInfo)
A wrapper for the - setPrintInfo: Objective-C instance method.
 o setPrintPanel(PrintPanel)
A wrapper for the - setPrintPanel: Objective-C instance method.
 o setShowPanels(boolean)
A wrapper for the - setShowPanels: Objective-C instance method.
 o showPanels()
A wrapper for the - showPanels Objective-C instance method.
 o view()
A wrapper for the - view Objective-C instance method.

Variables

 o DescendingPageOrder
 public static final int DescendingPageOrder
 o SpecialPageOrder
 public static final int SpecialPageOrder
 o AscendingPageOrder
 public static final int AscendingPageOrder
 o UnknownPageOrder
 public static final int UnknownPageOrder

Constructors

 o PrintOperation
 protected PrintOperation(boolean shouldAllocate,
                          int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o PrintOperation
 public PrintOperation()
This default constructor is equivalent to Objective-C's [[NSPrintOperation alloc] init].

 o PrintOperation
 public PrintOperation(View aView,
                       PrintInfo aPrintInfo)
This constructor has the same effect as calling - initWithView:printInfo: on a newly allocated object.

Methods

 o printOperationWithView
 public static native PrintOperation printOperationWithView(View aView)
A wrapper for the + printOperationWithView: Objective-C class method.

 o printOperationWithViewAndPrintInfo
 public static native PrintOperation printOperationWithViewAndPrintInfo(View aView,
                                                                        PrintInfo aPrintInfo)
A wrapper for the + printOperationWithView:printInfo: Objective-C class method.

 o EPSOperationWithViewInsideRectToData
 public static native PrintOperation EPSOperationWithViewInsideRectToData(View aView,
                                                                          Rect rect,
                                                                          MutableData data)
A wrapper for the + EPSOperationWithView:insideRect:toData: Objective-C class method.

 o EPSOperationWithViewInsideRectToDataPrintInfo
 public static native PrintOperation EPSOperationWithViewInsideRectToDataPrintInfo(View aView,
                                                                                   Rect rect,
                                                                                   MutableData data,
                                                                                   PrintInfo aPrintInfo)
A wrapper for the + EPSOperationWithView:insideRect:toData:printInfo: Objective-C class method.

 o EPSOperationWithViewInsideRectToPathPrintInfo
 public static native PrintOperation EPSOperationWithViewInsideRectToPathPrintInfo(View aView,
                                                                                   Rect rect,
                                                                                   String path,
                                                                                   PrintInfo aPrintInfo)
A wrapper for the + EPSOperationWithView:insideRect:toPath:printInfo: Objective-C class method.

 o currentOperation
 public static native PrintOperation currentOperation()
A wrapper for the + currentOperation Objective-C class method.

 o setCurrentOperation
 public static native void setCurrentOperation(PrintOperation operation)
A wrapper for the + setCurrentOperation: Objective-C class method.

 o isEPSOperation
 public native boolean isEPSOperation()
A wrapper for the - isEPSOperation Objective-C instance method.

 o runOperation
 public native boolean runOperation()
A wrapper for the - runOperation Objective-C instance method.

 o setShowPanels
 public native void setShowPanels(boolean flag)
A wrapper for the - setShowPanels: Objective-C instance method.

 o showPanels
 public native boolean showPanels()
A wrapper for the - showPanels Objective-C instance method.

 o setPrintPanel
 public native void setPrintPanel(PrintPanel panel)
A wrapper for the - setPrintPanel: Objective-C instance method.

 o printPanel
 public native PrintPanel printPanel()
A wrapper for the - printPanel Objective-C instance method.

 o setAccessoryView
 public native void setAccessoryView(View aView)
A wrapper for the - setAccessoryView: Objective-C instance method.

 o accessoryView
 public native View accessoryView()
A wrapper for the - accessoryView Objective-C instance method.

 o setPrintInfo
 public native void setPrintInfo(PrintInfo aPrintInfo)
A wrapper for the - setPrintInfo: Objective-C instance method.

 o printInfo
 public native PrintInfo printInfo()
A wrapper for the - printInfo Objective-C instance method.

 o view
 public native View view()
A wrapper for the - view Objective-C instance method.

 o currentPage
 public native int currentPage()
A wrapper for the - currentPage Objective-C instance method.

 o setPageOrder
 public native void setPageOrder(int order)
A wrapper for the - setPageOrder: Objective-C instance method.

 o pageOrder
 public native int pageOrder()
A wrapper for the - pageOrder Objective-C instance method.

 o context
 public native DPSContext context()
A wrapper for the - context Objective-C instance method.

 o createContext
 public native DPSContext createContext()
A wrapper for the - createContext Objective-C instance method.

 o destroyContext
 public native void destroyContext()
A wrapper for the - destroyContext Objective-C instance method.

 o deliverResult
 public native boolean deliverResult()
A wrapper for the - deliverResult Objective-C instance method.

 o cleanUpOperation
 public native void cleanUpOperation()
A wrapper for the - cleanUpOperation Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index