]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/main/menu_frame_overlay.xul
move the browser progress meter next to the network progress meter and provide a...
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / main / menu_frame_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
3 <?xul-overlay href="chrome://open_ils_staff_client/content/main/menu_frame_menus.xul"?>
4 <!--
5 <?xul-overlay href="/xul/server/main/menu_frame_menus.xul"?>
6 -->
7 <overlay id="menu_frame_overlay" 
8     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
9
10 <script>dump('loading menu_frame_overlay.xul\n');</script>
11
12 <commandset id="universal_cmds" />
13 <keyset id="menu_frame_keys" />
14
15 <!-- The top level widget for the staff client -->
16 <box id="menu_frame_main" flex="1" orient="vertical">
17     <toolbox id="main_toolbox"/>
18     <tabbox id="main_tabbox" flex="1" eventnode="window" handleCtrlTab="true">
19         <tabs id="main_tabs" closebutton="true" onclosetab="g.menu.close_tab()">
20             <tab id="tab_1" accesskey="&staff.chrome.menu_frame_overlay.tab1.accesskey;" label="&staff.chrome.menu_frame_overlay.tab1.label;" hidden="true" />
21             <tab id="tab_2" accesskey="&staff.chrome.menu_frame_overlay.tab2.accesskey;" label="&staff.chrome.menu_frame_overlay.tab2.label;" hidden="true" />
22             <tab id="tab_3" accesskey="&staff.chrome.menu_frame_overlay.tab3.accesskey;" label="&staff.chrome.menu_frame_overlay.tab3.label;" hidden="true" />
23             <tab id="tab_4" accesskey="&staff.chrome.menu_frame_overlay.tab4.accesskey;" label="&staff.chrome.menu_frame_overlay.tab4.label;" hidden="true" />
24             <tab id="tab_5" accesskey="&staff.chrome.menu_frame_overlay.tab5.accesskey;" label="&staff.chrome.menu_frame_overlay.tab5.label;" hidden="true" />
25             <tab id="tab_6" accesskey="&staff.chrome.menu_frame_overlay.tab6.accesskey;" label="&staff.chrome.menu_frame_overlay.tab6.label;" hidden="true" />
26             <tab id="tab_7" accesskey="&staff.chrome.menu_frame_overlay.tab7.accesskey;" label="&staff.chrome.menu_frame_overlay.tab7.label;" hidden="true" />
27             <tab id="tab_8" accesskey="&staff.chrome.menu_frame_overlay.tab8.accesskey;" label="&staff.chrome.menu_frame_overlay.tab8.label;" hidden="true" />
28             <tab id="tab_9" accesskey="&staff.chrome.menu_frame_overlay.tab9.accesskey;" label="&staff.chrome.menu_frame_overlay.tab9.label;" hidden="true" />
29         </tabs>
30         <tabpanels id="main_panels" flex="1">
31             <tabpanel id="panel_1"><label value="panel_1"/></tabpanel>
32             <tabpanel id="panel_2"><label value="panel_2"/></tabpanel>
33             <tabpanel id="panel_3"><label value="panel_3"/></tabpanel>
34             <tabpanel id="panel_4"><label value="panel_4"/></tabpanel>
35             <tabpanel id="panel_5"><label value="panel_5"/></tabpanel>
36             <tabpanel id="panel_6"><label value="panel_6"/></tabpanel>
37             <tabpanel id="panel_7"><label value="panel_7"/></tabpanel>
38             <tabpanel id="panel_8"><label value="panel_8"/></tabpanel>
39             <tabpanel id="panel_9"><label value="panel_9"/></tabpanel>
40         </tabpanels>
41     </tabbox>
42     <statusbar>
43         <statusbarpanel />
44         <statusbarpanel id="statusbarpanel1"/>
45         <statusbarpanel id="statusbarpanel2"/>
46         <statusbarpanel id="statusbarpanel3"/>
47         <statusbarpanel id="statusbarpanel4"/>
48         <statusbarpanel id="statusbarpanel5"/>
49         <spacer flex="1" />
50         <progressmeter id="network_progress" flex="0" mode="determined" value="0" tooltip="network_progress_tip"/>
51         <progressmeter id="page_progress" flex="0" mode="determined" value="0" />
52         <statusbarpanel />
53     </statusbar>
54     <tooltip id="network_progress_tip" noautohide="true">
55         <grid>
56             <columns>
57                 <column/>
58                 <column/>
59                 <column/>
60                 <column flex="1"/>
61                 <column/>
62                 <column/>
63                 <column/>
64                 <column/>
65             </columns>
66             <rows id="network_progress_rows">
67             </rows>
68         </grid>
69     </tooltip>
70 </box>
71
72 <!-- The main top level menubar -->
73 <toolbox id="main_toolbox">
74     <menubar id="main_menubar">
75         <menu id="main.menu.file" />
76         <menu id="main.menu.edit" />
77         <menu id="main.menu.search" />
78         <menu id="main.menu.circ" />
79         <menu id="main.menu.cat" />
80         <menu id="main.menu.acq" />
81         <menu id="main.menu.booking" />
82         <spacer flex="1" />
83         <menu id="main.menu.admin" />
84         <!--
85         <menu id="main.menu.help" />
86         -->
87     </menubar>
88     <toolbar id="main_toolbar" hidden="true">
89         <toolbarbutton id="tb_checkout" 
90             command="cmd_circ_checkout" 
91             image="chrome://open_ils_staff_client/skin/media/images/Arrow-rightup-small.png" 
92             label="&staff.main.button_bar.check_out.label;" 
93             accesskey="&staff.main.button_bar.check_out.accesskey;" />
94         <toolbarbutton id="tb_checkin" 
95             command="cmd_circ_checkin" 
96             image="chrome://open_ils_staff_client/skin/media/images/center.png" 
97             label="&staff.main.button_bar.check_in.label;" 
98             accesskey="&staff.main.button_bar.check_in.accesskey;" />
99         <toolbarbutton id="tb_item_status" 
100             command="cmd_copy_status" 
101             image="chrome://open_ils_staff_client/skin/media/images/HILLBLU_libro_32x32.png" 
102             label="&staff.main.button_bar.item_status.label;" 
103             accesskey="&staff.main.button_bar.item_status.accesskey;" />
104         <toolbarseparator />
105         <toolbarbutton id="tb_patron_search" 
106             command="cmd_patron_search" 
107             image="chrome://open_ils_staff_client/skin/media/images/HILLBLU_lente_32x32.png" 
108             label="&staff.main.button_bar.patron_search.label;" 
109             accesskey="&staff.main.button_bar.patron_search.accesskey;" />
110         <toolbarbutton id="tb_patron_registration" 
111             command="cmd_patron_register" 
112             image="chrome://open_ils_staff_client/skin/media/images/HILLBLU_famiglia_32x32.png" 
113             label="&staff.main.button_bar.patron_registration.label;" 
114             accesskey="&staff.main.button_bar.patron_registration.accesskey;" />
115     </toolbar>
116 </toolbox>
117
118 </overlay>