Author: sletellier Date: 2008-10-08 13:30:54 +0000 (Wed, 08 Oct 2008) New Revision: 1543 Added: isis-fish/branches/arbo-maven/src/main/uimodel/fr/ifremer/isisfish/ui/WelcomeTabUI.jaxx Log: Interface JAXX Added: isis-fish/branches/arbo-maven/src/main/uimodel/fr/ifremer/isisfish/ui/WelcomeTabUI.jaxx =================================================================== --- isis-fish/branches/arbo-maven/src/main/uimodel/fr/ifremer/isisfish/ui/WelcomeTabUI.jaxx (rev 0) +++ isis-fish/branches/arbo-maven/src/main/uimodel/fr/ifremer/isisfish/ui/WelcomeTabUI.jaxx 2008-10-08 13:30:54 UTC (rev 1543) @@ -0,0 +1,51 @@ +<!-- +/* *##% + * Copyright (C) 2005 + * Ifremer, Code Lutin, Cedric Pineau, Benjamin Poussin + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *##%*/ + +/* * + * IsisFish.java + * + * Created: 1 aout 2005 18:37:25 CEST + * + * @author Benjamin POUSSIN <poussin at codelutin.com> + * @version $Revision: 1312 $ + * + * Last update: $Date: 2008-08-28 10:21:07 +0200 (jeu, 28 aoû 2008) $ + * by : $Author: sletellier $ + */ + --> +<JPanel id='welcomePanelUI' layout='{new BorderLayout()}'> + <script> + import fr.ifremer.isisfish.ui.simulator.SimulAction; + </script> + <JTabbedPane id="simulTabs" tabPlacement='{JTabbedPane.LEFT}' constraints="BorderLayout.CENTER"> + <tab title='' icon='{new ImageIcon(getClass().getResource("/images/simulation.gif"))}'> + <fr.ifremer.isisfish.ui.simulator.SimulUI constructorParams='{new SimulAction()}'/> + </tab> + <tab title='' icon='{new ImageIcon(getClass().getResource("/images/calc.gif"))}'> + <fr.ifremer.isisfish.ui.result.ResultUI/> + </tab> + <tab title='' icon='{new ImageIcon(getClass().getResource("/images/book.gif"))}'> + <fr.ifremer.isisfish.ui.input.InputUI/> + </tab> + <tab title='' icon='{new ImageIcon(getClass().getResource("/images/bookPage.gif"))}'> + <fr.ifremer.isisfish.ui.script.ScriptUI/> + </tab> + </JTabbedPane> +</JPanel>