]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_editor.xul
tweaks
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_editor.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Copy Viewer/Editor -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="cat_copy_editor_win" 
22         onload="try { my_init(); } catch(E) { alert(E); }"
23         width="800" height="500" sizemode="maximized" persist="width height"
24         title="Copies"
25         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
26
27         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28         <!-- BEHAVIOR -->
29         <script type="text/javascript">
30                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
31         </script>
32         <scripts id="openils_util_scripts"/>
33
34         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
35         <script type="text/javascript" src="copy_editor.js"/>
36
37         <iframe id="brief_display"/>
38
39         <groupbox flex="1" style="overflow: auto">
40                 <caption id="caption" label="Copy Viewer"/>
41
42                 <hbox id="input_placeholder"/>
43
44                 <hbox flex="1" style="overflow: scroll">
45                         <vbox flex="1">
46                                 <label value="Identification" style="font-weight: bold; font-size: large"/>
47                                 <vbox id="left_pane" flex="1"/>
48                         </vbox>
49                         <splitter><grippy /></splitter>
50                         <vbox flex="1">
51                                 <label value="Location" style="font-weight: bold; font-size: large"/>
52                                 <vbox id="right_pane" flex="1"/>
53                         </vbox>
54                         <splitter><grippy /></splitter>
55                         <vbox flex="1">
56                                 <label value="Circulation" style="font-weight: bold; font-size: large"/>
57                                 <vbox id="right_pane2" flex="1"/>
58                         </vbox>
59                         <splitter><grippy /></splitter>
60                         <vbox flex="1">
61                                 <label value="Miscellaneous" style="font-weight: bold; font-size: large"/>
62                                 <vbox id="right_pane3" flex="1"/>
63                         </vbox>
64                         <splitter><grippy /></splitter>
65                         <vbox flex="1">
66                                 <label value="Statistics" style="font-weight: bold; font-size: large"/>
67                                 <vbox id="right_pane4" flex="1"/>
68                         </vbox>
69                 </hbox>
70
71                 <hbox id="nav">
72                         <spacer flex="1"/>
73                         <button id="copy_notes" label="Copy Notes" accesskey="N" oncommand="g.copy_notes();"/>
74                         <button id="save" label="Modify" hidden="true" accesskey="M"
75                                 oncommand="g.stash_and_close();"/>
76                         <button id="cancel" label="Close" accesskey="C" 
77                                 oncommand="window.close();"/>
78                 </hbox>
79
80                 <spacer/>
81         </groupbox>
82
83 </window>
84