FolderViewer.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)FolderViewer.java 1.11 01/05/23
  3.  *
  4.  * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in the
  15.  *   documentation and/or other materials provided with the distribution.
  16.  * 
  17.  * Neither the name of Sun Microsystems, Inc. or the names of contributors
  18.  * may be used to endorse or promote products derived from this software
  19.  * without specific prior written permission.
  20.  * 
  21.  * This software is provided "AS IS," without a warranty of any kind. ALL
  22.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  23.  * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  24.  * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
  25.  * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
  26.  * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
  27.  * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  28.  * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  29.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
  30.  * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
  31.  * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
  32.  * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  33.  * 
  34.  * You acknowledge that Software is not designed, licensed or intended
  35.  * for use in the design, construction, operation or maintenance of any
  36.  * nuclear facility.
  37.  */
  38. import java.awt.*;
  39. import javax.mail.*;
  40. import javax.swing.*;
  41. import javax.swing.event.*;
  42. import javax.swing.table.*;
  43. /**
  44.  * @version 1.11, 01/05/23
  45.  * @author Christopher Cotton
  46.  * @author Bill Shannon
  47.  */
  48. public class FolderViewer extends JPanel {
  49.     FolderModel model = new FolderModel();
  50.     JScrollPane scrollpane;
  51.     JTable table;
  52.     public FolderViewer() {
  53. this(null);
  54.     }
  55.     public FolderViewer(Folder what) {
  56. super(new GridLayout(1,1));
  57. table = new JTable(model);
  58. table.setShowGrid(false);
  59. scrollpane = JTable.createScrollPaneForTable(table);
  60. // setup the folder we were given
  61. setFolder(what);
  62. // find out what is pressed
  63. table.getSelectionModel().addListSelectionListener(
  64.     new FolderPressed());
  65. scrollpane.setPreferredSize(new Dimension(700, 300));
  66. add(scrollpane);
  67.     }
  68.     /**
  69.      * Change the current Folder for the Viewer
  70.      *
  71.      * @param what the folder to be viewed
  72.      */
  73.     public void setFolder(Folder what) {
  74. try {
  75.     table.getSelectionModel().clearSelection();
  76.     if (SimpleClient.mv != null)
  77. SimpleClient.mv.setMessage(null);
  78.     model.setFolder(what);
  79.     scrollpane.invalidate();
  80.     scrollpane.validate();
  81. } catch (MessagingException me) {
  82.     me.printStackTrace();
  83. }
  84.     }
  85.     class FolderPressed implements ListSelectionListener {
  86. public void valueChanged(ListSelectionEvent e) {
  87.     if (model != null && !e.getValueIsAdjusting()) {
  88. ListSelectionModel lm = (ListSelectionModel) e.getSource();
  89. int which = lm.getMaxSelectionIndex();
  90. if (which != -1) {
  91.     // get the message and display it
  92.     Message msg = model.getMessage(which);
  93.     SimpleClient.mv.setMessage(msg);
  94. }
  95.     }
  96. }
  97.     }
  98. }