Difference between revisions of "About dialog (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (From Help&Manual) |
Latest revision as of 15:02, 17 June 2013
- Identifier
- ru.biosoft.workbench.aboutDialog
- Plugin
- ru.biosoft.workbench
- Applicable for
- BioUML workbench
[edit] Description
Configures BioUML workbench about dialog. The id of extension for main about dialog of BioUML must be "aboutDialog".
[edit] 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.
[edit] 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>