]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxconvert_215.py
move cut&paste lfun handling from BufferView to LyXText
[lyx.git] / lib / lyx2lyx / lyxconvert_215.py
1 # This file is part of lyx2lyx
2 # Copyright (C) 2002 José Matos <jamatos@lyx.org>
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 *
20
21 layout_exp = re.compile(r"\\layout (\S*)")
22
23 math_env = ["\\[","\\begin{eqnarray*}","\\begin{eqnarray}","\\begin{equation}"]
24
25 def replace_protected_separator(lines):
26     i=0
27     while 1:
28         i = find_token(lines, "\\protected_separator", i)
29         if i == -1:
30             break
31         j = find_token_backwards(lines, "\\layout", i)
32         #if j == -1: print error
33         layout = layout_exp.match(lines[j]).group(1)
34
35         if layout == "LyX-Code":
36             result = ""
37             while lines[i] == "\\protected_separator ":
38                 result = result + " "
39                 del lines[i]
40
41             if lines[i-1] != "":
42                 lines[i-1] = lines[i-1] + result + lines[i]
43                 del lines[i]
44             else:
45                 lines[i] = result + lines[i]
46                 del lines[i-1]
47         else:
48             del lines[i]
49             lines[i-1] = lines[i-1]+ "\\SpecialChar ~"
50
51 def merge_formula_inset(lines):
52     i=0
53     while 1:
54         i = find_token(lines, "\\begin_inset Formula", i)
55         if i == -1: break
56         if lines[i+1] in math_env:
57             lines[i] = lines[i] + lines[i+1]
58             del lines[i+1]
59         i = i + 1
60
61 def convert(header,body):
62     replace_protected_separator(body)
63     merge_formula_inset(body)
64
65 if __name__ == "__main__":
66     pass
67