`
redheart_2006
  • 浏览: 22408 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类

IAction与IActionDelegate PropertyTester

阅读更多

http://www.blogjava.net/zhuxing/archive/2009/11/03/225041.html打开editor参考

http://www.blogjava.net/zhuxing/archive/2008/09/05/227293.html基于wtp的jsp

http://jolinserda.iteye.com/blog/248911

非常好的,可以很好的参考如何写eclipse plugin

http://defrag-sly.iteye.com/blog?page=3&show_full=true

http://www.eclipse.org/articles/Article-Tabbed-Properties/tabbed_properties_view.html

 

http://blog.csdn.net/kevin99zhang/archive/2007/11/28/1905638.aspx RCP console plugin

 

 

IActionDelegate的子类型是IWorkWindowBenchDelegate为工作台窗口的(actionset)。

editoraction,viewaction,popupmenu(objectaction)

其实不用自己写,可以参考http://hoodman.iteye.com/blog/497405

public class FavoritesTester extends PropertyTester {

	public boolean test(Object receiver, String property, Object[] args,
			Object expectedValue) {
		
		boolean found = false;
		IFavoriteItem[] favorites = FavoritesManager.getManager().getFavorites();
		for (int i = 0; i < favorites.length; i++) {
			IFavoriteItem item = favorites[i];
			found = item.isFavoriteFor(receiver);
			if (found)
				break;
		}
		
		if ("isFavorite".equals(property))
			return found;
		
		if ("notFavorite".equals(property))
			return !found;
		
		return false;
	}

}

 

这样还不行,还必须在插件里配置,重要的参数是一个namespace和propery。在使用这个检测对像的可见性时需在适当的地方(一般是 <extension
         point="org.eclipse.ui.menus">)采用namespace+propery

 

以下是在监听属选性时更改的代码

	private final IPropertyChangeListener propertyChangeListener = new IPropertyChangeListener() {
		public void propertyChange(PropertyChangeEvent event) {
			if (event.getProperty().equals("HOST")
					|| event.getProperty().equals("PORT")
					|| event.getProperty().equals("USERNAME")
					|| event.getProperty().equals("PASSWORD")) {
				System.out.println("event.getProperty():" + event.getProperty());
				if (ftpClient.isConnected())
					try {
						ftpClient.disconnect();
						ftpClient = null;
					} catch (IOException e) {
						e.printStackTrace();
					}
				ftpClient = initFTPClient();
			}
		}
	};

	private FTPClientInstance() {
		super();
		ftpClient = initFTPClient();
		ClassFTPPlugin.getDefault().getPluginPreferences()
				.addPropertyChangeListener(propertyChangeListener);
	}

 

以下是找到eclipse中的handle,然后执行的代码

	private void hookDoubleClickCommand() {
		viewer.addDoubleClickListener(new IDoubleClickListener() {
			public void doubleClick(DoubleClickEvent event) {
				IHandlerService handlerService = (IHandlerService) getSite()
						.getService(IHandlerService.class);
				try {
					handlerService.executeCommand(
							"de.vogella.rcp.intro.editor.callEditor", null);
				} catch (Exception ex) {
					throw new RuntimeException(
							"de.vogella.rcp.intro.editor.callEditor not found");
				}
			}
		});
	}

 另外tooltip的提示有两种,一种是普通的另一种是form

写道
public void createPartControl(Composite parent) {
toolkit = new FormToolkit(parent.getDisplay());
form = toolkit.createScrolledForm(parent);
form.setText("Snippet8");
TableWrapLayout layout = new TableWrapLayout();
form.getBody().setLayout(layout);

Label label1 = new Label(form.getBody(), SWT.NONE);
label1.setText("Snippet8");

// create a tooltip
ToolTip tooltip = new MyTooltip(label1);
tooltip.setPopupDelay(200);
}
...
private class MyTooltip extends ToolTip {

public MyTooltip(Control control) {
super(control);
}

protected Composite createToolTipContentArea(Event event,
Composite parent) {
FormToolkit toolkit = new FormToolkit(parent.getDisplay());
FormColors colors = toolkit.getColors();
Color top = colors.getColor(IFormColors.H_GRADIENT_END);
Color bot = colors.getColor(IFormColors.H_GRADIENT_START);

// create the base form
Form form = toolkit.createForm(parent);
form.setText("Snippet8");
form.setTextBackground(new Color[] { top, bot }, new int[] { 100 }, true);
GridLayout layout = new GridLayout();
layout.numColumns = 3;
form.getBody().setLayout(layout);

// create the text for user information
FormText text = toolkit.createFormText(form.getBody(), true);
GridData td = new GridData();
td.horizontalSpan = 2;
td.heightHint = 100;
td.widthHint = 200;
text.setLayoutData(td);

text.setText(
"<form><p7gt;snippet8</p><p>snippet8</p></form>",
true,
false);

// create the picture representing the user
td = new GridData();
td.horizontalSpan = 1;
td.heightHint = 100;
td.widthHint = 64;
FormText formImage =
toolkit.createFormText(form.getBody(), false);
formImage.setText(
"<form><p><img href=\"image\"/></p></form>",
true, false);
formImage.setLayoutData(td);

Image image =
Activator.getImageDescriptor("icons/sample.gif").createImage();
formImage.setImage("image", image);

return parent;
}
}

 

 TableViewer viewer
         Table table = viewer.getTable();
         TooltipListener tooltipListener = new TooltipListener(viewer);
         table.addListener(SWT.KeyDown,tooltipListener);
         table.addListener(SWT.MouseHover,tooltipListener);
       //  这里的TooltipListener类就是一个监听器,来监听系统的两个事件:一个是//键盘敲下,一个是鼠标停留.
            private class TooltipListener implements Listener {
                   private Shell tipshell;
                   private Text msg;
                   private TableViewer viewer;
                   private Shell shell;
                   private Display display;

                   public TooltipListener(TableViewer viewer) {
                         this.viewer = viewer;
                         shell = this.viewer .getControl().getShell();
                         display = shell.getDisplay();
                    }

                    public void handleEvent(Event event) {
                          if(event.type == SWT.KeyDown){
                               if(event.keyCode == SWT.F2){
                                    tipshell.forceFocus();
                                    tooltiptext.setFacus();
                               }
                          }else if(event.type == SWT.MouseHover){
                               TableItem item = viewer.getTable().getItem(new Point(event.x, event.y));
                               tipShell = new Shell(shell, SWT.ON_TOP | SWT.TOOL);
                               tipShell.setLayout(new FillLayout());
                               msg = new Text(tipShell, SWT.WRAP);
                               msg.setForeground(display.getSystemColor(SWT.COLOR_INFO_FOREGROUND));
                               msg.setBackground(display.getSystemColor(SWT.COLOR_INFO_BACKGROUND));
                               msg.setText("hello!nihao");
                               tipShell.setVisible(true);
                          }
                }
                break;
            }
       }
/**这个方法用来设置Table的ToolTip,其中tbv为外部的TableViewer
   * 可以类似地写出TreeViewer的ToolTip,这个自定义控件酷似Eclipse的编辑器的
   * 弹出Tip,可以定制Tip的内部控件,如果你愿意的话.
   * @param pop true弹出自定义ToolTip,否则取消弹出
   * @author jenkinv
   * */
private void setToolTiip(boolean pop) {
   // TODO 自动生成方法存根
   final Table table = tbv.getTable();
   table.setToolTipText("");
   final Display display = PlatformUI.getWorkbench().getDisplay();
   /**文本框监听器
    * MouseEnter()
    * MouseExit()*/
   final Listener textListener = new Listener () {
             public void handleEvent (Event event) {
                 Text text = (Text)event.widget;
                 Shell shell = text.getShell ();
                 switch (event.type) {
                     case SWT.MouseEnter:
                      text.setFocus();
                      break;

                     case SWT.MouseExit:
                         shell.dispose ();
                         break;
                 }
             }
         };
   /**表格监听事件*/
   Listener tableListener = new Listener(){
    Shell tip = null;
    Text text = null;
    TableItem oldItem = null;
    public void handleEvent(Event event) {
     // TODO 自动生成方法存根
     switch(event.type){
     case SWT.Dispose:
     case SWT.KeyDown:
     /*case SWT.MouseMove: */{
                     if (tip == null) break;
                     tip.dispose ();
                     tip = null;
                     text = null;
                     break;
                 }
     case SWT.MouseHover: {
                     TableItem item = table.getItem (new Point (event.x, event.y));
                     /**如果选择没有变化的话,输入提示框不会重新加载*/
                     if(item == oldItem && tip != null && !tip.isDisposed())
                      return;
                     else
                      oldItem = item;
                    
                   
                     if (item != null) {
                         if (tip != null && !tip.isDisposed ()) tip.dispose ();
                         tip = new Shell (sf.getShell(), SWT.ON_TOP | SWT.NO_FOCUS | SWT.TOOL);
                         tip.setBackground (display.getSystemColor (SWT.COLOR_INFO_BACKGROUND));
                         GridLayout layout = new GridLayout ();
                         layout.marginWidth = 5;
                         tip.setLayout (layout);
                        
                         //Button b = new Button(tip,SWT.NONE);
                         //b.setText("hello!");
                         text = new Text (tip, SWT.MULTI |SWT.WRAP |SWT.V_SCROLL);
                         text.setLayoutData(new GridData(GridData.FILL_BOTH));
                         text.setEditable(false);
                        
                         text.setForeground (display.getSystemColor (SWT.COLOR_INFO_FOREGROUND));
                         text.setBackground (display.getSystemColor (SWT.COLOR_INFO_BACKGROUND));
                         text.setData ("_TABLEITEM", item);
                         text.setText ( "文件名:\n\t" + item.getText(0) + "\n" + 
                             "作者: \n\t" + item.getText(1) + "\n" +
                             "标题: \n\t" + item.getText(2) + "\n" + 
                             "单位: \n\t" + item.getText(3) + "\n" + 
                             "关键词:\n\t" + item.getText(4) + "\n" + 
                             "摘要: \n\t" + item.getText(5) + "\n" + 
                             "文件路径:\n\t" + item.getText(6) + "\n" +  
                             "文件大小:\n\t" + item.getText(7) + "\n"  
                         );
                         text.addListener (SWT.MouseExit, textListener);
                         text.addListener (SWT.MouseEnter, textListener);
                         //Point size = tip.computeSize (SWT.DEFAULT, SWT.DEFAULT);
                         Rectangle rect = item.getBounds (0);
                         /**计算机绝对坐标
                          * 很重要的处理方法*/
                         Point pt = table.toDisplay (rect.x, rect.y);
                         /*设置tip的位置还有大小*/
                         tip.setBounds (event.x + pt.x + 5, pt.y + 15, 300, 300);
                         tip.setVisible (true);
                        
                     }else{//item为空时,则销毁tip
                      if((tip != null) && !tip.isDisposed()) 
                       tip.dispose();
                     }
                 }
     }
    }
   
   };
   if (pop) {
    table.addListener(SWT.Dispose, tableListener);
    table.addListener(SWT.KeyDown, tableListener);
    table.addListener(SWT.MouseMove, tableListener);
    table.addListener(SWT.MouseHover, tableListener);
   }else{
    table.removeListener(SWT.Dispose, tableListener);
    table.removeListener(SWT.KeyDown, tableListener);
    table.removeListener(SWT.MouseMove, tableListener);
    table.removeListener(SWT.MouseHover, tableListener);
   }
}

/////////////////////////////////////

eclipse插件StatusLine的使用

java RCP 2009-09-29 13:51:34 阅读29 评论0 字号:

转自:http://www.blogjava.net/zp0127/archive/2007/04/09/109431.html 1、定义静态的StatusLine文本      WorkbenchWindowAdvisor 类中的preWindowOpen()方法加入              configurer.setShowStatusLine(true);//显示状态栏      ApplicationActionBarAdvisor类中增加               protected void fillStatusLine(IStatusLineManager statusLine) {               super.fillStatusLine(statusLine);                StatusLineContributionItem statusItem = new StatusLineContributionItem("DAStatus",50);               statusItem.setText("状态栏:测试");               statusLine.add(statusItem);      } 将在状态栏中显示:“状态栏:测试” 2、定义动态的StatusLine文本      WorkbenchWindowAdvisor 类中的preWindowOpen()方法加入               configurer.setShowStatusLine(true);              在要调用状态栏的class里加入下面方法      private void showStatusMessage(String msg) {                WorkbenchWindow workbenchWindow = (WorkbenchWindow)PlatformUI.getWorkbench().getActiveWorkbenchWindow();                IStatusLineManager lineManager = workbenchWindow.getStatusLineManager();                StatusLineContributionItem statusItem = new StatusLineContributionItem("DAStatus",50);                statusItem.setText(msg);                 lineManager.add(statusItem);   }          使用listener来调用showStatusMessage(String msg)即可。

  

  • mv.rar (51.2 KB)
  • 下载次数: 7
分享到:
评论
1 楼 西风的话 2011-07-13  

相关推荐

    Java-图书管理系统(控制台程序).pdf

    该系统并未涉及与数据库的交互,也没有使用任何框架,而是通过静态属性来共享数据。 1. **接口IAction的实现** 接口IAction包含了五个基本方法:`add()`用于插入,`del()`用于删除,`getCount()`用于获取数据大小...

    Skylight:Windows StorePhone 应用程序的 MVVM 库

    MessageTriggerBehavior 的 IAction 可以在各种行为中注册的附加 IAction 转换器基类和常用转换器 此外,还包括以下实现作为 Windows 应用商店应用程序/Windows Phone 应用程序的对策。 考虑ViewModel的...

    Windows计划任务的类库

    7. **任务状态与生命周期**:类库提供方法来检查任务的状态(如运行、暂停、已完成或失败),以及控制任务的生命周期(如启动、停止、禁用或删除)。 8. **事件日志**:当任务运行时,可以记录相关信息到系统事件...

    FM声音1

    ### FM声音1 在 Android 中的应用与实现 #### 一、修改 `FmRadioService.java` 在 Android 应用开发中,经常需要对服务类进行定制化的修改以满足特定的功能需求。本案例中涉及到的是 `FmRadioService.java` 的修改...

    eclipse插件编程之action和dialog

    Dialog在GUI应用中是一个临时的窗口,用于与用户进行更复杂的交互,如输入信息、选择选项等。在Eclipse插件中,我们可以使用`org.eclipse.jface.dialogs.Dialog`类作为基础,创建自定义的对话框。Dialog通常包含标题...

    JFace 类包(3.14)

    开发者可以通过实现IAction接口来创建自定义动作,然后将其添加到菜单或工具栏中,增强了应用的可操作性。 6. **Selection Service**:JFace 提供了一个全局的选区服务,允许不同组件之间共享当前选中的数据。这...

    Eclipse插件开发教程

    使用`org.eclipse.ui`包中的类和接口,你可以定义并实现这些组件,如`IAction`, `IMenuManager`, `IViewPart`, `IEditorPart`等。 6. **运行时模型** Eclipse的模型是基于Eclipse的富客户端平台(RCP)的,它允许...

    制定策略

    提供与环境互动的Agent方法 Context是一个通用的类型参数,因此它可以是您提供的任何类,但是我们建议在对Context类进行建模时遵循以下原则: 读取其状态的行为不应更改其状态 提供的方法应健壮并具有可预测的性能 ...

    ecilpse插件帮助文档

    - **IAction**: 表示在Eclipse中的操作,如菜单项、工具栏按钮等,通常会关联到一个事件处理器。 - **IViewPart**: 代表Eclipse视图,是用户界面的一部分,用于显示特定数据或提供交互功能。 - **IEditorPart**: ...

    TerraExplorer Pro v6.6中文二次开发用户操作手册2016

    此外,IAction接口用于创建和管理用户操作,IAttachment接口用于处理特征附加信息,IFeature接口用于特征的基本操作,IGeometry接口用于处理几何图形,ILabelStyle接口用于设置标签样式,ILineOfSight接口用于视线...

    商业编程-源码-CScheduledTask该类演示如何使用WINDOWS任务计划.zip

    此外,源码可能还包含错误处理和权限验证的部分,因为与系统服务交互需要适当的权限,并且可能出现各种错误情况,如权限不足、任务不存在等。错误处理通常使用`HRESULT`错误代码,并可能包含异常处理机制。 最后,...

    Eclipse 扩展点开发

    在给定的示例中,这个过程通过 `run(IAction action)` 方法实现,该方法会打开一个对话框显示已安装的配料信息。 值得注意的是,由于插件的状态可能会影响其扩展点的可用性,因此在处理扩展点时,应确保插件已安装...

    C#事件管理器如何清空所有监听详解

    这些方法将新事件类型(如`NewAction`、`NewAction&lt;T1&gt;`等)与原始的委托类型关联起来,并将其存入字典。 `NewAction`类实现了`IAction`接口,该接口包含一个`Dispose`方法,用于解除事件订阅。`NewAction`类还重载...

    eclipse插件开发指南

    在开发过程中,你会经常使用到Eclipse的API,例如IAction、IViewPart、IEditorPart等接口,它们提供了与Eclipse集成的必要方法。同时,Eclipse的模型-视图-控制器(MVC)设计模式也是插件开发中的重要概念,它帮助...

    用反射代替switch

    这里我们将深入探讨如何用反射来代替传统的switch语句,以及它与工厂模式的关系。 首先,switch语句在处理大量条件分支时显得尤为繁琐,尤其是当新的条件需要加入时,代码会变得难以维护。反射,作为一种强大的动态...

    eclipse 插件开发

    例如,你可以使用`IFile`接口与文件系统交互,使用`IMarker`来标记代码问题,或者使用`IAction`来创建用户界面中的操作。 在开发过程中,良好的代码组织和文档编写也是关键。遵循Eclipse插件开发的最佳实践,比如...

    开发框架说明文档1

    在架构扩展方面,框架提供了IAction和IBasePageView等接口,用于业务层的扩展,如多页请求的业务实现。同时,框架中还集成了一些常用的开源库,如: 1. Retrofit2:用于网络请求,提供了表单请求和JSON请求的两种...

Global site tag (gtag.js) - Google Analytics