SCViewer/com.minres.scviewer.ui/plugin.xml

112 lines
4.1 KiB
XML
Raw Normal View History

2015-01-01 23:17:32 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<category
name="TxViewer"
id="com.minres.scviewer.ui">
2015-01-01 23:17:32 +01:00
</category>
</extension>
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml">
</contexts>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="com.minres.scviewer.ui.TxEditorPart"
contributorClass="com.minres.scviewer.ui.TxEditorActionBarContributor"
2015-01-01 23:17:32 +01:00
extensions="txdb"
2015-01-06 17:14:16 +01:00
filenames="*.txdb,*.txlog,*.vcd"
icon="res/images/scviewer.png"
id="com.minres.scviewer.ui.TxEditorPart"
2015-01-01 23:17:32 +01:00
name="Wave Viewer">
</editor>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
<propertyContributor
contributorId="com.minres.scviewer.ui.TxEditorPart">
2015-01-01 23:17:32 +01:00
<propertyCategory
category="Transaction"></propertyCategory>
</propertyContributor>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
<propertyTabs
contributorId="com.minres.scviewer.ui.TxEditorPart">
2015-01-01 23:17:32 +01:00
<propertyTab
category="Transaction"
id="com.minres.scviewer.ui.propertyTabTransaction"
2015-01-01 23:17:32 +01:00
label="Transaction">
</propertyTab>
<propertyTab
afterTab="com.minres.scviewer.ui.propertyTabTransaction"
2015-01-01 23:17:32 +01:00
category="Transaction"
id="com.minres.scviewer.ui.propertyTabAttributes"
2015-01-01 23:17:32 +01:00
label="Attributes">
</propertyTab>
<propertyTab
afterTab="com.minres.scviewer.ui.propertyTabAttributes"
2015-01-01 23:17:32 +01:00
category="Transaction"
id="com.minres.scviewer.ui.propertyTabRelated"
2015-01-01 23:17:32 +01:00
label="Related Tx">
</propertyTab>
</propertyTabs>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections
contributorId="com.minres.scviewer.ui.TxEditorPart">
2015-01-01 23:17:32 +01:00
<propertySection
class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
id="com.minres.scviewer.ui.propertySectionAll"
tab="com.minres.scviewer.ui.propertyTabTransaction">
2015-01-01 23:17:32 +01:00
<input
type="com.minres.scviewer.database.ITransaction">
2015-01-01 23:17:32 +01:00
</input>
</propertySection>
<propertySection
afterSection="com.minres.scviewer.ui.propertySectionAll"
class="com.minres.scviewer.ui.views.sections.AttributeProperty"
id="com.minres.scviewer.ui.propertySectionAttributes"
tab="com.minres.scviewer.ui.propertyTabAttributes">
2015-01-01 23:17:32 +01:00
<input
type="com.minres.scviewer.database.ITransaction">
2015-01-01 23:17:32 +01:00
</input>
</propertySection>
<propertySection
afterSection="com.minres.scviewer.ui.propertySectionAttributes"
class="com.minres.scviewer.ui.views.sections.RelatedProperty"
id="com.minres.scviewer.ui.propertySectionRelated"
tab="com.minres.scviewer.ui.propertyTabRelated">
2015-01-01 23:17:32 +01:00
<input
type="com.minres.scviewer.database.ITransaction">
2015-01-01 23:17:32 +01:00
</input>
</propertySection>
</propertySections>
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory
adaptableType="com.minres.scviewer.database.ITransaction"
class="com.minres.scviewer.ui.adapter.AdapterFactory">
2015-01-01 23:17:32 +01:00
<adapter
type="org.eclipse.ui.views.properties.IPropertySource">
</adapter>
</factory>
</extension>
<extension
point="org.eclipse.ui.elementFactories">
<factory
class="com.minres.scviewer.ui.TxEditorInputFactory"
id="com.minres.scviewer.ui.TxEditorInputFactory">
2015-01-01 23:17:32 +01:00
</factory>
</extension>
</plugin>