| java.lang.Object com.sun.pdfview.FullScreenWindow
FullScreenWindow | public class FullScreenWindow (Code) | | A window that takes over the full screen. You can put exactly one
JComponent into the window. If there are multiple screens attached
to the computer, this class will display buttons on each screen so
that the user can select which one receives the full-screen window.
|
Inner Class :class PickMe extends JFrame | |
Constructor Summary | |
public | FullScreenWindow(JComponent part, boolean forcechoice) Create a full screen window containing a JComponent, and ask the
user which screen they'd like to use if more than one is present.
Parameters: part - the JComponent to display Parameters: forcechoice - true if you want force the display of the screenchoice buttons. | public | FullScreenWindow(JComponent part) Create a full screen window containing a JComponent. |
Method Summary | |
public void | close() Close the full screen window. |
FullScreenWindow | public FullScreenWindow(JComponent part, boolean forcechoice)(Code) | | Create a full screen window containing a JComponent, and ask the
user which screen they'd like to use if more than one is present.
Parameters: part - the JComponent to display Parameters: forcechoice - true if you want force the display of the screenchoice buttons. If false, buttons will only display if the userhasn't previously picked a screen. |
FullScreenWindow | public FullScreenWindow(JComponent part)(Code) | | Create a full screen window containing a JComponent. The user
will only be asked which screen to display on if there are multiple
monitors attached and the user hasn't already made a choice.
Parameters: part - the JComponent to display |
close | public void close()(Code) | | Close the full screen window. This particular FullScreenWindow
object cannot be used again.
|
|
|