|
From: Márcio V. d. S. <mv...@us...> - 2007-10-24 17:53:01
|
Update of /cvsroot/tail/TailS/src/java/net/sf/tails/swing/frame In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30908/src/java/net/sf/tails/swing/frame Modified Files: Index.java Log Message: Index: Index.java =================================================================== RCS file: /cvsroot/tail/TailS/src/java/net/sf/tails/swing/frame/Index.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** Index.java 22 Oct 2007 22:48:25 -0000 1.32 --- Index.java 24 Oct 2007 17:53:03 -0000 1.33 *************** *** 44,47 **** --- 44,48 ---- import net.sf.tail.graphics.SeriesDataset; import net.sf.tail.io.StockAnalysisSerializer; + import net.sf.tails.swing.component.TailButton; import net.sf.tails.swing.frame.report.NewReportFrame; import net.sf.tails.swing.frame.stockAnalysis.NewStockAnalysis; *************** *** 57,61 **** private static final ResourceBundle folderBundle = ResourceBundle.getBundle("net.sf.tails.i18n.Folders"); ! final int DEFAULT_CHART_SIZE = 30; private static final long serialVersionUID = 1L; private StockAnalysis stockAnalysis; --- 58,62 ---- private static final ResourceBundle folderBundle = ResourceBundle.getBundle("net.sf.tails.i18n.Folders"); ! private final int DEFAULT_CHART_SIZE = 30; private static final long serialVersionUID = 1L; private StockAnalysis stockAnalysis; *************** *** 81,98 **** private javax.swing.JSeparator separator6; private javax.swing.JSeparator separator7; ! private javax.swing.JButton newStockAnalysisButton; ! private javax.swing.JButton newReportButton; ! private javax.swing.JButton openStockAnalysisButton; ! private javax.swing.JButton saveStockAnalysisButton; ! private javax.swing.JButton saveAsStockAnalysisButton; ! private javax.swing.JButton exportHTMLButton; ! private javax.swing.JButton exportXLSButton; ! private javax.swing.JButton cleanConsoleButton; ! private javax.swing.JButton completeGraphButton; ! private javax.swing.JButton moveLeftButton; ! private javax.swing.JButton moveRightButton; ! private javax.swing.JButton jumpLeftButton; ! private javax.swing.JButton jumpRightButton; ! private javax.swing.JButton helpButton; private javax.swing.JScrollPane reportScrollPane; private javax.swing.JTable reportTable; --- 82,99 ---- private javax.swing.JSeparator separator6; private javax.swing.JSeparator separator7; ! private TailButton newStockAnalysisButton; ! private TailButton newReportButton; ! private TailButton openStockAnalysisButton; ! private TailButton saveStockAnalysisButton; ! private TailButton saveAsStockAnalysisButton; ! private TailButton exportHTMLButton; ! private TailButton exportXLSButton; ! private TailButton cleanConsoleButton; ! private TailButton completeGraphButton; ! private TailButton moveLeftButton; ! private TailButton moveRightButton; ! private TailButton jumpLeftButton; ! private TailButton jumpRightButton; ! private TailButton helpButton; private javax.swing.JScrollPane reportScrollPane; private javax.swing.JTable reportTable; *************** *** 163,180 **** separator6 = new javax.swing.JSeparator(SwingConstants.VERTICAL); separator7 = new javax.swing.JSeparator(SwingConstants.VERTICAL); ! newStockAnalysisButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("NEW_STOCKANALYSIS"))); ! newReportButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("NEW_REPORT"))); ! openStockAnalysisButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("OPEN"))); ! saveStockAnalysisButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("SAVE"))); ! saveAsStockAnalysisButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("SAVE_AS"))); ! exportHTMLButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("HTML"))); ! exportXLSButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("XLS"))); ! cleanConsoleButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("CONSOLE"))); ! completeGraphButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("GRAPH"))); ! moveLeftButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("MOVE_LEFT"))); ! moveRightButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("MOVE_RIGHT"))); ! jumpLeftButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("JUMP_LEFT"))); ! jumpRightButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("JUMP_RIGHT"))); ! helpButton = new javax.swing.JButton(new ImageIcon(iconBundle.getString("HELP"))); reportScrollPane = new javax.swing.JScrollPane(); --- 164,181 ---- separator6 = new javax.swing.JSeparator(SwingConstants.VERTICAL); separator7 = new javax.swing.JSeparator(SwingConstants.VERTICAL); ! newStockAnalysisButton = new TailButton(new ImageIcon(iconBundle.getString("NEW_STOCKANALYSIS"))); ! newReportButton = new TailButton(new ImageIcon(iconBundle.getString("NEW_REPORT"))); ! openStockAnalysisButton = new TailButton(new ImageIcon(iconBundle.getString("OPEN"))); ! saveStockAnalysisButton = new TailButton(new ImageIcon(iconBundle.getString("SAVE"))); ! saveAsStockAnalysisButton = new TailButton(new ImageIcon(iconBundle.getString("SAVE_AS"))); ! exportHTMLButton = new TailButton(new ImageIcon(iconBundle.getString("HTML"))); ! exportXLSButton = new TailButton(new ImageIcon(iconBundle.getString("XLS"))); ! cleanConsoleButton = new TailButton(new ImageIcon(iconBundle.getString("CONSOLE"))); ! completeGraphButton = new TailButton(new ImageIcon(iconBundle.getString("GRAPH"))); ! moveLeftButton = new TailButton(new ImageIcon(iconBundle.getString("MOVE_LEFT"))); ! moveRightButton = new TailButton(new ImageIcon(iconBundle.getString("MOVE_RIGHT"))); ! jumpLeftButton = new TailButton(new ImageIcon(iconBundle.getString("JUMP_LEFT"))); ! jumpRightButton = new TailButton(new ImageIcon(iconBundle.getString("JUMP_RIGHT"))); ! helpButton = new TailButton(new ImageIcon(iconBundle.getString("HELP"))); reportScrollPane = new javax.swing.JScrollPane(); |