~ubuntu-branches/ubuntu/oneiric/libjlatexmath-java/oneiric

« back to all changes in this revision

Viewing changes to src/org/scilab/forge/jlatexmath/StyleAtom.java

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-09-29 11:14:53 UTC
  • Revision ID: james.westby@ubuntu.com-20090929111453-0pmbj5as45odpxei
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* StyleAtom.java
 
2
 * =========================================================================
 
3
 * This file is part of the JLaTeXMath Library - http://forge.scilab.org/jlatexmath
 
4
 *
 
5
 * Copyright (C) 2009 DENIZET Calixte
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or (at
 
10
 * your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * General Public License for more details.
 
16
 *
 
17
 * A copy of the GNU General Public License can be found in the file
 
18
 * LICENSE.txt provided with the source distribution of this program (see
 
19
 * the META-INF directory in the source jar). This license can also be
 
20
 * found on the GNU website at http://www.gnu.org/licenses/gpl.html.
 
21
 *
 
22
 * If you did not receive a copy of the GNU General Public License along
 
23
 * with this program, contact the lead developer, or write to the Free
 
24
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
25
 * 02110-1301, USA.
 
26
 *
 
27
 */
 
28
 
 
29
package org.scilab.forge.jlatexmath;
 
30
 
 
31
/**
 
32
 * An atom representing a modification of style in a formula (e.g. textstyle or displaystyle).
 
33
 */
 
34
public class StyleAtom extends Atom {
 
35
    
 
36
    private int style = -1;
 
37
    private static int sstyle = -1;
 
38
    
 
39
    public StyleAtom(int style) {
 
40
        this.style = style;
 
41
    }
 
42
   
 
43
    public StyleAtom() {
 
44
    }
 
45
 
 
46
    public Box createBox(TeXEnvironment env) {
 
47
        if (style != -1) {
 
48
            if (sstyle == -1)
 
49
                sstyle = env.getStyle();
 
50
            env.setStyle(style);
 
51
        }
 
52
        else {
 
53
            env.setStyle(sstyle);
 
54
            sstyle = -1;
 
55
        }
 
56
 
 
57
        return new StrutBox(0, 0, 0, 0);
 
58
    } 
 
59
}