]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_editor.xul
lp1183525 Edit Item Attributes pop-up dimensions
[working/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="/xul/server/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/cat.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14     <!--#include virtual="/opac/locale/${locale}/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(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
23     title="&staff.cat.copy_editor.window.label;"
24     sizemode="maximized"
25     oils_persist="height width sizemode"
26     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
27
28     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
29     <!-- BEHAVIOR -->
30         <script type="text/javascript">
31         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
32     </script>
33         <scripts id="openils_util_scripts"/>
34
35     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
36     <script type="text/javascript" src="copy_editor.js"/>
37
38     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
39
40     <vbox id="brief_display_box"/>
41
42     <groupbox flex="1" class="my_overflow">
43         <caption id="caption" label="&staff.cat.copy_editor.groupbox1.label;"/>
44
45         <hbox id="top_nav">
46             <hbox id="template_bar" style="background: grey" flex="1">
47                 <vbox><spacer flex="1"/><label value="&staff.cat.copy_editor.templates.label;" style="font-weight: bold"/><spacer flex="1"/></vbox>
48                 <hbox id="template_placeholder"/>
49                 <button id="apply_template" label="&staff.cat.copy_editor.templates.apply_template.label;" accesskey="&staff.cat.copy_editor.templates.apply_template.accesskey;" oncommand="g.apply_template()"/>
50                 <button id="delete_template" label="&staff.cat.copy_editor.templates.delete_template.label;" oncommand="g.delete_template()"/>
51                 <button id="import_templates" label="&staff.cat.copy_editor.templates.import_template.label;" oncommand="g.import_templates()"/>
52                 <button id="export_templates" label="&staff.cat.copy_editor.templates.export_template.label;" oncommand="g.export_templates()"/>
53                 <button id="save_template" label="&staff.cat.copy_editor.templates.save_template.label;" oncommand="g.save_template()"/>
54                 <spacer flex="1"/>
55                 <button label="&staff.cat.copy_editor.templates.reset.label;" accesskey="&staff.cat.copy_editor.templates.reset.accesskey;" oncommand="g.reset()"/>
56             </hbox>
57         </hbox>
58
59         <hbox flex="1" style="overflow: scroll">
60             <vbox flex="1" id="before_splitter1" oils_persist="width">
61                 <label value="&staff.cat.copy_editor.identification.label;" style="font-weight: bold; font-size: large"/>
62                 <vbox id="left_pane" flex="1"/>
63             </vbox>
64             <splitter id="splitter1" oils_persist="state hidden" oils_persist_peers="before_splitter1 after_splitter1"><grippy /></splitter>
65             <vbox flex="1" id="after_splitter1" oils_persist="width">
66                 <button style="font-weight: bold; font-size: normal" label="&staff.cat.copy_editor.identification.location.label;" accesskey="&staff.cat.copy_editor.identification.location.accesskey;" oncommand="document.getElementById('right_pane').firstChild.firstChild.focus();"/>
67                 <vbox id="right_pane" flex="1"/>
68             </vbox>
69             <splitter id="splitter2" oils_persist="state hidden" oils_persist_peers="after_splitter1 after_splitter2"><grippy /></splitter>
70             <vbox flex="1" id="after_splitter2" oils_persist="width">
71                 <button style="font-weight: bold; font-size: normal" label="&staff.cat.copy_editor.identification.circulation.label;" accesskey="&staff.cat.copy_editor.identification.circulation.accesskey;" oncommand="document.getElementById('right_pane2').firstChild.firstChild.focus();"/>
72                 <vbox id="right_pane2" flex="1"/>
73             </vbox>
74             <splitter id="splitter3" oils_persist="state hidden" oils_persist_peers="after_splitter2 after_splitter3"><grippy /></splitter>
75             <vbox flex="1" id="after_splitter3" oils_persist="width">
76                 <button style="font-weight: bold; font-size: normal" label="&staff.cat.copy_editor.identification.miscellaneous.label;" accesskey="&staff.cat.copy_editor.identification.miscellaneous.accesskey;" oncommand="document.getElementById('right_pane3').firstChild.firstChild.focus();"/>
77                 <vbox id="right_pane3" flex="1"/>
78             </vbox>
79             <splitter id="splitter4" oils_persist="state hidden" oils_persist_peers="after_splitter3 after_splitter4"><grippy /></splitter>
80             <vbox flex="1" id="after_splitter4" oils_persist="width">
81                 <button style="font-weight: bold; font-size: normal" label="&staff.cat.copy_editor.identification.statistics.label;" accesskey="&staff.cat.copy_editor.identification.statistics.accesskey;" oncommand="document.getElementById('right_pane4').firstChild.firstChild.focus();"/>
82                 <menu label="&staff.cat.copy_editor.stat_cat_lib_filter_menu.label;" id="stat_cat_lib_filter_menu">
83                     <menupopup />
84                 </menu>
85                 <vbox id="right_pane4" flex="1"/>
86             </vbox>
87         </hbox>
88
89         <hbox id="nav">
90             <button
91                 label="&staff.cat.copy_editor.hide_fields.label;"
92                 accesskey="&staff.cat.copy_editor.hide_fields.accesskey;"
93                 oncommand="util.hide.generate_dialog('ui.hide_copy_editor_fields')"
94             />
95             <spacer flex="1"/>
96             <button id="copy_notes" label="&staff.cat.copy_editor.copy_notes.label;" accesskey="&staff.cat.copy_editor.copy_notes.accesskey;" oncommand="g.copy_notes();"/>
97             <hbox id="non_unified_buttons">
98                 <button id="save" label="&staff.cat.copy_editor.save.label;" hidden="true" accesskey="&staff.cat.copy_editor.save.accesskey;" oncommand="g.stash_and_close();"/>
99                 <button id="cancel" label="&staff.cat.copy_editor.cancel.label;" accesskey="&staff.cat.copy_editor.cancel.accesskey;" oncommand="JSAN.use('util.widgets'); util.widgets.dispatch('close',window);"/>
100             </hbox>
101         </hbox>
102
103         <spacer/>
104     </groupbox>
105
106 </window>
107