2015-10-22 00:05:29 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<extension
|
|
|
|
id="product"
|
|
|
|
point="org.eclipse.core.runtime.products">
|
|
|
|
<product
|
|
|
|
application="org.eclipse.e4.ui.workbench.swt.E4Application"
|
2015-10-27 23:39:33 +01:00
|
|
|
description="%product.description"
|
2018-07-16 13:17:43 +02:00
|
|
|
name="SCViewer">
|
2015-10-22 00:05:29 +02:00
|
|
|
<property
|
|
|
|
name="lifeCycleURI"
|
|
|
|
value="bundleclass://com.minres.scviewer.e4.application/com.minres.scviewer.e4.application.E4LifeCycle">
|
|
|
|
</property>
|
|
|
|
<property
|
|
|
|
name="appName"
|
|
|
|
value="SCViewer">
|
|
|
|
</property>
|
2015-11-13 18:58:14 +01:00
|
|
|
<property
|
|
|
|
name="applicationCSS"
|
|
|
|
value="platform:/plugin/com.minres.scviewer.e4.application/css/default.css">
|
|
|
|
</property>
|
2015-10-22 00:05:29 +02:00
|
|
|
</product>
|
|
|
|
</extension>
|
2020-07-26 14:41:36 +02:00
|
|
|
<extension
|
|
|
|
id="product_slim"
|
|
|
|
point="org.eclipse.core.runtime.products">
|
|
|
|
<product
|
|
|
|
application="org.eclipse.e4.ui.workbench.swt.E4Application"
|
|
|
|
description="%product.description"
|
|
|
|
name="SCViewer">
|
|
|
|
<property
|
|
|
|
name="lifeCycleURI"
|
|
|
|
value="bundleclass://com.minres.scviewer.e4.application/com.minres.scviewer.e4.application.E4LifeCycle">
|
|
|
|
</property>
|
|
|
|
<property
|
|
|
|
name="appName"
|
|
|
|
value="SCViewer">
|
|
|
|
</property>
|
|
|
|
<property
|
|
|
|
name="applicationCSS"
|
|
|
|
value="platform:/plugin/com.minres.scviewer.e4.application/css/default.css">
|
|
|
|
</property>
|
|
|
|
</product>
|
|
|
|
</extension>
|
2015-10-27 23:39:33 +01:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.core.expressions.definitions">
|
|
|
|
<definition
|
|
|
|
id="com.minres.scviewer.e4.application.oneWaveSeleted">
|
|
|
|
<with
|
|
|
|
variable="selection">
|
|
|
|
<and>
|
|
|
|
<count
|
|
|
|
value="1">
|
|
|
|
</count>
|
|
|
|
<iterate
|
|
|
|
operator="or">
|
|
|
|
<instanceof value="com.minres.scviewer.database.IWaveform"/>
|
|
|
|
</iterate>
|
|
|
|
</and>
|
|
|
|
</with>
|
|
|
|
</definition>
|
|
|
|
<definition
|
|
|
|
id="com.minres.scviewer.e4.application.oneTxSeleted">
|
|
|
|
<with
|
|
|
|
variable="selection">
|
|
|
|
<and>
|
|
|
|
<count
|
|
|
|
value="1">
|
|
|
|
</count>
|
|
|
|
<iterate
|
|
|
|
operator="or">
|
|
|
|
<instanceof value="com.minres.scviewer.database.ITx"/>
|
|
|
|
</iterate>
|
|
|
|
</and>
|
|
|
|
</with>
|
|
|
|
</definition>
|
|
|
|
<definition
|
|
|
|
id="com.minres.scviewer.e4.application.waveformViewerActive">
|
|
|
|
<with
|
|
|
|
variable="activeEditorId">
|
|
|
|
<equals
|
|
|
|
value="com.minres.scviewer.e4.application.partdescriptor.waveformviewer">
|
|
|
|
</equals>
|
|
|
|
</with>
|
|
|
|
</definition>
|
|
|
|
</extension>
|
2015-11-12 23:35:13 +01:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.core.runtime.preferences">
|
|
|
|
<initializer
|
|
|
|
class="com.minres.scviewer.e4.application.preferences.DefaultValuesInitializer">
|
|
|
|
</initializer>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
point="com.opcoach.e4.preferences.e4PreferencePages">
|
|
|
|
<page
|
|
|
|
class="com.minres.scviewer.e4.application.preferences.SCViewerPreferencesPage"
|
|
|
|
id="com.minres.scviewer.e4.application.preferences.scviewer"
|
|
|
|
name="SCViewer Page">
|
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
class="com.minres.scviewer.e4.application.preferences.WaveformPreferencesPage"
|
|
|
|
id="com.minres.scviewer.e4.application.preferences.waveform"
|
|
|
|
name="Waveform view"
|
|
|
|
category="com.minres.scviewer.e4.application.preferences.scviewer">
|
|
|
|
</page>
|
|
|
|
</extension>
|
2015-10-22 00:05:29 +02:00
|
|
|
|
|
|
|
</plugin>
|