]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/admin/toolbar.xul
LP2045292 Color contrast for AngularJS patron bills
[Evergreen.git] / Open-ILS / xul / staff_client / server / admin / toolbar.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Example Template for remote xul -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="main_toolbar_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
23
24     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
25     <!-- BEHAVIOR -->
26     <script type="text/javascript">
27         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
28     </script>
29     <scripts id="openils_util_scripts"/>
30     <messagecatalog id="adminStrings" src='/xul/server/locale/<!--#echo var="locale"-->/admin.properties'/>
31
32     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
33     <script type="text/javascript" src="toolbar.js"/>
34
35     <vbox flex="1">
36
37         <hbox>
38             <spacer flex="1"/>
39             <button id="Delete"
40                 label="&staff.admin.toolbar.delete_toolbar.label;"
41                 accesskey="&staff.admin.toolbar.delete_toolbar.accesskey;"
42             />
43             <button id="New"
44                 label="&staff.admin.toolbar.new_toolbar.label;"
45                 accesskey="&staff.admin.toolbar.new_toolbar.accesskey;"
46             />
47         </hbox>
48         <tree id="atb_tree" flex="1" enableColumnDrag="true" seltype="single"/>
49         <hbox id="list_actions"/>
50         <splitter><grippy/></splitter>
51         <hbox flex="1">
52             <vbox flex="1">
53                 <label value="&staff.admin.toolbar.header.available;" />
54                 <tree id="left" flex="1" enableColumnDrag="true" />
55             </vbox>
56             <splitter/>
57             <vbox>
58                 <spacer flex="1"/>
59                 <button id="Remove"
60                     label="&staff.admin.toolbar.remove_toolbar_button.label;"
61                     accesskey="&staff.admin.toolbar.remove_toolbar_button.accesskey;"
62                 />
63                 <button id="Add"
64                     label="&staff.admin.toolbar.add_toolbar_button.label;"
65                     accesskey="&staff.admin.toolbar.add_toolbar_button.accesskey;"
66                 />
67                 <spacer flex="1"/>
68                 <button id="Up"
69                     label="&staff.admin.toolbar.move_toolbar_button_up.label;"
70                     accesskey="&staff.admin.toolbar.move_toolbar_button_up.accesskey;"
71                 />
72                 <button id="Down"
73                     label="&staff.admin.toolbar.move_toolbar_button_down.label;"
74                     accesskey="&staff.admin.toolbar.move_toolbar_button_down.accesskey;"
75                 />
76                 <spacer flex="1"/>
77             </vbox>
78             <splitter/>
79             <vbox flex="1">
80                 <label value="&staff.admin.toolbar.header.selected;" />
81                 <tree id="right" flex="1" enableColumnDrag="true" />
82             </vbox>
83         </hbox>
84         <hbox>
85             <label control="context"
86                 value="&staff.admin.toolbar.permission_context.label;"
87                 accesskey="&staff.admin.toolbar.permission_context.accesskey;"
88             />
89             <hbox id="lib_menu_placeholder" />
90             <radiogroup id="context" orient="horizontal">
91                 <radio id="context_org" />
92                 <radio id="context_ws" />
93                 <radio id="context_usr" />
94             </radiogroup>
95             <spacer flex="1"/>
96             <button id="Cancel" disabled="true"
97                 label="&staff.admin.toolbar.cancel_changes.label;"
98                 accesskey="&staff.admin.toolbar.cancel_changes.accesskey;"
99             />
100             <button id="Save" disabled="true"
101                 label="&staff.admin.toolbar.save_toolbar.label;"
102                 accesskey="&staff.admin.toolbar.save_toolbar.accesskey;"
103             />
104         </hbox>
105
106     </vbox>
107
108 </window>
109