File: menu_file.xml

package info (click to toggle)
pdfedit 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 15,032 kB
  • ctags: 21,708
  • sloc: cpp: 185,471; xml: 8,824; yacc: 1,178; ansic: 666; perl: 664; makefile: 636; sh: 371; lisp: 51
file content (116 lines) | stat: -rw-r--r-- 3,542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<sect1 id="gui_menu_File" xreflabel="menu item File">
	<title>File</title>
	<para>
			<mediaobject>
				<imageobject>
					<imagedata fileref="gui/menuAndToolbarsFun/images/menu_file.png" format="PNG"/>
				</imageobject>
				<textobject>
					<phrase>Default menu item - File</phrase>
				</textobject>
				<caption><para>Default menu item <emphasis>File</emphasis></para></caption>
			</mediaobject>
	</para>

	<variablelist>
		<title>File - description of items </title>

		<varlistentry>
			<term id="gui_menu_open" xreflabel="open file">Open...</term>
			<listitem>
				<para>
					Close currently opened docuement (if it is changed, shows question
					dialog whether we want to save changes) and displays open file dialog. If file
					is selected and contains correct pdf document, it is opened in current window.	
				</para>
				<para>
						Script equivalent: <emphasis>func_load()</emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term id="gui_menu_save" xreflabel="save file">Save</term>
			<listitem>
				<para>
					Saves changes for current document. This changes will appear as new
					revision after document is closed. Repeating save action will update previous
					Save calls. If you whant to close bunch of changes and stores them as new
					revision use <link linkend="gui_menu_save_new_revision">Save new revision </link>. This will allow you to conserve
					previous changes and continue in new bunch of changes.
				</para>
				<para>
						Script equivalent: <emphasis>func_save()</emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term>Save copy...</term>
			<listitem>
				<para>
					Saves copy of current document in selected revision (TODO link). This
					feature is very usefull if you want to make changes for older revisions. This
					is normally not possible, because pdf documents doesn't support revision
					branching. So you can select desired revision and then use Save copy to create
					new pdf file, which contains everything up to selected revision. This file can
					be then opened and manipulated as usual.
				</para>
				<para>
						Script equivalent: <emphasis>func_savecopy()</emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term id="gui_menu_save_new_revision">Save new revision</term>
			<listitem>
				<para>
					This is same as Save except that changes are closed and forms new
					revision which is definitivelly written to the file. All changes made after
					doesn't	affect saved revision and goes to the currently newest one (as usual).
				</para>
				<para>
						Script equivalent: <emphasis>func_saverev()</emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term>New window</term>
			<listitem>
				<para>
						Open new window of PDFedit.
				</para>
				<para>
						Script equivalent: <emphasis>newwindow()</emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term id="gui_menu_closeWindow" xreflabel="close window">Close window</term>
			<listitem>
				<para>
						Close actual window of PDFedit. If the document is changed allows saving the changes.
				</para>
				<para>
						Script equivalent: <emphasis></emphasis>
				</para>
			</listitem>
		</varlistentry>

		<varlistentry>
			<term>Quit</term>
			<listitem>
				<para>
						Close all windows of PDFedit and quit.
				</para>
				<para>
						Script equivalent: <emphasis>closeAll()</emphasis>
				</para>
			</listitem>
		</varlistentry>

	</variablelist>
</sect1>