1 7 8 package javax.swing; 9 10 30 public interface DesktopManager 31 { 32 36 void openFrame(JInternalFrame f); 37 38 39 void closeFrame(JInternalFrame f); 40 41 42 void maximizeFrame(JInternalFrame f); 43 46 void minimizeFrame(JInternalFrame f); 47 48 void iconifyFrame(JInternalFrame f); 49 52 void deiconifyFrame(JInternalFrame f); 53 54 58 void activateFrame(JInternalFrame f); 59 60 64 void deactivateFrame(JInternalFrame f); 65 66 71 void beginDraggingFrame(JComponent f); 72 73 77 void dragFrame(JComponent f, int newX, int newY); 78 81 void endDraggingFrame(JComponent f); 82 83 88 void beginResizingFrame(JComponent f, int direction); 89 93 void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); 94 97 void endResizingFrame(JComponent f); 98 99 100 void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); 101 } 102 103 | Popular Tags |