From: <had...@us...> - 2008-09-10 18:54:10
|
Revision: 3905 http://fudaa.svn.sourceforge.net/fudaa/?rev=3905&view=rev Author: hadouxad Date: 2008-09-10 18:54:20 +0000 (Wed, 10 Sep 2008) Log Message: ----------- GRAPHES Wizard graphes temporels OK - Lors Creation des graphe temporels du calque: cela utilise la source du visupanel et non plsu l unique source du projet. - POssibilit?\195?\169 d ajouter les courbes dans les graphes widget deja existant - Possibilit?\195?\169 de cr?\195?\169er un nouveau graphe - fonctionne pour les sondes et liste de points Wizard graphes profils spatiaux OK, fusion marche moyen... - panel 1: choix des isolignes, ne peut pas avancer tant qu il n y a rien de bon de choisi - panel 2 Choix des pas de tems et variables - panel 3 : choix creation ou graphes profils existant, on ne peut avancer tant qu il n y a rien de choisi (graphe existant a jout?\195?\169 ou cocher la case creation)) Fusion de graphes OK moyen (cf listing bugs): - action popup du widget "Fusion avec un autre graphe" - des l appui du bouton sur la popup de la widget selectionne: - ouverture d un menu qui propose la liste des graphes possible a fusionner ensemble (profils spatiaux et temporels s?\195?\169par?\195?\169s) - a la fin suppression de la widget choisie dans le panel. - recupere les variables des 2 graphes et les merge egalement - Fonctionne OK poru les profils spatiaux Modified Paths: -------------- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/calque/BCalquePaletteInfo.java branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/courbe/EGCourbe.java branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetGraphe.java Modified: branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/calque/BCalquePaletteInfo.java =================================================================== --- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/calque/BCalquePaletteInfo.java 2008-09-10 07:40:16 UTC (rev 3904) +++ branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/calque/BCalquePaletteInfo.java 2008-09-10 18:54:20 UTC (rev 3905) @@ -12,7 +12,6 @@ import org.fudaa.ctulu.CtuluLibMessage; import org.fudaa.ctulu.CtuluLibString; - import org.fudaa.ebli.palette.BPaletteInfo; /** * Un panel affichant les infos envoyes par TrPanelInfoSender. @@ -31,6 +30,7 @@ super(); m_ = _m; m_.addTreeSelectionListener(this); + } Modified: branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/courbe/EGCourbe.java =================================================================== --- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/courbe/EGCourbe.java 2008-09-10 07:40:16 UTC (rev 3904) +++ branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/courbe/EGCourbe.java 2008-09-10 18:54:20 UTC (rev 3905) @@ -199,6 +199,7 @@ _table.put(EbliLib.getS("X max"), CtuluLib.DEFAULT_NUMBER_FORMAT.format(model_.getXMax())); _table.put(EbliLib.getS("Y min"), CtuluLib.DEFAULT_NUMBER_FORMAT.format(model_.getYMin())); _table.put(EbliLib.getS("Y max"), CtuluLib.DEFAULT_NUMBER_FORMAT.format(model_.getYMax())); + } final boolean isMarkMaxLine() { Modified: branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetGraphe.java =================================================================== --- branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetGraphe.java 2008-09-10 07:40:16 UTC (rev 3904) +++ branches/Prepro-0.92-SNAPSHOT/ebli/src/org/fudaa/ebli/visuallibrary/graphe/EbliWidgetGraphe.java 2008-09-10 18:54:20 UTC (rev 3905) @@ -44,6 +44,10 @@ Window frame_; EGFillePanel panelGraphe_; + public EGFillePanel getPanelGraphe() { + return panelGraphe_; + } + BuPanel conteneurEditor; private EbliNodeDefault nodeLegende = null; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |