/toolkit/content/widgets/optionsDialog.xml

http://github.com/zpao/v8monkey · XML · 39 lines · 32 code · 7 blank · 0 comment · 0 complexity · 16b5cbcb3ac4bf29b63ef14b0ba17b07 MD5 · raw file

  1. <?xml version="1.0"?>
  2. <bindings id="optionsDialogBindings"
  3. xmlns="http://www.mozilla.org/xbl"
  4. xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  5. <binding id="optionsDialog"
  6. extends="chrome://global/content/bindings/dialog.xml#dialog">
  7. <content>
  8. #ifndef XP_MACOSX
  9. <xul:hbox flex="1">
  10. <xul:categoryBox anonid="prefsCategories">
  11. <children/>
  12. </xul:categoryBox>
  13. <xul:vbox flex="1">
  14. <xul:dialogheader id="panelHeader"/>
  15. <xul:iframe anonid="panelFrame" name="panelFrame" style="width: 0px;" flex="1"/>
  16. </xul:vbox>
  17. </xul:hbox>
  18. #else
  19. <xul:vbox flex="1">
  20. <xul:categoryBox anonid="prefsCategories">
  21. <children/>
  22. </xul:categoryBox>
  23. <xul:vbox flex="1">
  24. <xul:iframe anonid="panelFrame" name="panelFrame" style="width: 0px;" flex="1"/>
  25. </xul:vbox>
  26. </xul:vbox>
  27. #endif
  28. </content>
  29. <implementation>
  30. </implementation>
  31. </binding>
  32. </bindings>