gecko-dev/suite/common/sidebar/sidebarOverlay.xul

159 строки
6.5 KiB
Plaintext
Исходник Обычный вид История

2006-07-27 18:50:55 +04:00
<?xml version="1.0"?> <!-- -*- Mode: HTML; indent-tabs-mode: nil -*- -->
1999-10-29 23:13:42 +04:00
<!--
1999-10-29 23:13:42 +04:00
The contents of this file are subject to the Netscape Public License
Version 1.1 (the "NPL"); you may not use this file except in
compliance with the NPL. You may obtain a copy of the NPL at
http://www.mozilla.org/NPL/
Software distributed under the NPL is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
for the specific language governing rights and limitations under the
NPL.
The Initial Developer of this code under the NPL is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1999 Netscape Communications Corporation. All Rights
Reserved.
-->
<?xml-stylesheet href="chrome://communicator/content/sidebar/sidebarOverlay.css" type="text/css"?>
1999-10-26 04:39:19 +04:00
2006-07-27 18:49:41 +04:00
<!DOCTYPE window SYSTEM "chrome://communicator/locale/sidebar/sidebarOverlay.dtd">
<overlay id="sidebarOverlay"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Overlay the sidebar panels -->
<box id="sidebar-box" orient="vertical" persist="hidden width collapsed">
<splitter id="sidebar-panels-splitter" collapse="after"
onmouseup="PersistHeight();" hidden="true">
<spring flex="1"/>
<grippy/>
<spring flex="1"/>
</splitter>
<box id="sidebar-panels-splitter-box" align="vertical" flex="1"
persist="hidden">
<sidebarheader id="sidebar-title-box" class="sidebarheader-main"
value="&sidebar.panels.label;" persist="hidden" type="box"
collapse="after" onmouseup="PersistHeight();">
<menubutton id="sidebar-panel-picker" menubuttontype="sidebar-panels" class="button-toolbar-4" crop="right"
oncreate="SidebarBuildPickerPopup();"
value="&sidebar.picker.label;" >
<menupopup id="sidebar-panel-picker-popup" popupanchor="topright"
datasources="rdf:null"
ref="urn:sidebar:current-panel-list">
<template>
<rule>
<conditions>
<content uri="?uri"/>
<triple subject="?uri"
predicate="http://home.netscape.com/NC-rdf#panel-list"
object="?panel-list"/>
<member container="?panel-list" child="?panel"/>
<triple subject="?panel"
predicate="http://home.netscape.com/NC-rdf#title"
object="?title" />
</conditions>
<bindings>
<binding subject="?panel"
predicate="http://home.netscape.com/NC-rdf#exclude"
object="?exclude"/>
</bindings>
<action>
<menuitem uri="?panel" type="checkbox"
oncommand="SidebarTogglePanel(event.target);"
value="?title" exclude="?exclude"/>
</action>
</rule>
</template>
<menuitem value="&sidebar.customize.label;"
oncommand="SidebarCustomize();" />
<menuseparator />
</menupopup>
</menubutton>
</sidebarheader>
<box id="sidebar-panels" align="vertical"
datasources="rdf:null"
ref="urn:sidebar:current-panel-list"
persist='last-selected-panel height collapsed hidden' flex="1*">
<template id="sidebar-template">
<rule>
<conditions>
<content uri="?uri"/>
<triple subject="?uri" object="?panel-list"
predicate="http://home.netscape.com/NC-rdf#panel-list" />
<member container="?panel-list" child="?panel"/>
<triple subject="?panel" object="?title"
predicate="http://home.netscape.com/NC-rdf#title" />
<triple subject="?panel" object="?content"
predicate="http://home.netscape.com/NC-rdf#content" />
</conditions>
<bindings>
<binding subject="?panel" object="?exclude"
predicate="http://home.netscape.com/NC-rdf#exclude" />
</bindings>
<action>
<box uri="?panel" class="box-texttab texttab-sidebar" align="left"
onclick="SidebarSelectPanel(this)" hidden="true"
value="?title" exclude="?exclude" />
<box uri="?panel" flex='1*' hidden="true" orient="vertical"
loadstate="never loaded">
<box flex='1' orient="vertical" class="iframe-panel loadarea">
<box orient="horizontal" flex="1" autostretch="never">
<image class="image-panel-loading"/>
<text class="text-panel-loading"
value="&sidebar.loading.label;"/>
<button value="&sidebar.loading.stop.label;" hidden="true"
onclick="SidebarStopPanelLoad(this.parentNode.parentNode.parentNode.previousSibling);"/>
</box>
<spring flex="100%"/>
</box>
<iframe class="iframe-panel" flex='1*' src="about:blank"
hidden="true" collapsed="true" content="?content" />
<iframe class="iframe-panel" flex='1*' src="about:blank"
hidden="true" collapsed="true" content="?content" type="content" />
2006-07-27 18:49:55 +04:00
</box>
</action>
</rule>
</template>
<box id="sidebar-iframe-no-panels" class="iframe-panel" orient="vertical" flex="1"
hidden="true">
<html>&sidebar.no-panels.state;</html>
<html>&sidebar.no-panels.add;</html>
<html>&sidebar.no-panels.hide;</html>
</box>
</box>
</box>
</box>
1999-10-26 04:39:19 +04:00
<!-- Splitter on the right of sidebar -->
<splitter id="sidebar-splitter" collapse="before" persist="state hidden"
class="chromeclass-extrachrome sidebar-splitter" autostretch="never"
orient="vertical"
onmouseup="SidebarFinishClick();">
<grippy class="sidebar-splitter-grippy"
onclick="SidebarExpandCollapse();"/>
1999-10-26 04:39:19 +04:00
</splitter>
<!-- View->Sidebar toggle -->
<menupopup id="menu_View_Popup">
<menuitem id="sidebar-menu" type="checkbox"
value="&sidebarCmd.label;"
accesskey="&sidebarCmd.accesskey;"
oncommand="SidebarShowHide('sidebar-title-box');"
position="2"/>
</menupopup>
<!-- Scripts go last, because they peek at state to tweak menus -->
2006-07-27 18:50:57 +04:00
<script language="JavaScript"
src="chrome://communicator/content/sidebar/sidebarOverlay.js"/>
</overlay>