[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool OffsetTool.java, 1.25, 1.26 Extrusion
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-12-07 12:48:37
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26296/src/net/sourceforge/bprocessor/gl/tool Modified Files: OffsetTool.java ExtrusionTool.java ConstructorTool.java ArcTool.java RectTool.java Pencil.java EraserTool.java TapeMeasure.java ExtendTool.java Log Message: Adjusted initial sizes of view and changed tips to prepare for demo Index: ExtendTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ExtendTool.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ExtendTool.java 3 Dec 2007 17:29:48 -0000 1.1 --- ExtendTool.java 7 Dec 2007 12:48:31 -0000 1.2 *************** *** 303,307 **** @Override public String initialTip() { ! return "Press a surface and drag it to push/pull it"; } } --- 303,307 ---- @Override public String initialTip() { ! return "Pick a surface to push/pull."; } } Index: OffsetTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/OffsetTool.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** OffsetTool.java 18 Nov 2007 21:30:17 -0000 1.25 --- OffsetTool.java 7 Dec 2007 12:48:31 -0000 1.26 *************** *** 343,347 **** public String initialTip() { return "Pick a surface to offset or use select tool to choose" + ! " specific edges of a surface to offset"; } --- 343,347 ---- public String initialTip() { return "Pick a surface to offset or use select tool to choose" + ! " edges to offset."; } *************** *** 351,357 **** */ private String secondClickTip() { ! return "Place the offset." + ! " Use \"length\" to type a specific distance to offset." + ! " Press Escape to cancel offset"; } --- 351,356 ---- */ private String secondClickTip() { ! return "Set offset distance or type length." + ! " Escape cancels."; } Index: ExtrusionTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ExtrusionTool.java,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** ExtrusionTool.java 18 Nov 2007 21:30:17 -0000 1.72 --- ExtrusionTool.java 7 Dec 2007 12:48:31 -0000 1.73 *************** *** 505,510 **** */ public String initialTip() { ! return "Pick a surface to extrude or use select tool to select edges to extrude." + ! " Double-click a surface to extrude same distance as previous extrusion."; } --- 505,509 ---- */ public String initialTip() { ! return "Pick a surface to extrude or use select tool to choose edges to extrude."; } *************** *** 514,520 **** */ private String secondClickTip() { ! return "Place the extrusion." + ! " Use \"length\" to type a specific distance to extrude." + ! " Press Escape to cancel extrusion."; } } --- 513,518 ---- */ private String secondClickTip() { ! return "Set extrusion distance or type length." + ! " Escape cancels."; } } Index: TapeMeasure.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/TapeMeasure.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TapeMeasure.java 6 Dec 2007 14:05:38 -0000 1.9 --- TapeMeasure.java 7 Dec 2007 12:48:31 -0000 1.10 *************** *** 194,199 **** */ public String initialTip() { ! return "Pick a point for a new construction line" + ! " or pick an edge to make a parrallel constructor"; } --- 194,199 ---- */ public String initialTip() { ! return "Set a point for new construction line" + ! " or pick an edge to make a parallel construction line"; } *************** *** 203,208 **** */ private String secondClickTip() { ! return "Set a direction for a constructor line. " + ! " Press Escape to cancel drawing the constructor."; } --- 203,208 ---- */ private String secondClickTip() { ! return "Set direction of construction line. " + ! " Escape cancels."; } *************** *** 212,218 **** */ private String secondClickParaTip() { ! return "Place a parrallel constructor line." + ! "Use \"length\" to type a specific distance to the parrallel edge." + ! " Press Escape to cancel drawing the constructor."; } } --- 212,217 ---- */ private String secondClickParaTip() { ! return "Set offset distance or type length." + ! " Escape cancels."; } } Index: ArcTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ArcTool.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** ArcTool.java 18 Nov 2007 21:30:17 -0000 1.22 --- ArcTool.java 7 Dec 2007 12:48:31 -0000 1.23 *************** *** 256,260 **** */ public String initialTip() { ! return "Set first endpoint of the arc"; } --- 256,260 ---- */ public String initialTip() { ! return "Set start point of the arc"; } *************** *** 264,270 **** */ private String secondClickTip() { ! return "Set the second endpoint of the arc." + ! " Use \"length\" to type a specific distance to endpoint." + ! " Press Escape to cancel drawing"; } --- 264,269 ---- */ private String secondClickTip() { ! return "Set end point or type length." + ! " Escape cancels."; } *************** *** 274,280 **** */ private String thirdClickTip() { ! return "Set the radius of the arc." + ! "Use \"length\" to type a specific radius." + ! " Press Escape to cancel drawing"; } } --- 273,278 ---- */ private String thirdClickTip() { ! return "Set the radius or type length." + ! " Escape cancels."; } } Index: EraserTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/EraserTool.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** EraserTool.java 18 Nov 2007 21:30:17 -0000 1.12 --- EraserTool.java 7 Dec 2007 12:48:31 -0000 1.13 *************** *** 93,97 **** */ public String initialTip() { ! return "Pick an edge or a vertex to erase"; } } --- 93,97 ---- */ public String initialTip() { ! return "Pick an edge to erase."; } } Index: Pencil.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/Pencil.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Pencil.java 18 Nov 2007 21:30:17 -0000 1.22 --- Pencil.java 7 Dec 2007 12:48:31 -0000 1.23 *************** *** 127,136 **** */ public String initialTip() { ! return "Click set start point of a new edge."; } private String secondClickTip() { ! return "Click to set end point of the current edge or type length." + ! " Double-click or press Escape to stop drawing"; } } --- 127,136 ---- */ public String initialTip() { ! return "Set start point of the edge."; } private String secondClickTip() { ! return "Set end point or type length." + ! " Escape cancels."; } } Index: ConstructorTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ConstructorTool.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ConstructorTool.java 18 Nov 2007 21:30:17 -0000 1.17 --- ConstructorTool.java 7 Dec 2007 12:48:31 -0000 1.18 *************** *** 192,197 **** */ public String initialTip() { ! return "Set origin of a constructor." + ! " Double-click to make a B-point constructor."; } --- 192,197 ---- */ public String initialTip() { ! return "Set origin of new constructor." + ! " Double-click to make a B-point."; } *************** *** 201,207 **** */ private String secondClickTip() { ! return "Set direction for the first vector of a constructor." + ! " Double-click to make a B-line constructor." + ! " Press Escape to cancel constructor."; } --- 201,207 ---- */ private String secondClickTip() { ! return "Set direction of first vector." + ! " Double-click to make a B-line." + ! " Escape cancels."; } *************** *** 211,216 **** */ private String thirdClickTip() { ! return "Set direction of second vector of a B-plane." + ! " Press Escape to cancel constructor."; } } --- 211,216 ---- */ private String thirdClickTip() { ! return "Set direction of second vector." + ! " Escape cancels."; } } Index: RectTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/RectTool.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** RectTool.java 18 Nov 2007 21:30:17 -0000 1.27 --- RectTool.java 7 Dec 2007 12:48:31 -0000 1.28 *************** *** 222,226 **** */ public String initialTip() { ! return "Set first corner of the rectangle"; } --- 222,226 ---- */ public String initialTip() { ! return "Set first corner of the rectangle."; } *************** *** 230,236 **** */ private String secondClickTip() { ! return "Set the height and direction of the rectangle." + ! " Use \"length\" to type a specific height." + ! " Press Escape to cancel drawing"; } --- 230,235 ---- */ private String secondClickTip() { ! return "Set the height or type length." + ! " Escape cancels."; } *************** *** 240,246 **** */ private String thirdClickTip() { ! return "Set the width of the rectangle." + ! "Use \"length\" to type a specific width." + ! " Press Escape to cancel drawing"; } --- 239,244 ---- */ private String thirdClickTip() { ! return "Set the width or type length." + ! " Escape cancels"; } |