[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool ToolFactory.java, 1.46, 1.47
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-06-12 12:14:29
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18126/src/net/sourceforge/bprocessor/gl/tool Modified Files: ToolFactory.java Log Message: Added new icons in toolFactory Index: ToolFactory.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ToolFactory.java,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** ToolFactory.java 6 Jun 2006 09:28:04 -0000 1.46 --- ToolFactory.java 12 Jun 2006 12:14:23 -0000 1.47 *************** *** 197,202 **** pencilBut = this.registerTool(Tool.PENCIL_TOOL, pencil, "Biconpentool.gif", "Pencil"); eraserBut = this.registerTool(Tool.ERASER_TOOL, eraser, "Biconeraser.gif", "Eraser"); ! this.registerTool(Tool.ARC_TOOL, arc, "Biconarc.gif", "Arc"); ! this.registerTool(Tool.RECT_TOOL, rect, "Biconrect.gif", "Rectangle"); moveBut = this.registerTool(Tool.MOVE_TOOL, move, "Biconmovetool.gif", "Move"); moveBut.addMouseListener(new MoveButtonMouseListener(moveBut)); --- 197,202 ---- pencilBut = this.registerTool(Tool.PENCIL_TOOL, pencil, "Biconpentool.gif", "Pencil"); eraserBut = this.registerTool(Tool.ERASER_TOOL, eraser, "Biconeraser.gif", "Eraser"); ! this.registerTool(Tool.ARC_TOOL, arc, "Barc.gif", "Arc"); ! this.registerTool(Tool.RECT_TOOL, rect, "Brect.gif", "Rectangle"); moveBut = this.registerTool(Tool.MOVE_TOOL, move, "Biconmovetool.gif", "Move"); moveBut.addMouseListener(new MoveButtonMouseListener(moveBut)); *************** *** 205,212 **** "Biconextrudetool.gif", "Extrude"); clipBut = this.registerTool(Tool.CLIP_TOOL, clipplane, ! "Biconclipplane.gif", "Clipping"); tmBut = this.registerTool(Tool.TAPE_MEASURE_TOOL, tapeMeasure, "Bicontapemes.gif", "Tape Measure"); ! this.registerTool(Tool.PROTRACTOR_TOOL, protractor, "Biconprotractor.gif", "Protractor"); tb.addSeparator(); --- 205,212 ---- "Biconextrudetool.gif", "Extrude"); clipBut = this.registerTool(Tool.CLIP_TOOL, clipplane, ! "Bclip.gif", "Clipping"); tmBut = this.registerTool(Tool.TAPE_MEASURE_TOOL, tapeMeasure, "Bicontapemes.gif", "Tape Measure"); ! this.registerTool(Tool.PROTRACTOR_TOOL, protractor, "Bprotrac.gif", "Protractor"); tb.addSeparator(); *************** *** 225,229 **** }; ! Action orthoAction = new ToolAction(glv, 0, "Biconortho.gif") { public void actionPerformed(ActionEvent agr0) { Project.getInstance().getCurrentCamera().setType(Camera.ORTHOGRAPHIC); --- 225,229 ---- }; ! Action orthoAction = new ToolAction(glv, 0, "Borto.gif") { public void actionPerformed(ActionEvent agr0) { Project.getInstance().getCurrentCamera().setType(Camera.ORTHOGRAPHIC); *************** *** 232,236 **** }; ! Action perspAction = new ToolAction(glv, 0, "Biconpersp.gif") { public void actionPerformed(ActionEvent agr0) { Project.getInstance().getCurrentCamera().setType(Camera.PERSPECTIVE); --- 232,236 ---- }; ! Action perspAction = new ToolAction(glv, 0, "Bpers.gif") { public void actionPerformed(ActionEvent agr0) { Project.getInstance().getCurrentCamera().setType(Camera.PERSPECTIVE); |