前文中 http://winseclone.iteye.com/blog/1774307 介绍了使用Properties的方法。但是TableTree 形式的Properties视图,局限性比较大,不能很好的发挥。如下操作在Properties就很难实现:
-
调整属性,重要的常用的属性放置在前!
- 在属性上添加其他操作,如在Class对象上通过ctrl+<单击>能跳转到对应的class类,并用编辑器打开。
Tabbed Properties效果
Tabbed Properties与表格式Properties不同,采用的是通过表单形式来编辑属性。如下图所示:
图中主要分3部分:
1、最外面层是Contributor,由Label + TabContainer;
2、中间层是TabContainer,可以包括n个Tab,每个Tab则是一个SectionContainer;
3、内层是SectionContainer, 由n个Section组成。
每个层可以使用一个扩展点来实现。对应Tabbed提供的3个扩展点:
-
org.eclipse.ui.views.properties.tabbed.propertyContributor
-
org.eclipse.ui.views.properties.tabbed.propertyTabs
-
org.eclipse.ui.views.properties.tabbed.propertySections
这里,我们先按照步骤一步步的实现效果,然后再讲解3个扩展点常用的属性。
实现Tabbed Properties View
· 更新SampleView.java
1、实现ITabbedPropertySheetPageContributor接口
public String getContributorId() {
return SampleView.ID;
}
2 重写SampleView的getAdapter方法。修改默认的IPropertySheetPage.class适配对象
public Object getAdapter(Class adapter) {
if (adapter == IPropertySheetPage.class) {
return new TabbedPropertySheetPage(this);
}
return super.getAdapter(adapter);
}
· 实现ISection,定义控件以及布局
实现自定义的IFilter和Section
StringFilter
· 扩展点实现
添加tabbed的3个扩展点。
contributorId填写为对应SampleView的Id(即SampleView.ID的值)。具体Contributor,Tab,Section的属性配置按照层次关系填写即可。
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
<propertyContributor
contributorId="plugin.properties.views.SampleView"
labelProvider="org.eclipse.jface.viewers.LabelProvider">
<propertyCategory
category="Sample"></propertyCategory>
<propertyCategory
category="AdvancedCategory"></propertyCategory>
</propertyContributor>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
<propertyTabs
contributorId="plugin.properties.views.SampleView">
<propertyTab
category="AdvancedCategory"
id="plugin.properties.advancedTab"
label="Advanced">
</propertyTab>
<propertyTab
category="Sample"
id="plugin.properties.sampleTab"
label="Sample">
</propertyTab>
</propertyTabs>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections
contributorId="plugin.properties.views.SampleView">
<propertySection
class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
id="plugin.properties.advanceSection"
tab="plugin.properties.advancedTab">
<input
type="plugin.properties.views.StringWrapper">
</input>
</propertySection>
<propertySection
class="plugin.properties.section.StringTypeSection"
filter="plugin.properties.section.StringFilter"
id="plugin.properties.sampleSection"
tab="plugin.properties.sampleTab">
</propertySection>
</propertySections>
</extension>
另外,编写Tabbed Properties页签视图需要懂swt,以及FormLayout布局。
对于一个属性显示一行的TabbedProperties可以通过topcased插件来生成。这个插件还是不错的。但是如果复杂一点的就需要自己定义了。
扩展点含义
下面主要讲一下3个扩展点的常用属性,及其子节点
1、 org.eclipse.ui.views.properties.tabbed.propertyContributor
#propertyContributor节点的属性
-
contributorId Tabbed PropertySheetPage贡献者的ID,即选中元素所在View或Editor的ID。 同时View和Editor也需要实现ITabbedPropertySheetPageContributor 接口,这个接口只有一个方法,要求返回的值即该contributorId。
-
typeMapper - 实现类型的映射。TabbedPropertyRegistryClassSectionFilter.appliesToSelection(ISectionDescriptor, ISelection) 起到mappingFilter的作用。因为我们选择的元素并不一定是实现IPropertySource的元素(即能够给property view提供内容的元素),比如在GEF中,我们选择的finger实际上是选择了对应的EditPart,而实际上实现了IPropertySource一般的是model部分的元素,所以这时候我们要将Editpart映射到对应的model元素[r3]
-
labelProvider - 标题显示提供者Provider(ILabelProvider)
-
actionProvider - 没啥用。TabbedPropertySheetPage.validateRegistry(ISelection)中会调用registry.getActionProvider(),但在中间就返回了。
-
sectionDescriptorProvider - (应该是类似于propertySections扩展点的作用)
-
tabDescriptorProvider - (应该是类似于propertyTabs扩展点的作用)
通过Extensions标签页扩展点的“Show extension point description”查看该扩展点的详细描述。
#propertyContributor#propertyCategory属性
用于聚合多个tabs,将会在propertyTab标签中用到;
注意至少要定义一个category,来聚合tabs,否则,可能会显示property失败。
2、org.eclipse.ui.views.properties.tabbed.propertyTabs
#propertyTabs#propertyTab节点的属性
-
label - Tab显示的名称.
-
category - 对应上面的propertyCategory属性的category的值.
-
id - The unique id for the tab,将会用于propertySection标签。
3、org.eclipse.ui.views.properties.tabbed.propertySections
#propertySections#propertySection属性
-
tab - 该section需要放置到Tab,对应propertyTab扩展点的id属性值.
-
id - 表示该section的唯一ID.
-
class - section的实现类,用于描述这个section的控件和布局。
-
filter - 对象过滤,只有通过该filter的对象才会显示该section
如果没有选择fitler,则需要添加input子节点!
源码:
s1: 本文实现的例子
https://github.com/winse/hello/tree/8c8ae8a1a83c7cfe27287631e5b575d50f17d75c
s2: topcased相关源码
http://subversion.moskitt.org/gvcase-adaptations/topcased/branches/org.topcased.modeler/src/org/topcased/modeler/editor/properties/filters/DiagramElementFilter.java
http://gforge.enseeiht.fr/scm/viewvc.php/plugins/modeler/org.topcased.tabbedproperties/src/org/topcased/tabbedproperties/sections/?diff_format=s&root=topcased-mf
http://gforge.enseeiht.fr/scm/viewvc.php/*checkout*/plugins/modeler/org.topcased.modeler/plugin.xml?revision=1.127&root=topcased-mf
参考:
r1:最权威的tabbed_properties的使用说明
http://www.eclipse.org/articles/Article-Tabbed-Properties/tabbed_properties_view.html
r2:一个通用的页签式视图框架(可以了解一下,使用的不是Eclipse提供的扩展点)
http://www.ibm.com/developerworks/cn/opensource/os-cn-eclipse-tabview/index.html
r3:Eclipse Tabbed Properties View
http://hi.baidu.com/uvfluhpkkjfglor/item/5526fd459565ec14886d1071
- 大小: 7.1 KB
- 大小: 9.7 KB
- 大小: 43.7 KB
分享到:
相关推荐
1基于蓝牙的项目开发--蓝牙温度监测器.docx
AppDynamics:性能瓶颈识别与优化
xtrabackup银河麒麟v10rpm安装包
2024年全球产品经理大会(脱敏)PPT合集,共34份。 1、AI 原生产品设计的 7 个反共识 2、AI 时代的策略产品与内容社区推荐实践 3、AI时代的用户界面设计 4、AI智能陪练:大模型赋能销售成长 5、AI浪潮中的应用主义者 6、AI驱动下的B端产品的思考与创新 7、AI驱动业务增长的探索与实践 8、Al Native 生产力工具的发展、价值与商业落地 9、B端产品设计避坑指南 10、GenAl驱动的xGen电商AI平台产品实践与思考 11、Kwaipilot 在快手的落地实践 12、OPPO AI的探索新交互到新生态 13、RPA + AI打造大模型驱动的领先数字员工 14、产品AI化重塑的思考与实践 15、产品分析:通过关键指标助力团队与企业成功 16、从RPA到Al Agent,高价值、可落地的智能助手 17、从流量运营到AI驱动的机器增长 18、做穿越时代的产品 19、创造好工具,创造世界一流产品力 20、医疗健康场景的大模型产品探索 21、即时零售柔性供应链体系建设与AIGC在零售数字化的探索 22、向量数据库的出海实践与未来展望 23、大模型在B端落地思考实践
基于物联网技术的停车场智能管理系统设计用户有单独APP
Adobe XD:AdobeXD高级技巧与最佳实践.docx
ARKit(iOS的增强现实):ARKit的多人AR场景实现
1python自动化脚本.docx
河北省、市、区县及街镇可编辑SVG图
金融工程之量化交易算法:均值回归:时间序列分析与预测.docx
技术资料分享ADV7123非常好的技术资料.zip
Sawmill_cn.ppt
使用LabVIEW输入数字n,然后计算n的阶乘
1无人值守灌溉系统--stm.docx
金融工程之量化交易算法:动量交易:金融数据获取与处理.docx
基于SSM的毕业设计源码
头像图片调试使用用来调试
GITS_sawmill8.5.8.1_x64_linux-ubuntu11.tar.gz
Newspaper 是一个专为新闻、杂志和内容丰富网站设计的 WordPress 主题。它非常适合博客、在线出版和内容展示,具备多种强大功能。以下是 Newspaper 的主要特点: 响应式设计:确保网站在各种设备上(手机、平板、桌面)都能良好显示,优化用户体验。 丰富的预建模板:提供多个专业设计的预建布局和页面模板,用户可以快速导入并根据需求进行修改。 强大的页面构建器:内置的 TagDiv Composer 允许用户通过拖放功能轻松创建和自定义页面,无需编写代码。 SEO 优化:主题经过优化,有助于提升网站在搜索引擎中的排名,增加流量。 多种内容展示选项:提供多种文章格式和布局选项,如网格、列表、视频和画廊,方便展示不同类型的内容。 社交媒体集成:支持社交媒体分享功能,帮助用户轻松与观众互动并提高网站的曝光度。 实时自定义:支持实时预览功能,用户可以在更改设置时即时查看效果。 持续更新和支持:定期更新主题,确保用户获得最新功能和安全性,同时提供专业的技术支持。
国内市场:功能化脂质市场现状研究分析与发展前景预测报告(2024版).docx