|
From: Frederic D. <de...@us...> - 2004-06-11 16:40:48
|
Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/tr/post In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7396/src/org/fudaa/fudaa/tr/post Modified Files: TrPostAnimator.java TrIsoLayer.java TrPostVisuPanel.java Log Message: Ajout de rubar Index: TrPostAnimator.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/tr/post/TrPostAnimator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TrPostAnimator.java 5 May 2004 12:42:37 -0000 1.2 --- TrPostAnimator.java 11 Jun 2004 16:40:38 -0000 1.3 *************** *** 9,12 **** --- 9,13 ---- package org.fudaa.fudaa.tr.post; + import java.awt.Frame; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; *************** *** 19,22 **** --- 20,24 ---- import javax.swing.JDialog; import javax.swing.SwingUtilities; + import javax.swing.WindowConstants; import com.memoire.bu.BuButton; *************** *** 58,65 **** d_.show(); else { ! d_ = new JDialog(pn_.getFrame()); d_.setContentPane(new LauncherPanel()); d_.setModal(false); ! d_.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE); d_.pack(); d_.show(); --- 60,69 ---- d_.show(); else { ! Frame f=pn_.getFrame(); ! d_ = new JDialog(f); d_.setContentPane(new LauncherPanel()); d_.setModal(false); ! d_.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); ! d_.setLocation(f.getLocation()); d_.pack(); d_.show(); *************** *** 78,82 **** */ public void windowClosed(WindowEvent _e) { - System.out.println("yes"); d_ = null; } --- 82,85 ---- Index: TrIsoLayer.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/tr/post/TrIsoLayer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TrIsoLayer.java 1 Jun 2004 11:27:44 -0000 1.5 --- TrIsoLayer.java 11 Jun 2004 16:40:38 -0000 1.6 *************** *** 108,114 **** /** ! * @see javax.swing.JComponent#paintComponent(java.awt.Graphics) */ ! public void paintComponent(Graphics _g) { boolean attenue = isAttenue(); boolean rapide = isRapide(); --- 108,114 ---- /** ! * @see org.fudaa.ebli.calque.ZCalquePoint#paintDonnees(java.awt.Graphics) */ ! public void paintDonnees(Graphics _g) { boolean attenue = isAttenue(); boolean rapide = isRapide(); *************** *** 157,161 **** } } - super.paintSpecificComponent(_g, true); } --- 157,160 ---- Index: TrPostVisuPanel.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/tr/post/TrPostVisuPanel.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TrPostVisuPanel.java 1 Jun 2004 11:27:44 -0000 1.3 --- TrPostVisuPanel.java 11 Jun 2004 16:40:38 -0000 1.4 *************** *** 221,223 **** --- 221,226 ---- varSelect_=null; } + public boolean isBcPointEditable() { + return false; + } } |