]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxconvert_224.py
deal better with default parameter of minipages from lyx 1.3.x
[lyx.git] / lib / lyx2lyx / lyxconvert_224.py
1 # This file is part of lyx2lyx
2 # Copyright (C) 2003 José Matos <jamatos@fep.up.pt>
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 import re
19 from parser_tools import find_token, find_tokens, find_end_of_inset, find_end_of
20 from sys import stderr
21 from string import replace, split, find
22
23 def add_end_layout(lines):
24     i = find_token(lines, '\\layout', 0)
25
26     if i == -1:
27         return
28
29     i = i + 1
30     struct_stack = ["\\layout"]
31     while 1:
32         i = find_tokens(lines, ["\\begin_inset", "\\end_inset", "\\layout",
33                                 "\\begin_deeper", "\\end_deeper", "\\the_end"], i)
34
35         token = split(lines[i])[0]
36
37         if token == "\\begin_inset":
38             struct_stack.append(token)
39             i = i + 1
40             continue
41
42         if token == "\\end_inset":
43             tail = struct_stack.pop()
44             if tail == "\\layout":
45                 lines.insert(i,"\\end_layout")
46                 i = i + 1
47                 #Check if it is the correct tag
48                 struct_stack.pop()
49             i = i + 1
50             continue
51
52         if token == "\\layout":
53             tail = struct_stack.pop()
54             if tail == token:
55                 lines.insert(i,"\\end_layout")
56                 i = i + 2
57             else:
58                 struct_stack.append(tail)
59                 i = i + 1
60             struct_stack.append(token)
61             continue
62
63         if token == "\\begin_deeper" or token == "\\end_deeper":
64             lines.insert(i,"\\end_layout")
65             i = i + 2
66             continue
67
68         #case \end_document
69         lines.insert(i, "\\end_layout")
70         return
71
72 def layout2begin_layout(lines):
73     i = 0
74     while 1:
75         i = find_token(lines, '\\layout', i)
76         if i == -1:
77             return
78
79         lines[i] = replace(lines[i], '\\layout', '\\begin_layout')
80         i = i + 1
81
82 def valignment_middle(lines, start, end):
83     for i in range(start, end):
84         if re.search('^<(column|cell) .*valignment="center".*>$', lines[i]):
85             lines[i] = replace(lines[i], 'valignment="center"', 'valignment="middle"')
86
87 def table_valignment_middle(lines):
88     i = 0
89     while 1:
90         i = find_token(lines, '\\begin_inset  Tabular', i)
91         if i == -1:
92             return
93         j = find_end_of_inset(lines, i + 1)
94         if j == -1:
95             #this should not happen
96             valignment_middle(lines, i + 1, len(lines))
97             return
98         valignment_middle(lines, i + 1, j)
99         i = j + 1
100
101 def end_document(lines):
102     i = find_token(lines, "\\the_end", 0)
103     if i == -1:
104         lines.append("\\end_document")
105         return
106     lines[i] = "\\end_document"
107
108
109 def convert_minipage(lines):
110     """ Convert minipages to the box inset.
111     We try to use the same order of arguments as lyx does.
112     """
113     pos = ["t","c","b"]
114     inner_pos = ["c","t","b","s"]
115
116     i = 0
117     while 1:
118         i = find_token(lines, "\\begin_inset Minipage", i)
119         if i == -1:
120             return
121
122         lines[i] = "\\begin_inset Frameless"
123         i = i + 1
124
125         # convert old to new position using the pos list
126         if lines[i][:8] == "position":
127             lines[i] = 'position "%s"' % pos[int(lines[i][9])]
128         else:
129             lines.insert(i, 'position "%s"' % pos[0])
130         i = i + 1
131
132         lines.insert(i, 'hor_pos "c"')
133         i = i + 1
134         lines.insert(i, 'has_inner_box 1')
135         i = i + 1
136
137         # convert the inner_position
138         if lines[i][:14] == "inner_position":
139             lines[i] = 'inner_pos "%s"' %  inner_pos[int(lines[i][15])]
140         else:
141             lines.insert('inner_pos "%s"' % inner_pos[0])
142         i = i + 1
143
144         # We need this since the new file format has a height and width
145         # in a different order.
146         if lines[i][:6] == "height":
147             height = lines[i][6:]
148             # test for default value of 221 and convert it accordingly
149             if height == ' "0pt"':
150                 height = ' "1pt"'
151             del lines[i]
152         else:
153             height = ' "1pt"'
154
155         if lines[i][:5] == "width":
156             width = lines[i][5:]
157             del lines[i]
158         else:
159             width = ' "0"'
160
161         lines.insert(i, 'use_parbox 0')
162         i = i + 1
163         lines.insert(i, 'width' + width)
164         i = i + 1
165         lines.insert(i, 'special "none"')
166         i = i + 1
167         lines.insert(i, 'height' + height)
168         i = i + 1
169         lines.insert(i, 'height_special "height"')
170         i = i + 1
171
172 ##
173 # Convert line and page breaks
174 # Old:
175 #\layout Standard
176 #\line_top \line_bottom \pagebreak_top \pagebreak_bottom 
177 #0
178 #
179 # New:
180 #\begin_layout Standard
181 #\newpage 
182 #
183 #\lyxline 
184 #0
185 #\lyxline 
186 #
187 #\newpage 
188 #
189 #\end_layout
190
191 def convert_breaks(lines):    
192     i = 0
193     while 1:
194         i = find_token(lines, "\\begin_layout", i)
195         if i == -1:
196             return
197         i = i + 1
198         line_top = find(lines[i],"\\line_top")
199         line_bot = find(lines[i],"\\line_bottom")
200         pb_top = find(lines[i],"\\pagebreak_top")
201         pb_bot = find(lines[i],"\\pagebreak_bottom")
202
203         if line_top == -1 and line_bot == -1 and pb_bot == -1 and pb_top == -1:
204             continue
205
206         lines[i] = ""
207         i = i + 1
208
209         #  Create an empty paragraph for line and page break that belong
210         # above the paragraph
211         #  To simplify the code, and maintain the same insertion point,
212         # I inserted by reverse order. It looks funny. :-)
213         if pb_top !=-1 or line_top != -1:
214             k = i - 3
215             lines.insert(k, '')
216             lines.insert(k, '\\end_layout')
217
218             if line_top != -1:
219                 lines.insert(k, '')
220                 lines.insert(k, "\\lyxline ")
221                 i = i + 2
222
223             if pb_top != -1:
224                 lines.insert(k, '')
225                 lines.insert(k, "\\newpage ")
226                 i = i + 2
227
228             lines.insert(k, '')
229             lines.insert(k, '')
230             lines.insert(k, '\\begin_layout Standard')
231             i = i + 5
232
233         # Ensure that nested style are converted later.
234         k = find_end_of(lines, i, "\\begin_layout", "\\end_layout")
235
236         if k == -1:
237             return
238
239         if line_bot != -1:
240             lines.insert(k, "\\lyxline ")
241             k = k + 1
242
243         if pb_bot != -1:
244             lines.insert(k, "\\newpage ")
245             k = k + 1
246
247 def convert(header, body):
248     add_end_layout(body)
249     layout2begin_layout(body)
250     end_document(body)
251     table_valignment_middle(body)
252     convert_minipage(body)
253     convert_breaks(body)
254
255 if __name__ == "__main__":
256     pass