About dialog (extension point)
From BioUML platform
- Identifier
- ru.biosoft.workbench.aboutDialog
- Plugin
- ru.biosoft.workbench
- Applicable for
- BioUML workbench
Description
Configures BioUML workbench about dialog. The id of extension for main about dialog of BioUML must be "aboutDialog".
Configuration Markup
<!ELEMENT size>
<!ATTLIST size
width CDATA #REQUIRED
height CDATA #REQUIRED
>
- width
- width of about dialog in pixels.
- height
- height of about dialog in pixels.
<!ELEMENT tab>
<!ATTLIST tab
name CDATA #REQUIRED
html CDATA
img CDATA
>
- name
- name of tab in the about dialog
- html
- path to HTML page representing the tab relative to plugin root
- img
- path to the image relative to plugin root
Note: Exactly one of html and img attributes must be present.
Example
The following is an example of a BioUML about dialog configuration:
<extension id="aboutDialog" point="ru.biosoft.workbench.aboutDialog">
<size width="400" height="200"/>
<tab name="Info" img="biouml/workbench/resources/AboutLogo.png"/>
<tab name="Web Pages" html="biouml/workbench/resources/about_web_pages.html"/>
<tab name="Contacts" html="biouml/workbench/resources/about_contacts.html"/>
<tab name="Notes" html="biouml/workbench/resources/about_notes.html"/>
</extension>