leslie.chapman at teradyne.com wrote:
> I have made a custom configuration of XMLMind to use the DocBook 4.4
> DTD, my own templates, and the standard XMLMind stylesheets.
> 
> I would like to know how to have my configuration include the toolbar
> buttons such as table, mediaobject, emphasis, and plain text which are
> present in the standard configuration.

* If you want to include the toolbar as is:
---
  <include location="xxe-config:docbook/toolBar.incl" />
---

* If you want to include it and add your own buttons to it:
---
  <include location="xxe-config:docbook/toolBar.incl" />

  <toolBar>
    <insert />
    <separator />
    <button toolTip="View Image in Xv" icon="mydocbook_icons/xv.gif">
      <command name="docb.startImageViewer" />
    </button>
    <button toolTip="View HTML in Mozilla"
            icon="mydocbook_icons/mozilla.gif">
      <command name="docb.startHTMLViewer" />
    </button>
    <button toolTip="Edit Document" icon="mydocbook_icons/edit.gif">
      <command name="docb.editDocument" />
    </button>
  </toolBar>
---
(The above snippet is an excerpt of
XXE_install_dir/doc/configure/samples2/mydocbook.xxe)

More info in
http://www.xmlmind.com/xmleditor/_distrib/doc/configure/ch06s24.html

Reply via email to