]> git.lyx.org Git - features.git/blob - lib/lyx2lyx/lyxconvert_227.py
(Georg): fix lyx2lyx conversion of InsetBox.
[features.git] / lib / lyx2lyx / lyxconvert_227.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 sys
19 from parser_tools import find_tokens
20
21 def convert_collapsable(lines):
22     i = 0
23     while 1:
24         i = find_tokens(lines, ["\\begin_inset Box",
25                                 "\\begin_inset Branch",
26                                 "\\begin_inset CharStyle",
27                                 "\\begin_inset Float",
28                                 "\\begin_inset Foot",
29                                 "\\begin_inset Marginal",
30                                 "\\begin_inset Note",
31                                 "\\begin_inset OptArg",
32                                 "\\begin_inset Wrap"], i)
33         if i == -1:
34             break
35
36         if lines[i][:16] == "\\begin_inset Box":
37             # Skip box parameters
38             i = i + 10
39         else:
40             # We are interested in the next line
41             i = i + 1
42         if (lines[i] == "collapsed false"):
43             lines[i] = "status open"
44         elif (lines[i] == "collapsed true"):
45             lines[i] = "status collapsed"
46         else:
47             sys.stderr.write("Malformed lyx file\n")
48
49         i = i + 1
50
51 def convert(header, body):
52     convert_collapsable(body)
53
54 if __name__ == "__main__":
55     pass