Uses of Class
jpicedt.ui.PEDrawingBoard
-
Packages that use PEDrawingBoard Package Description jpicedt Contains the main JPicEdt class, as well as some utilities.jpicedt.ui Some classes and interfaces that help building concrete implementation of MDIManager's.jpicedt.ui.internal Implementation of MDIManager and related using JInternalFrame's. -
-
Uses of PEDrawingBoard in jpicedt
Methods in jpicedt that return PEDrawingBoard Modifier and Type Method Description static PEDrawingBoardJPicEdt. getActiveDrawingBoard()Return the currently active PEDrawingBoard, or null if none is active.Methods in jpicedt with parameters of type PEDrawingBoard Modifier and Type Method Description static booleanJPicEdt. closeBoard(PEDrawingBoard board)Close the given board, or the currently active board if "board" is null.Constructors in jpicedt with parameters of type PEDrawingBoard Constructor Description FileSaveAction(PEDrawingBoard board)save the content of the given board -
Uses of PEDrawingBoard in jpicedt.ui
Fields in jpicedt.ui declared as PEDrawingBoard Modifier and Type Field Description protected PEDrawingBoardMDIManager. activeBoardReference on the currently active board, or null if no board is currently open.Methods in jpicedt.ui that return PEDrawingBoard Modifier and Type Method Description abstract PEDrawingBoardMDIManager. getActiveDrawingBoard()Returns the currently active drawing boardPEDrawingBoard[]MDIManager. getAllDrawingBoards()Returns all opened drawing boardsMethods in jpicedt.ui with parameters of type PEDrawingBoard Modifier and Type Method Description voidMDIManager. addDrawingBoard(PEDrawingBoard board)Adds a new DrawingBoard component to the list of drawing boards.abstract voidMDIManager. closeBoard(PEDrawingBoard board)Ask the given board to close itselfMDIManager.MDIComponentMDIManager. getHostingContainer(PEDrawingBoard board)Returns the MDIComponent that contains the given boardprotected booleanMDIManager. removeDrawingBoard(PEDrawingBoard board)Remove the given drawing board from the list of open drawing boards, possibly attempting to save its content if necessary, then unregisters any previously registered listener.abstract voidMDIManager. selectDrawingBoard(PEDrawingBoard board)Selects the given drawing board ; concrete implementation should call show() or any similar method on the MDIComponent (aka container) hosting the given board.voidMDIManager. setHostingContainerTitle(java.lang.String title, PEDrawingBoard board)Sets the title of the frame/internal frame hosting the given board to the given string. -
Uses of PEDrawingBoard in jpicedt.ui.internal
Methods in jpicedt.ui.internal that return PEDrawingBoard Modifier and Type Method Description PEDrawingBoardInternalFrameMDIManager. getActiveDrawingBoard()Returns the currently active drawing board ; null if there's no internal frame in the desktopPane.
If there's at least one internal frame in the desktop, but it's deactivated (this should never happen however), then the policy is to arbitrarly activate one frame (namely the topmost frame on the desktop which is also the last one in the framearray)PEDrawingBoardJFrameMDIManager. getActiveDrawingBoard()Returns the currently active drawing board ; null if there's no frame hosting a PEDrawingBoard in the desktop.Methods in jpicedt.ui.internal with parameters of type PEDrawingBoard Modifier and Type Method Description voidInternalFrameMDIManager. closeBoard(PEDrawingBoard board)voidJFrameMDIManager. closeBoard(PEDrawingBoard board)voidInternalFrameMDIManager. selectDrawingBoard(PEDrawingBoard board)selects the given drawing board by bringing it to front.voidJFrameMDIManager. selectDrawingBoard(PEDrawingBoard board)selects the given drawing board by bringing it to front.
-