Package com.ribsapp.shapes
Class JSplitPaneTool
- java.lang.Object
- 
- com.reportmill.base.RMObject
- 
- com.reportmill.panels.Tool
- 
- com.ribsapp.shapes.RBTool
- 
- com.ribsapp.shapes.JSplitPaneTool
 
 
 
 
- 
- All Implemented Interfaces:
- RMArchiver.Archiving,- java.lang.Cloneable
 
 public class JSplitPaneTool extends RBTool A Ribs app tool for JSplitPanes.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.reportmill.panels.ToolTool.RMShapeHandle
 
- 
 - 
Field Summary- 
Fields inherited from class com.reportmill.panels.ToolHandleMaxXMaxY, HandleMaxXMidY, HandleMaxXMinY, HandleMidXMaxY, HandleMidXMinY, HandleMinXMaxY, HandleMinXMidY, HandleMinXMinY, HandleWidth
 
- 
 - 
Constructor SummaryConstructors Constructor Description JSplitPaneTool()Creates a tabbed pane tool.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbuildShapesFromComponents(javax.swing.JComponent aComponent, RJShape aShape, RMShape aParentShape)Creates the appropriate RJShape for given RJComponent and adds it to given shape.static javax.swing.JSplitPanebuildSplitpaneWithChildren(javax.swing.JComponent c1, javax.swing.JComponent c2, int splitways)java.lang.ClassgetShapeClass()Returns the class that this tool is responsible for.RJPanelgetUI()Returns the Swing UI panel for this inspector.java.lang.StringgetWindowTitle()Returns the name to be used for this tool in inspector window title.static JSplitPaneShapegroupInSplitpanes(java.util.List allShapes)Group multiple shapes into splitpanes.voidmouseDragged(RMShape aShape, java.awt.event.MouseEvent anEvent)Event handling for shape editing.voidmousePressed(RMShape aShape, java.awt.event.MouseEvent anEvent)Event handling for shape editing.voidpaintSuperSelectedShape(RMShape aShape, java.awt.Graphics2D g)Draw some sort of indicator for super-selected splitpanes.voidresetUI()Updates the Swing UI panel controls from the currently selected button shape.voidrespondUI(javax.swing.JComponent anObj)Updates the currently selected button shape from the Swing UI panel controls.voidsyncComponentsFromShapes(RMShape aShape)Synchronizes component heirarchy from shape heirarchy (shapes may have been added, removed, reordered).- 
Methods inherited from class com.ribsapp.shapes.RBToolBuildShapesFromComponents, getComponentPacked, getHandleCount, getToolRB, SyncComponentsFromShapes
 - 
Methods inherited from class com.reportmill.panels.ToolactivateTool, deactivateTool, didBecomeSuperSelectedShapeInEditor, editor, flushChanges, getCoreTool, getCoreToolIndex, getHandleAtPoint, getHandlePoint, getHandleRect, getImageIcon, getImageIcon, getSelectedShape, getSelectedShapes, getSelectTool, getShapeHandleAtPoint, getTool, getTool, isInstance, isSelected, isSuperSelected, mouseDragged, mouseMoved, mouseMoved, mousePressed, mousePressedSelection, mouseReleased, mouseReleased, moveShapeHandle, newInstance, paintSelectedShape, paintTool, processKeyEvent, reactivateTool, respondUI, willLoseSuperSelectionInEditor
 - 
Methods inherited from class com.reportmill.base.RMObjectclone, copy, didChange, didUndo, getAnimAttribute, getClassNameShort, initWithArchiver, undoClone, undoCopy, undoEquals
 
- 
 
- 
- 
- 
Method Detail- 
getShapeClasspublic java.lang.Class getShapeClass() Returns the class that this tool is responsible for.- Overrides:
- getShapeClassin class- Tool
 
 - 
getWindowTitlepublic java.lang.String getWindowTitle() Returns the name to be used for this tool in inspector window title.- Overrides:
- getWindowTitlein class- Tool
 
 - 
getUIpublic RJPanel getUI() Returns the Swing UI panel for this inspector.
 - 
resetUIpublic void resetUI() Updates the Swing UI panel controls from the currently selected button shape.
 - 
respondUIpublic void respondUI(javax.swing.JComponent anObj) Updates the currently selected button shape from the Swing UI panel controls.
 - 
buildShapesFromComponentspublic void buildShapesFromComponents(javax.swing.JComponent aComponent, RJShape aShape, RMShape aParentShape)Creates the appropriate RJShape for given RJComponent and adds it to given shape.- Overrides:
- buildShapesFromComponentsin class- RBTool
 
 - 
syncComponentsFromShapespublic void syncComponentsFromShapes(RMShape aShape) Synchronizes component heirarchy from shape heirarchy (shapes may have been added, removed, reordered).- Overrides:
- syncComponentsFromShapesin class- RBTool
 
 - 
mousePressedpublic void mousePressed(RMShape aShape, java.awt.event.MouseEvent anEvent) Event handling for shape editing.- Overrides:
- mousePressedin class- Tool
 
 - 
mouseDraggedpublic void mouseDragged(RMShape aShape, java.awt.event.MouseEvent anEvent) Event handling for shape editing.- Overrides:
- mouseDraggedin class- Tool
 
 - 
groupInSplitpanespublic static JSplitPaneShape groupInSplitpanes(java.util.List allShapes) Group multiple shapes into splitpanes. Splitpanes have only two children, so this routine recursively groups the list of shapes into a tree of splitpanes. 98% of the time it will probably be called with just 2 shapes, but we might as well cover all the cases. Also, every shape will go into its own pane. Selecting 10 random shapes & choosing "group in splitpane" is awfully ambiguous, so you get what you get - quit your bitching.
 - 
buildSplitpaneWithChildrenpublic static javax.swing.JSplitPane buildSplitpaneWithChildren(javax.swing.JComponent c1, javax.swing.JComponent c2, int splitways)
 - 
paintSuperSelectedShapepublic void paintSuperSelectedShape(RMShape aShape, java.awt.Graphics2D g) Draw some sort of indicator for super-selected splitpanes.- Overrides:
- paintSuperSelectedShapein class- Tool
 
 
- 
 
-