有才華的人,別忘記給滋潤你的那塊土壤施肥

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            28 隨筆 :: 5 文章 :: 147 評論 :: 0 Trackbacks
                在很多軟件中每個文本組件都有自定義的菜單,這個blogjava的編輯器就有這樣的菜單如:Cut , Copy,Paste,Delete,Select All,在Swing中若也想在JTextField,JTextArea,JEditorPane,JTextPane等等這些組件中都提供如此自定義菜單的功能,每個都寫繼承類?或者加鼠標監聽事件?但不管怎樣弄都會實現效果,只不過這樣動靜很大,不好維護,今天在網上看到一個很是方便的方法。

                 大家都知道,Swing中所有的事件都是進入java.awt.EventQueue這個隊列中等待,然后通過dispatchEvent方法進行派發,那么我們在這里就寫個繼承EventQueue這個類,攔截所有的事件并對其進行處理,我們的文本組件都是繼承與JTextComponent的,那么到這里我們就能為所有的文本組件定制一致的菜單了。效果如:
               



          見代碼:
          package org.kissjava.swingx.core;

          import java.awt.AWTEvent;
          import java.awt.Component;
          import java.awt.EventQueue;
          import java.awt.Point;
          import java.awt.Toolkit;
          import java.awt.datatransfer.DataFlavor;
          import java.awt.datatransfer.Transferable;
          import java.awt.event.ActionEvent;
          import java.awt.event.MouseEvent;

          import javax.swing.AbstractAction;
          import javax.swing.JPopupMenu;
          import javax.swing.MenuSelectionManager;
          import javax.swing.SwingUtilities;
          import javax.swing.text.JTextComponent;

          public class KJEventQueue extends EventQueue {
              @Override
               
          protected void dispatchEvent(AWTEvent event)
                      
          super.dispatchEvent(event); 
               
                      
          // interested only in mouseevents 
                      if(!(event instanceof MouseEvent)) 
                          
          return
               
                      MouseEvent me 
          = (MouseEvent)event; 
               
                      
          // interested only in popuptriggers 
                      if(!me.isPopupTrigger()) 
                          
          return
               
                      
          // me.getComponent() retunrs the heavy weight component on which event occured 
                      Component comp = SwingUtilities.getDeepestComponentAt(me.getComponent(), me.getX(), me.getY()); 
               
                      
          // interested only in textcomponents 
                      if(!(comp instanceof JTextComponent)) 
                          
          return
               
                      
          // no popup shown by user code 
                      if(MenuSelectionManager.defaultManager().getSelectedPath().length>0
                          
          return
               
                      
          // create popup menu and show 
                      JTextComponent tc = (JTextComponent)comp; 
                      JPopupMenu menu 
          = new JPopupMenu(); 
                      menu.add(
          new CutAction(tc)); 
                      menu.add(
          new CopyAction(tc)); 
                      menu.add(
          new PasteAction(tc)); 
                      menu.add(
          new DeleteAction(tc)); 
                      menu.addSeparator(); 
                      menu.add(
          new SelectAllAction(tc)); 
                      
                      Point pt 
          = SwingUtilities.convertPoint(me.getComponent(), me.getPoint(), tc);
                      menu.show(tc, pt.x, pt.y);
                  }
           
               
          class CutAction extends AbstractAction
                      JTextComponent comp; 
                   
                      
          public CutAction(JTextComponent comp)
                          
          super("Cut"); 
                          
          this.comp = comp; 
                      }
           
                   
                      
          public void actionPerformed(ActionEvent e)
                          comp.cut(); 
                      }
           
                   
                      
          public boolean isEnabled()
                          
          return comp.isEditable() 
                                  
          && comp.isEnabled() 
                                  
          && comp.getSelectedText()!=null
                      }
           
                  }
           
                   
                  
          // @author Santhosh Kumar T - santhosh@in.fiorano.com 
                  class PasteAction extends AbstractAction
                      JTextComponent comp; 
                   
                      
          public PasteAction(JTextComponent comp)
                          
          super("Paste"); 
                          
          this.comp = comp; 
                      }
           
                   
                      
          public void actionPerformed(ActionEvent e)
                          comp.paste(); 
                      }
           
                   
                      
          public boolean isEnabled()
                          
          if (comp.isEditable() && comp.isEnabled())
                              Transferable contents 
          = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(this); 
                              
          return contents.isDataFlavorSupported(DataFlavor.stringFlavor); 
                          }
          else 
                              
          return false
                      }
           
                  }
           
                   
                  
          // @author Santhosh Kumar T - santhosh@in.fiorano.com 
                  class DeleteAction extends AbstractAction
                      JTextComponent comp; 
                   
                      
          public DeleteAction(JTextComponent comp)
                          
          super("Delete"); 
                          
          this.comp = comp; 
                      }
           
                   
                      
          public void actionPerformed(ActionEvent e)
                          comp.replaceSelection(
          null); 
                      }
           
                   
                      
          public boolean isEnabled()
                          
          return comp.isEditable() 
                                  
          && comp.isEnabled() 
                                  
          && comp.getSelectedText()!=null
                      }
           
                  }
           
                   
                  
          // @author Santhosh Kumar T - santhosh@in.fiorano.com 
                  class CopyAction extends AbstractAction
                      JTextComponent comp; 
                   
                      
          public CopyAction(JTextComponent comp)
                          
          super("Copy"); 
                          
          this.comp = comp; 
                      }
           
                   
                      
          public void actionPerformed(ActionEvent e)
                          comp.copy(); 
                      }
           
                   
                      
          public boolean isEnabled()
                          
          return comp.isEnabled() 
                                  
          && comp.getSelectedText()!=null
                      }
           
                  }
           
                   
                  
          // @author Santhosh Kumar T - santhosh@in.fiorano.com 
                  class SelectAllAction extends AbstractAction
                      JTextComponent comp; 
                   
                      
          public SelectAllAction(JTextComponent comp)
                          
          super("Select All"); 
                          
          this.comp = comp; 
                      }
           
                   
                      
          public void actionPerformed(ActionEvent e)
                          comp.selectAll(); 
                      }
           
                   
                      
          public boolean isEnabled()
                          
          return comp.isEnabled() 
                                  
          && comp.getText().length()>0
                      }
           
                  }
           
          }


                 到這里我們如何使用這個類呢?也很簡單,只要在主程序的入口處加上下面這句就行了:
          Toolkit.getDefaultToolkit().getSystemEventQueue().push(new KJEventQueue()); 

                      也就是在main方法中調用,如:
           

          public static void main(String[] args) {
                  Toolkit.getDefaultToolkit().getSystemEventQueue().push(
          new KJEventQueue()); 
                  
          // TODO Auto-generated method stub
                  SwingUtilities.invokeLater(new Runnable(){
                      
          public void run(){
                          
          new KJEventQuequeDemo();
                      }

                  }
          );
              }



          資料來源:http://www.jroller.com/santhosh/entry/context_menu_for_textcomponents

          posted on 2009-06-27 23:31 kissjava 閱讀(1386) 評論(4)  編輯  收藏 所屬分類: swing

          評論

          # re: Swing中為文本組件定制統一的菜單 2009-06-28 21:58 rochoc
          不錯,學習了,謝謝  回復  更多評論
            

          # re: Swing中為文本組件定制統一的菜單 2009-06-28 23:50 zht
          Santhosh 是個人才  回復  更多評論
            

          # re: Swing中為文本組件定制統一的菜單 2009-06-29 00:03 枯寬
          @zht
          的確,最近沒事都在看他以前的文章  回復  更多評論
            

          # re: Swing中為文本組件定制統一的菜單 2009-07-01 13:26 找個美女做老婆
          Java高手群:Java樂園,群號:28840096 Java樂園網站:http://www.javaly.cn 歡迎Java高手加入,大家一起交流經驗,相互學習,共同進步  回復  更多評論
            

          主站蜘蛛池模板: 临沧市| 兴化市| 四子王旗| 竹北市| 四平市| 北票市| 乃东县| 伽师县| 东辽县| 上栗县| 平度市| 呼玛县| 商河县| 荥阳市| 依安县| 吉安市| 井冈山市| 如东县| 赤峰市| 舒兰市| 白水县| 永德县| 绍兴市| 东乡族自治县| 高雄县| 吴忠市| 孝昌县| 右玉县| 龙门县| 繁峙县| 茂名市| 兰坪| 连平县| 边坝县| 嘉兴市| 大余县| 昌都县| 西畴县| 岑溪市| 德格县| 盐源县|