Update of /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30967/net/sf/mailsomething/gui Modified Files: WrappedEditorPane.java StatusPanel.java InternalJPanel.java TransparentMenu.java CustomSplitPane.java TableSorter.java FileExplorer.java WrappedEditor.java FileSystemModel.java SimpleInterfaceImpl.java GuiUser.java TreeModelSupport.java BasicHyperlinkListener.java StatusBar.java NotePad.java GuiToolbar.java OverviewPanel.java InternalJScrollPane.java EnviromentPanel.java FontHandler.java Log Message: Index: TableSorter.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/TableSorter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TableSorter.java 3 Apr 2004 07:56:47 -0000 1.1 --- TableSorter.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 122,126 **** } else if (type == java.util.Date.class) { ! //System.out.println("Sort by date from column: " + column); Date d1 = (Date) data.getValueAt(row1, column); --- 122,126 ---- } else if (type == java.util.Date.class) { ! ////System.out.println("Sort by date from column: " + column); Date d1 = (Date) data.getValueAt(row1, column); *************** *** 222,226 **** protected synchronized void reallocateIndexesRemoved(int removed) { ! /*System.out.println("reallocateindexesremoved " + removed); for (int i = 0; i < indexes.length; i++) { --- 222,226 ---- protected synchronized void reallocateIndexesRemoved(int removed) { ! /*//System.out.println("reallocateindexesremoved " + removed); for (int i = 0; i < indexes.length; i++) { *************** *** 249,257 **** indexes[i] = allocated[i]; ! //System.out.println("reallocateindexesremoved2"); ! //System.out.println("reallocateindexesremoved3"); //expanded = false; --- 249,257 ---- indexes[i] = allocated[i]; ! ////System.out.println("reallocateindexesremoved2"); ! ////System.out.println("reallocateindexesremoved3"); //expanded = false; *************** *** 265,269 **** protected void reallocateIndexesRemoveTS(int from, int to) { ! //System.out.println("indexes set"); indexes = new int[collapsed.length]; --- 265,269 ---- protected void reallocateIndexesRemoveTS(int from, int to) { ! ////System.out.println("indexes set"); indexes = new int[collapsed.length]; *************** *** 280,286 **** int rowCount = model.getRowCount(); ! System.out.println("from = " + from); ! System.out.println("to = " + to); ! System.out.println("rowcount = " + rowCount); if (!expanded) { --- 280,286 ---- int rowCount = model.getRowCount(); ! //System.out.println("from = " + from); ! //System.out.println("to = " + to); ! //System.out.println("rowcount = " + rowCount); if (!expanded) { *************** *** 346,350 **** ! //System.out.println("Sorter: tableChanged"); if (isTreeStyle) { --- 346,350 ---- ! ////System.out.println("Sorter: tableChanged"); if (isTreeStyle) { *************** *** 364,368 **** if (e.getType() == TableModelEvent.DELETE) { ! System.out.println("type == delete"); fireTableRowsDeleted(e.getFirstRow(), e.getLastRow()); --- 364,368 ---- if (e.getType() == TableModelEvent.DELETE) { ! //System.out.println("type == delete"); fireTableRowsDeleted(e.getFirstRow(), e.getLastRow()); *************** *** 430,434 **** // qsort(0, indexes.length-1); shuttlesort((int[]) indexes.clone(), indexes, 0, indexes.length); ! //System.out.println("Compares: "+compares); } --- 430,434 ---- // qsort(0, indexes.length-1); shuttlesort((int[]) indexes.clone(), indexes, 0, indexes.length); ! ////System.out.println("Compares: "+compares); } *************** *** 532,536 **** public int getIndexAt(int aRow) { ! //System.out.println("indexes called"); if(aRow >= indexes.length) --- 532,536 ---- public int getIndexAt(int aRow) { ! ////System.out.println("indexes called"); if(aRow >= indexes.length) *************** *** 571,575 **** int column = tableView.convertColumnIndexToModel(viewColumn); if (e.getClickCount() == 1 && column != -1) { ! //System.out.println("Sorting ..."); int shiftPressed = e.getModifiers() & InputEvent.SHIFT_MASK; boolean ascending = (shiftPressed == 0); --- 571,575 ---- int column = tableView.convertColumnIndexToModel(viewColumn); if (e.getClickCount() == 1 && column != -1) { ! ////System.out.println("Sorting ..."); int shiftPressed = e.getModifiers() & InputEvent.SHIFT_MASK; boolean ascending = (shiftPressed == 0); Index: StatusBar.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/StatusBar.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StatusBar.java 3 Apr 2004 07:56:47 -0000 1.1 --- StatusBar.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 96,100 **** public void workStarted(int length) { ! System.out.println("Progressbar workstarted" + length); setMaximum(length); --- 96,100 ---- public void workStarted(int length) { ! //System.out.println("Progressbar workstarted" + length); setMaximum(length); Index: FileSystemModel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/FileSystemModel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FileSystemModel.java 3 Apr 2004 07:56:46 -0000 1.1 --- FileSystemModel.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 189,193 **** public SimpleDirectoryNode addSimpleDirectoryNode(File file) { ! System.out.println(file.getPath()); SimpleDirectoryNode node = new SimpleDirectoryNode(file); --- 189,193 ---- public SimpleDirectoryNode addSimpleDirectoryNode(File file) { ! //System.out.println(file.getPath()); SimpleDirectoryNode node = new SimpleDirectoryNode(file); Index: InternalJPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/InternalJPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InternalJPanel.java 3 Apr 2004 07:56:47 -0000 1.1 --- InternalJPanel.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 118,122 **** public void mouseMoved(MouseEvent e) { ! //System.out.println("mousemoved"); Point p = e.getPoint(); --- 118,122 ---- public void mouseMoved(MouseEvent e) { ! ////System.out.println("mousemoved"); Point p = e.getPoint(); *************** *** 135,139 **** if (closeRect.contains(p)) { if (closeButtonVisible == false) { ! //System.out.println("closebutton was invisible"); closeButtonVisible = true; if (closeRect != null) --- 135,139 ---- if (closeRect.contains(p)) { if (closeButtonVisible == false) { ! ////System.out.println("closebutton was invisible"); closeButtonVisible = true; if (closeRect != null) *************** *** 160,164 **** if (printRect.contains(p)) { if (!printButtonVisible) { ! //System.out.println("closebutton was invisible"); printButtonVisible = true; if (printRect != null) --- 160,164 ---- if (printRect.contains(p)) { if (!printButtonVisible) { ! ////System.out.println("closebutton was invisible"); printButtonVisible = true; if (printRect != null) *************** *** 355,359 **** public void dispatchListeners(Component c) { ! //System.out.println("dispatchlisteners internal panel" + c); c.addMouseMotionListener(this); --- 355,359 ---- public void dispatchListeners(Component c) { ! ////System.out.println("dispatchlisteners internal panel" + c); c.addMouseMotionListener(this); *************** *** 484,492 **** gg.scale(0.7,0.7); ! System.out.println(g.getClipBounds()); ! System.out.println(pf.getWidth() + " " +pf.getHeight()); ! System.out.println("paper width" + pf.getPaper().getWidth());*/ --- 484,492 ---- gg.scale(0.7,0.7); ! //System.out.println(g.getClipBounds()); ! //System.out.println(pf.getWidth() + " " +pf.getHeight()); ! //System.out.println("paper width" + pf.getPaper().getWidth());*/ Index: GuiUser.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/GuiUser.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GuiUser.java 3 Apr 2004 07:56:47 -0000 1.1 --- GuiUser.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 289,293 **** public void windowLostFocus(WindowEvent e) { ! System.out.println(e.getNewState()); iframe.hide(); --- 289,293 ---- public void windowLostFocus(WindowEvent e) { ! //System.out.println(e.getNewState()); iframe.hide(); *************** *** 315,319 **** public void windowLostFocus(WindowEvent e) { ! //System.out.println(e.getNewState()); iframe.hide(); --- 315,319 ---- public void windowLostFocus(WindowEvent e) { ! ////System.out.println(e.getNewState()); iframe.hide(); Index: OverviewPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/OverviewPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OverviewPanel.java 3 Apr 2004 07:56:47 -0000 1.1 --- OverviewPanel.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 438,442 **** isEntered = true; isExited = false; ! //System.out.println("mouseentered"); } --- 438,442 ---- isEntered = true; isExited = false; ! ////System.out.println("mouseentered"); } *************** *** 446,450 **** isEntered = false; isExited = true; ! //System.out.println("mouseexited"); } --- 446,450 ---- isEntered = false; isExited = true; ! ////System.out.println("mouseexited"); } Index: WrappedEditorPane.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/WrappedEditorPane.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WrappedEditorPane.java 3 Apr 2004 07:56:46 -0000 1.1 --- WrappedEditorPane.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 96,100 **** Mailsomething.getUser().getIntegerProperty("Viewer.bodywidth"); ! //System.out.println("wrappededitorpane bodywith = " + bodywidth); if (bodywidth == -1) --- 96,100 ---- Mailsomething.getUser().getIntegerProperty("Viewer.bodywidth"); ! ////System.out.println("wrappededitorpane bodywith = " + bodywidth); if (bodywidth == -1) *************** *** 121,125 **** bodywidth = 150; ! //System.out.println("wrappededitorpane bodywith = " + bodywidth); //leftmargin = Mailsomething.getUser().getIntegerProperty("Editor.leftmargin"); --- 121,125 ---- bodywidth = 150; ! ////System.out.println("wrappededitorpane bodywith = " + bodywidth); //leftmargin = Mailsomething.getUser().getIntegerProperty("Editor.leftmargin"); *************** *** 161,165 **** if(scrollpane != null) { ! System.out.println("horizontal never"); scrollpane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER); } --- 161,165 ---- if(scrollpane != null) { ! //System.out.println("horizontal never"); scrollpane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER); } *************** *** 223,227 **** if (p != null) { ! //System.out.println("vertical scrollbar " + p.getWidth()); con.width -= p.getWidth(); --- 223,227 ---- if (p != null) { ! ////System.out.println("vertical scrollbar " + p.getWidth()); con.width -= p.getWidth(); *************** *** 263,267 **** if (p != null) { ! //System.out.println("vertical scrollbar " + p.getWidth()); bodywidth -= p.getWidth(); } --- 263,267 ---- if (p != null) { ! ////System.out.println("vertical scrollbar " + p.getWidth()); bodywidth -= p.getWidth(); } *************** *** 285,289 **** if (p != null) { ! //System.out.println("vertical scrollbar " + p.getWidth()); con.width -= p.getWidth(); } --- 285,289 ---- if (p != null) { ! ////System.out.println("vertical scrollbar " + p.getWidth()); con.width -= p.getWidth(); } *************** *** 295,299 **** //testcounter++; ! //System.out.println("wrappededitorpane resizing"); super.setPreferredSize(null); //con.width --- 295,299 ---- //testcounter++; ! ////System.out.println("wrappededitorpane resizing"); super.setPreferredSize(null); //con.width *************** *** 378,382 **** public void actionPerformed(ActionEvent e) { ! System.out.println("actionperformed"); } --- 378,382 ---- public void actionPerformed(ActionEvent e) { ! //System.out.println("actionperformed"); } *************** *** 446,450 **** }*/ ! //System.out.println("printmarginline"); } else if (showMargenLine) { --- 446,450 ---- }*/ ! ////System.out.println("printmarginline"); } else if (showMargenLine) { Index: InternalJScrollPane.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/InternalJScrollPane.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InternalJScrollPane.java 3 Apr 2004 07:56:46 -0000 1.1 --- InternalJScrollPane.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 166,170 **** public void mouseMoved(MouseEvent e) { ! ////System.out.println("mousemoved - scroll"); Point p = e.getPoint(); --- 166,170 ---- public void mouseMoved(MouseEvent e) { ! //////System.out.println("mousemoved - scroll"); Point p = e.getPoint(); *************** *** 209,213 **** if (printRect.contains(p)) { if (!printButtonVisible) { ! //System.out.println("closebutton was invisible"); printButtonVisible = true; if (printRect != null) --- 209,213 ---- if (printRect.contains(p)) { if (!printButtonVisible) { ! ////System.out.println("closebutton was invisible"); printButtonVisible = true; if (printRect != null) *************** *** 335,339 **** lastEvent = e; ! //System.out.println("internaljscrollpane mousepressed"); Point p = e.getPoint(); --- 335,339 ---- lastEvent = e; ! ////System.out.println("internaljscrollpane mousepressed"); Point p = e.getPoint(); *************** *** 497,501 **** public void dispatchListeners(Component c) { ! ////System.out.println("dispatchlisteners internal jscrollpane"); c.addMouseMotionListener(this); --- 497,501 ---- public void dispatchListeners(Component c) { ! //////System.out.println("dispatchlisteners internal jscrollpane"); c.addMouseMotionListener(this); *************** *** 587,591 **** protected void processMouseMotionEvent(MouseEvent e) { ! System.out.println("processmousemotionevent"); //e.consume(); --- 587,591 ---- protected void processMouseMotionEvent(MouseEvent e) { ! //System.out.println("processmousemotionevent"); //e.consume(); *************** *** 630,634 **** pf.setOrientation(PageFormat.PORTRAIT); ! /*System.out.println("imageablex" + pf.getPaper().getImageableX()); pf.getPaper().setImageableArea( --- 630,634 ---- pf.setOrientation(PageFormat.PORTRAIT); ! /*//System.out.println("imageablex" + pf.getPaper().getImageableX()); pf.getPaper().setImageableArea( Index: FileExplorer.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/FileExplorer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FileExplorer.java 3 Apr 2004 07:56:47 -0000 1.1 --- FileExplorer.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 759,763 **** TreePath[] paths = getSelectionPaths(); ! System.out.println("paths selected + " + paths.length); --- 759,763 ---- TreePath[] paths = getSelectionPaths(); ! //System.out.println("paths selected + " + paths.length); Index: GuiToolbar.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/GuiToolbar.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GuiToolbar.java 3 Apr 2004 07:56:47 -0000 1.1 --- GuiToolbar.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 163,167 **** PixelGrabber grab = new PixelGrabber(image.getImage(), 0, 0, 1, image.getIconHeight(), pixels, 0, 1); //PixelGrabber grab = new PixelGrabber(image.getImage(), 0, image.getIconHeight() - d.height, 1, d.height, pixels, 0, 1); ! //System.out.println("" + menu.getBounds() + composeMail.getBounds()); --- 163,167 ---- PixelGrabber grab = new PixelGrabber(image.getImage(), 0, 0, 1, image.getIconHeight(), pixels, 0, 1); //PixelGrabber grab = new PixelGrabber(image.getImage(), 0, image.getIconHeight() - d.height, 1, d.height, pixels, 0, 1); ! ////System.out.println("" + menu.getBounds() + composeMail.getBounds()); *************** *** 173,177 **** //for(int j = 0; j < pixels.length; j++) ! //System.out.println("pixel nr " + j + " " + pixels[j]); for (int j = 0; j < buttons.size(); j++) { --- 173,177 ---- //for(int j = 0; j < pixels.length; j++) ! ////System.out.println("pixel nr " + j + " " + pixels[j]); for (int j = 0; j < buttons.size(); j++) { *************** *** 203,207 **** //if(image != null) { ! //System.out.println("setimage image er ikke null"); tracker = new MediaTracker(this); --- 203,207 ---- //if(image != null) { ! ////System.out.println("setimage image er ikke null"); tracker = new MediaTracker(this); Index: NotePad.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/NotePad.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NotePad.java 3 Apr 2004 07:56:47 -0000 1.1 --- NotePad.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 272,276 **** } catch (UnsupportedLookAndFeelException f) { ! System.out.println("unsupported look and feel"); } --- 272,276 ---- } catch (UnsupportedLookAndFeelException f) { ! //System.out.println("unsupported look and feel"); } Index: CustomSplitPane.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/CustomSplitPane.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CustomSplitPane.java 3 Apr 2004 07:56:47 -0000 1.1 --- CustomSplitPane.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 674,678 **** } else { ! System.out.println("customsplitpane is visible"); } --- 674,678 ---- } else { ! //System.out.println("customsplitpane is visible"); } Index: SimpleInterfaceImpl.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/SimpleInterfaceImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SimpleInterfaceImpl.java 3 Apr 2004 07:56:46 -0000 1.1 --- SimpleInterfaceImpl.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 33,37 **** } ! System.out.println("source is NOT mailservice"); --- 33,37 ---- } ! //System.out.println("source is NOT mailservice"); Index: TreeModelSupport.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/TreeModelSupport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TreeModelSupport.java 3 Apr 2004 07:56:47 -0000 1.1 --- TreeModelSupport.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 66,70 **** TreeModelListener listener = (TreeModelListener) listeners.nextElement(); listener.treeNodesInserted(e); ! //System.out.println("treenodesinserted"); } } --- 66,70 ---- TreeModelListener listener = (TreeModelListener) listeners.nextElement(); listener.treeNodesInserted(e); ! ////System.out.println("treenodesinserted"); } } *************** *** 95,99 **** TreeModelListener listener = (TreeModelListener) listeners.nextElement(); listener.treeStructureChanged(e); ! //System.out.println("treestructurechanged"); } } --- 95,99 ---- TreeModelListener listener = (TreeModelListener) listeners.nextElement(); listener.treeStructureChanged(e); ! ////System.out.println("treestructurechanged"); } } Index: TransparentMenu.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/TransparentMenu.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TransparentMenu.java 3 Apr 2004 07:56:47 -0000 1.1 --- TransparentMenu.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 215,219 **** line.setMenuLabel( (String) line.getAction().getValue(AbstractAction.NAME)); ! //System.out.println("action nr " + i); menuLines.add(line); --- 215,219 ---- line.setMenuLabel( (String) line.getAction().getValue(AbstractAction.NAME)); ! ////System.out.println("action nr " + i); menuLines.add(line); *************** *** 297,301 **** public void addToComponent(Component c) { ! //System.out.println("transp menu add "); c.addMouseListener(new PopupListener()); --- 297,301 ---- public void addToComponent(Component c) { ! ////System.out.println("transp menu add "); c.addMouseListener(new PopupListener()); *************** *** 398,402 **** public void paint(Graphics g) { ! //System.out.println("transparent menu painting"); isPainting = true; --- 398,402 ---- public void paint(Graphics g) { ! ////System.out.println("transparent menu painting"); isPainting = true; *************** *** 551,555 **** public void mouseReleased(MouseEvent e) { ! System.out.println("transparent menu mousereleased"); if (!isPopping) { --- 551,555 ---- public void mouseReleased(MouseEvent e) { ! //System.out.println("transparent menu mousereleased"); if (!isPopping) { *************** *** 568,572 **** if (e.isPopupTrigger()) { ! System.out.println("ispopuptrigger"); if (source != null) { --- 568,572 ---- if (e.isPopupTrigger()) { ! //System.out.println("ispopuptrigger"); if (source != null) { *************** *** 582,586 **** if (actionMap != null) { ! System.out.println("actionmap != null"); Object[] keys = actionMap.keys(); --- 582,586 ---- if (actionMap != null) { ! //System.out.println("actionmap != null"); Object[] keys = actionMap.keys(); *************** *** 642,646 **** new Rectangle(p.x, p.y, menuWidth, menuHeight); ! System.out.println("" + rect1); if (painter.isVisible(rect1, (JComponent) e.getSource())) { --- 642,646 ---- new Rectangle(p.x, p.y, menuWidth, menuHeight); ! //System.out.println("" + rect1); if (painter.isVisible(rect1, (JComponent) e.getSource())) { *************** *** 825,829 **** * */ ! System.out.println("mouseclicked transparent menu" + e.getPoint()); Point p = e.getPoint(); --- 825,829 ---- * */ ! //System.out.println("mouseclicked transparent menu" + e.getPoint()); Point p = e.getPoint(); *************** *** 849,854 **** loop : for (int i = 0; i < menuLines.size() + 1; i++) { ! System.out.println( ! p.y + " " + (i * itemHeight + " " + (i + 1) * itemHeight)); if (p.y > i * itemHeight && p.y < (i + 1) * itemHeight) { --- 849,854 ---- loop : for (int i = 0; i < menuLines.size() + 1; i++) { ! //System.out.println( ! // p.y + " " + (i * itemHeight + " " + (i + 1) * itemHeight)); if (p.y > i * itemHeight && p.y < (i + 1) * itemHeight) { *************** *** 880,884 **** } ! System.out.println("actionCOmmand = " + actionCommand); ActionEvent f = --- 880,884 ---- } ! //System.out.println("actionCOmmand = " + actionCommand); ActionEvent f = *************** *** 908,912 **** for (int j = 0; j < actionListeners.size(); j++) { ! //System.out.println("calling actionperformed + " + j); ActionListener listener = --- 908,912 ---- for (int j = 0; j < actionListeners.size(); j++) { ! ////System.out.println("calling actionperformed + " + j); ActionListener listener = *************** *** 1143,1147 **** public void actionPerformed(ActionEvent e) { ! System.out.println("actionperformed called"); } }; --- 1143,1147 ---- public void actionPerformed(ActionEvent e) { ! //System.out.println("actionperformed called"); } }; *************** *** 1153,1157 **** public void actionPerformed(ActionEvent e) { ! System.out.println("actionperformed 2 called"); } }; --- 1153,1157 ---- public void actionPerformed(ActionEvent e) { ! //System.out.println("actionperformed 2 called"); } }; Index: EnviromentPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/EnviromentPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EnviromentPanel.java 3 Apr 2004 07:56:46 -0000 1.1 --- EnviromentPanel.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 143,147 **** if (e.getActionCommand().equals(JFileChooser.APPROVE_SELECTION)) { ! System.out.println("choose file"); File file = l.chooser.getSelectedFile(); --- 143,147 ---- if (e.getActionCommand().equals(JFileChooser.APPROVE_SELECTION)) { ! //System.out.println("choose file"); File file = l.chooser.getSelectedFile(); Index: WrappedEditor.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/WrappedEditor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WrappedEditor.java 3 Apr 2004 07:56:47 -0000 1.1 --- WrappedEditor.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 217,221 **** repaint(); ! //System.out.println("printmarginline"); } else if (showMargenLine) { --- 217,221 ---- repaint(); ! ////System.out.println("printmarginline"); } else if (showMargenLine) { Index: BasicHyperlinkListener.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/BasicHyperlinkListener.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BasicHyperlinkListener.java 3 Apr 2004 07:56:47 -0000 1.1 --- BasicHyperlinkListener.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 39,43 **** ! //System.out.println("hyperlinkupdate"); if(event.getEventType().equals(HyperlinkEvent.EventType.ENTERED)) { --- 39,43 ---- ! ////System.out.println("hyperlinkupdate"); if(event.getEventType().equals(HyperlinkEvent.EventType.ENTERED)) { *************** *** 51,55 **** status.setText(event.getURL().toExternalForm()); ! //System.out.println("entered"); //lib.gui.event.StandardGuiActions.MailSettings --- 51,55 ---- status.setText(event.getURL().toExternalForm()); ! ////System.out.println("entered"); //lib.gui.event.StandardGuiActions.MailSettings *************** *** 78,82 **** String t = event.getURL().toString(); ! System.out.println(t); //should have some other handling (internal) of mailto-links --- 78,82 ---- String t = event.getURL().toString(); ! //System.out.println(t); //should have some other handling (internal) of mailto-links *************** *** 120,124 **** } catch (IOException f) { ! System.out.println(f.getMessage()); f.printStackTrace(); } --- 120,124 ---- } catch (IOException f) { ! //System.out.println(f.getMessage()); f.printStackTrace(); } Index: StatusPanel.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/StatusPanel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StatusPanel.java 3 Apr 2004 07:56:47 -0000 1.1 --- StatusPanel.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 279,283 **** if(progressBar.getPercentComplete() == 0 || workLength == 0) { ! //System.out.println("statuspanel displayaction"); displayAction(600); --- 279,283 ---- if(progressBar.getPercentComplete() == 0 || workLength == 0) { ! ////System.out.println("statuspanel displayaction"); displayAction(600); *************** *** 327,331 **** if (barVisible == false) { ! //System.out.println("barvisible = false in method statuschanged:statuspanel"); progressBar.setForeground(Color.orange); --- 327,331 ---- if (barVisible == false) { ! ////System.out.println("barvisible = false in method statuschanged:statuspanel"); progressBar.setForeground(Color.orange); *************** *** 337,341 **** } ! //System.out.println(status + " " + length); progressBar.setMaximum(length); --- 337,341 ---- } ! ////System.out.println(status + " " + length); progressBar.setMaximum(length); Index: FontHandler.java =================================================================== RCS file: /cvsroot/mailsomething/mailsomething/src/net/sf/mailsomething/gui/FontHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FontHandler.java 3 Apr 2004 07:56:47 -0000 1.1 --- FontHandler.java 20 Mar 2005 20:23:36 -0000 1.2 *************** *** 132,138 **** public Font getFont() { ! if(font != null) ! System.out.println( ! "" + font.getSize() + font.getFamily() + font.getFontName()); return font; --- 132,138 ---- public Font getFont() { ! //if(font != null) ! //System.out.println( ! // "" + font.getSize() + font.getFamily() + font.getFontName()); return font; *************** *** 196,200 **** for (int i = 0; i < fonts.length; i++) { ! //System.out.println(familynames[i]); if (fonts[i].getFamily().equalsIgnoreCase("batang")) { --- 196,200 ---- for (int i = 0; i < fonts.length; i++) { ! ////System.out.println(familynames[i]); if (fonts[i].getFamily().equalsIgnoreCase("batang")) { |