]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/holds_overlay.xul
some context menus and tweaks, and some suggestive actions that need to do stuff
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / holds_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay PUBLIC "" ""[
3         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
4 ]>
5 <overlay id="holds_overlay" 
6         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
7
8 <script>dump('loading holds_overlay.xul\n');</script>
9
10 <commandset id="holds_cmds" />
11
12 <popupset id="holds_popupset">
13         <popup id="holds_actions" position="at_pointer"> 
14                 <menuitem label="Show in Catalog" command="cmd_show_catalog" />
15                 <menuitem label="Edit Pickup Library" command="cmd_holds_edit_pickup_lib" />
16                 <menuitem label="Edit Phone Notification" command="cmd_holds_edit_phone_notify" />
17                 <menuitem label="Toggle Email Notification" command="cmd_holds_edit_email_notify" />
18                 <menuitem label="Edit Selection Depth (Hold Range)" command="cmd_holds_edit_selection_depth" />
19                 <menuitem label="Edit Selection Focus (Hold Range from a Specific Library)" command="cmd_holds_edit_selection_focus" />
20                 <menuitem label="Find Another Target" command="cmd_holds_retarget"/>
21                 <menuitem label="Cancel Hold" command="cmd_holds_cancel" />
22         </popup>
23 </popupset>
24
25
26 <box id="holds_main" flex="1" orient="vertical" class="my_overflow">
27         <vbox id="cmvb1" flex="1"/>
28 </box>
29
30 <vbox id="cmvb1" flex="1">
31         <groupbox id="cmgb1" flex="1" orient="vertical">
32                 <caption label="&staff.patron_navbar.holds;" />
33                 <vbox flex="0">
34                         <hbox id="holds_top_ui" />
35                 </vbox>
36                 <tree id="holds_list" flex="1" enableColumnDrag="true" context="holds_actions"/>
37                 <vbox flex="0">
38                         <hbox id="holds_bottom_ui" />
39                 </vbox>
40         </groupbox>
41 </vbox>
42
43 <hbox id="holds_top_ui" flex="1">
44         <spacer flex="1"/>
45         <menubar>
46                 <menu label="Actions for Selected Holds" accesskey="S">
47                         <menupopup>
48                                 <menuitem label="Show in Catalog" command="cmd_show_catalog" />
49                                 <menuitem label="Edit Pickup Library" command="cmd_holds_edit_pickup_lib" />
50                                 <menuitem label="Edit Phone Notification" command="cmd_holds_edit_phone_notify" />
51                                 <menuitem label="Toggle Email Notification" command="cmd_holds_edit_email_notify" />
52                                 <menuitem label="Edit Selection Depth (Hold Range)" command="cmd_holds_edit_selection_depth" />
53                                 <menuitem label="Edit Selection Focus (Hold Range from a Specific Library)" command="cmd_holds_edit_selection_focus" />
54                                 <menuitem label="Find Another Target" command="cmd_holds_retarget"/>
55                                 <menuitem label="Cancel Hold" command="cmd_holds_cancel" />
56                         </menupopup>
57                 </menu>
58         </menubar>
59 </hbox>
60
61 <hbox id="holds_bottom_ui" flex="1">
62         <spacer flex="1"/>
63         <button id="holds_print" label="Print" command="cmd_holds_print" accesskey="P" />
64 </hbox>
65
66 </overlay>