- 浏览: 22662 次
- 性别:
- 来自: 长沙
-
最新评论
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
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)即可。
- labeldecorator_1.0.5.zip (134.9 KB)
- 下载次数: 5
- 桌面.rar (3.1 KB)
- 下载次数: 9
- ch04.FileNavigator.rar (112.7 KB)
- 下载次数: 6
- mv.rar (51.2 KB)
- 下载次数: 7
- 复件_副本P020100303357679681074.rar (44.4 KB)
- 下载次数: 5
- org.zte.ui.rar (39.2 KB)
- 下载次数: 8
发表评论
-
Tabbed Property
2010-03-27 17:13 1073引用: http://www.blogjava.net/pa ... -
undo 与redo不可用的原因
2010-03-16 08:24 1018写道 setEditDomain(new DefaultE ... -
表格中的快捷键的设置
2010-03-15 10:36 1164.keyCode == 99&&(e.stat ... -
SWT,decorator
2010-03-13 10:15 860引入别人的http://lggege.iteye.com/bl ... -
eclipse中状态保存以及首选项的变化监听
2010-03-11 08:28 12641.首选项的变化监听 在要监听的类中间分别写入下列代码 ... -
eclipse中打开文件夹以及ftp插件
2010-03-11 07:21 2956// Decompiled by Jad v1.5.8e2. ... -
eclipse 插件开发基本操作
2010-03-10 20:36 2174菜单详解http://www.itpub.net/showth ... -
eclipse 视图间通信
2010-03-04 09:17 2409分为主动式和监听式 1.主动式 其本质 被动方不作改 ... -
java.beans中PropertyChangeSupport使用实例
2010-03-02 09:12 1801import java.beans.PropertyChang ...
相关推荐
deepseek最新资讯、配置方法、使用技巧,持续更新中
Heric拓扑并网离网仿真模型:PR单环控制,SogIPLL锁相环及LCL滤波器共模电流抑制技术解析,基于Heric拓扑的离网并网仿真模型研究与应用分析:PR单环控制与Sogipll锁相环的共模电流抑制效能,#Heric拓扑并离网仿真模型(plecs) 逆变器拓扑为:heric拓扑。 仿真说明: 1.离网时支持非单位功率因数负载。 2.并网时支持功率因数调节。 3.具有共模电流抑制能力(共模电压稳定在Udc 2)。 此外,采用PR单环控制,具有sogipll锁相环,lcl滤波器。 注:(V0004) Plecs版本4.7.3及以上 ,Heric拓扑; 离网仿真; 并网仿真; 非单位功率因数负载; 功率因数调节; 共模电流抑制; 共模电压稳定; PR单环控制; sogipll锁相环; lcl滤波器; Plecs版本4.7.3及以上,Heric拓扑:离网并网仿真模型,支持非单位功率因数与共模电流抑制
2024免费微信小程序毕业设计成品,包括源码+数据库+往届论文资料,附带启动教程和安装包。 启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS 讲解视频:https://www.bilibili.com/video/BV1BVKMeZEYr 技术栈:Uniapp+Vue.js+SpringBoot+MySQL。 开发工具:Idea+VSCode+微信开发者工具。
基于SMIC 40nm工艺库的先进芯片技术,SMIC 40nm工艺库技术细节揭秘:引领半导体产业新革命,smic40nm工艺库 ,smic40nm; 工艺库; 芯片制造; 纳米技术,SMIC 40nm工艺库:领先技术驱动的集成电路设计基础
2013年上半年软件设计师上午题-真题及答案解析
shp格式,可直接导入arcgis使用
ROS下的移动机器人路径规划算法:基于强化学习算法DQN、DDPG、SAC及TD3的实践与应用,ROS系统中基于强化学习算法的移动机器人路径规划策略研究:应用DQN、DDPG、SAC及TD3算法,ROS下的移动机器人路径规划算法,使用的是 强化学习算法 DQN DDPG SAC TD3等 ,ROS; 移动机器人; 路径规划算法; DQN; DDPG; SAC; TD3,ROS强化学习移动机器人路径规划算法研究
粒子群优化算法精准辨识锂电池二阶RC模型参数:高仿真精度下的SOC估计铺垫,粒子群优化算法精准辨识锂电池二阶RC模型参数:仿真验证与SOC估计铺垫,使用粒子群优化算法(PSO)辨识锂电池二阶RC模型参数(附MATLAB代码) 使用粒子群优化算法来辨识锂离子电池二阶RC模型的参数。 将粒子群优化算法寻找到的最优参数代入二阶RC模型进行仿真,经过验证,端电压的估计误差小于0.1%,说明粒子群优化算法辨识得到的参数具有较高的精度,为锂离子电池SOC的估计做铺垫。 ,关键词:粒子群优化算法(PSO); 锂电池二阶RC模型参数辨识; MATLAB代码; 端电压估计误差; 锂离子电池SOC估计。,PSO算法优化锂电池二阶RC模型参数:高精度仿真与MATLAB代码实现
selenium环境搭建-谷歌浏览器驱动
在当今科技日新月异的时代,智慧社区的概念正悄然改变着我们的生活方式。它不仅仅是一个居住的空间,更是一个集成了先进科技、便捷服务与人文关怀的综合性生态系统。以下是对智慧社区整体解决方案的精炼融合,旨在展现其知识性、趣味性与吸引力。 一、智慧社区的科技魅力 智慧社区以智能化设备为核心,通过综合运用物联网、大数据、云计算等技术,实现了社区管理的智能化与高效化。门禁系统采用面部识别技术,让居民无需手动操作即可轻松进出;停车管理智能化,不仅提高了停车效率,还大大减少了找车位的烦恼。同时,安防报警系统能够实时监测家中安全状况,一旦有异常情况,立即联动物业进行处理。此外,智能家居系统更是将便捷性发挥到了极致,通过手机APP即可远程控制家中的灯光、窗帘、空调等设备,让居民随时随地享受舒适生活。 视频监控与可视对讲系统的结合,不仅提升了社区的安全系数,还让居民能够实时查看家中情况,与访客进行视频通话,大大增强了居住的安心感。而电子巡更、公共广播等系统的运用,则进一步保障了社区的治安稳定与信息传递的及时性。这些智能化设备的集成运用,不仅提高了社区的管理效率,更让居民感受到了科技带来的便捷与舒适。 二、智慧社区的增值服务与人文关怀 智慧社区不仅仅关注科技的运用,更注重为居民提供多元化的增值服务与人文关怀。社区内设有互动LED像素灯、顶层花园控制喷泉等创意设施,不仅美化了社区环境,还增强了居民的归属感与幸福感。同时,社区还提供了智能家居的可选追加项,如空气净化器、远程监控摄像机等,让居民能够根据自己的需求进行个性化选择。 智慧社区还充分利用大数据技术,对居民的行为数据进行收集与分析,为居民提供精准化的营销服务。无论是周边的商业信息推送,还是个性化的生活建议,都能让居民感受到社区的智慧与贴心。此外,社区还注重培养居民的环保意识与节能意识,通过智能照明、智能温控等系统的运用,鼓励居民节约资源、保护环境。 三、智慧社区的未来发展与无限可能 智慧社区的未来发展充满了无限可能。随着技术的不断进步与创新,智慧社区将朝着更加智能化、融合化的方向发展。比如,利用人工智能技术进行社区管理与服务,将能够进一步提升社区的智能化水平;而5G、物联网等新技术的运用,则将让智慧社区的连接更加紧密、服务更加高效。 同时,智慧社区还将更加注重居民的体验与需求,通过不断优化智能化设备的功能与服务,让居民享受到更加便捷、舒适的生活。未来,智慧社区将成为人们追求高品质生活的重要选择之一,它不仅是一个居住的空间,更是一个融合了科技、服务、人文关怀的综合性生态系统,让人们的生活更加美好、更加精彩。 综上所述,智慧社区整体解决方案以其科技魅力、增值服务与人文关怀以及未来发展潜力,正吸引着越来越多的关注与认可。它不仅能够提升社区的管理效率与居民的生活品质,更能够为社区的可持续发展注入新的活力与动力。
PowerSettingsExplorer.rar 电脑的电源管理软件,明白的不多说。自己搜索即可知道。
deepseek最新资讯,配置方法,使用技巧,持续更新中
deepseek最新资讯、配置方法、使用技巧,持续更新中
RabbitMQ 是一个开源的消息代理(Message Broker),实现了 AMQP(Advanced Message Queuing Protocol) 协议,用于在分布式系统中实现高效、可靠的消息传递。
西门子S7-1200与汇川PLC新通信选择:Ethernet IP通信的突破与优势,功能安全及精准同步的创新实践。,西门子S7-1200与汇川PLC通信新选择:Ethernet IP通信方案亮相,替代Modbus TCP实现更高级功能与安全控制。,西门子PLC和汇川PLC新通信选择-西门子S7-1200 1500系列PLC也开始支持Ethernet IP通信了。 这为西门子系列的PLC和包括汇川AM400 600等Codesys系PLC的通信提供了新的解决方案。 当前两者之间的通信大多采用ModBus TCP通信。 Modbus TCP和EtherNet IP的区别主要是应用层不相同,ModbusTCP的应用层采用Modbus协议,而EtherNetIP采用CIP协议,这两种工业以太网的数据链路层采用的是CSMACCD,因此是标准的以太网,另外,这两种工业以太网的网络层和传输层采用TCPIP协议族。 还有一个区别是,Modbus协议中迄今没有协议来完成功能安全、高精度同步和运功控制等,而EtherNet IP有CIPSatety、ClIP Sync和ClPMotion来
自适应无迹卡尔曼滤波AUKF算法:系统估计效果展示与特性分析(含MATLAB代码与Excel数据),自适应无迹卡尔曼滤波AUKF算法:系统估计效果展示与特性分析(含MATLAB代码与Excel数据),自适应无迹卡尔曼滤波AUKF算法 配套文件包含MATLAB代码+excel数据+学习资料 估计效果与系统特性有关,图片展示为一复杂系统估计效果 ,AUKF算法; MATLAB代码; excel数据; 学习资料; 估计效果; 系统特性。,自适应无迹卡尔曼滤波AUKF算法:MATLAB代码与学习资料
基于MATLAB Simscape的IGBT开关特性模型:揭示开关损耗、米勒平台及瞬态行为的分析工具,IGBT开关特性模型与MATLAB Simscape模拟:深入理解开关行为及损耗数据,IGBT开关特性模型,MATLAB Simscape模型。 该模型展示了IGBT的详细的开关模型,用于创建开关损耗列表数据。 有助于理解IGBT米勒平台、瞬态开关行为。 也可以用于MOOSFET。 ,IGBT开关模型; MATLAB Simscape; 开关损耗; 米勒平台; 瞬态开关行为; MOOSFET。,MATLAB Simscape中IGBT精细开关模型:揭示米勒平台与瞬态行为
基于卷积神经网络CNN的多输入单输出数据回归预测——含详细注释与多种评估指标(R2、MAE、MBE),基于卷积神经网络CNN的多输入单输出数据回归预测模型详解——附代码注释、指标评估及Excel数据处理方法,基于卷积神经网络CNN的数据回归预测 多输入单输出预测 代码含详细注释,不负责 数据存入Excel,替方便,指标计算有决定系数R2,平均绝对误差MAE,平均相对误差MBE ,基于卷积神经网络CNN; 数据回归预测; 多输入单输出; 详细注释; Excel存储; 指标计算(R2; MAE; MBE); 不负责。,基于CNN的卷积数据回归预测模型:多输入单输出代码详解与性能评估
2024免费微信小程序毕业设计成品,包括源码+数据库+往届论文资料,附带启动教程和安装包。 启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS 讲解视频:https://www.bilibili.com/video/BV1BVKMeZEYr 技术栈:Uniapp+Vue.js+SpringBoot+MySQL。 开发工具:Idea+VSCode+微信开发者工具。