You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by gl...@apache.org on 2004/08/24 14:34:33 UTC

cvs commit: jakarta-poi/src/examples/src/org/apache/poi/hssf/usermodel/examples BigExample.java

glens       2004/08/24 05:34:33

  Modified:    src/scratchpad/src/org/apache/poi/hwpf/usermodel
                        CharacterRun.java Paragraph.java Range.java
                        TableRow.java
               src/examples/src/org/apache/poi/hssf/usermodel/examples
                        BigExample.java
  Log:
  Pier's HWPF patch.
  
  Revision  Changes    Path
  1.9       +99 -25    jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/CharacterRun.java
  
  Index: CharacterRun.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/CharacterRun.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- CharacterRun.java	8 Apr 2004 11:51:14 -0000	1.8
  +++ CharacterRun.java	24 Aug 2004 12:34:32 -0000	1.9
  @@ -123,7 +123,7 @@
       _props.setFRMarkDel(mark);
   
       byte newVal = (byte)(mark ? 1 : 0);
  -    _chpx.addSprm(SPRM_FRMARKDEL, newVal);
  +    _chpx.updateSprm(SPRM_FRMARKDEL, newVal);
   
     }
   
  @@ -137,7 +137,7 @@
       _props.setFBold(bold);
   
       byte newVal = (byte)(bold ? 1 : 0);
  -    _chpx.addSprm(SPRM_FBOLD, newVal);
  +    _chpx.updateSprm(SPRM_FBOLD, newVal);
   
     }
   
  @@ -151,7 +151,7 @@
       _props.setFItalic(italic);
   
       byte newVal = (byte)(italic ? 1 : 0);
  -    _chpx.addSprm(SPRM_FITALIC, newVal);
  +    _chpx.updateSprm(SPRM_FITALIC, newVal);
   
     }
   
  @@ -165,7 +165,7 @@
       _props.setFOutline(outlined);
   
       byte newVal = (byte)(outlined ? 1 : 0);
  -    _chpx.addSprm(SPRM_FOUTLINE, newVal);
  +    _chpx.updateSprm(SPRM_FOUTLINE, newVal);
   
     }
   
  @@ -179,7 +179,7 @@
       _props.setFFldVanish(fldVanish);
   
       byte newVal = (byte)(fldVanish ? 1 : 0);
  -    _chpx.addSprm(SPRM_FFLDVANISH, newVal);
  +    _chpx.updateSprm(SPRM_FFLDVANISH, newVal);
   
     }
   
  @@ -193,7 +193,7 @@
       _props.setFSmallCaps(smallCaps);
   
       byte newVal = (byte)(smallCaps ? 1 : 0);
  -    _chpx.addSprm(SPRM_FSMALLCAPS, newVal);
  +    _chpx.updateSprm(SPRM_FSMALLCAPS, newVal);
   
     }
   
  @@ -207,7 +207,7 @@
       _props.setFCaps(caps);
   
       byte newVal = (byte)(caps ? 1 : 0);
  -    _chpx.addSprm(SPRM_FCAPS, newVal);
  +    _chpx.updateSprm(SPRM_FCAPS, newVal);
   
     }
   
  @@ -221,7 +221,7 @@
       _props.setFVanish(vanish);
   
       byte newVal = (byte)(vanish ? 1 : 0);
  -    _chpx.addSprm(SPRM_FVANISH, newVal);
  +    _chpx.updateSprm(SPRM_FVANISH, newVal);
   
     }
   
  @@ -235,7 +235,7 @@
       _props.setFRMark(mark);
   
       byte newVal = (byte)(mark ? 1 : 0);
  -    _chpx.addSprm(SPRM_FRMARK, newVal);
  +    _chpx.updateSprm(SPRM_FRMARK, newVal);
   
     }
   
  @@ -249,7 +249,7 @@
       _props.setFStrike(strike);
   
       byte newVal = (byte)(strike ? 1 : 0);
  -    _chpx.addSprm(SPRM_FSTRIKE, newVal);
  +    _chpx.updateSprm(SPRM_FSTRIKE, newVal);
   
     }
   
  @@ -263,7 +263,7 @@
       _props.setFShadow(shadow);
   
       byte newVal = (byte)(shadow ? 1 : 0);
  -    _chpx.addSprm(SPRM_FSHADOW, newVal);
  +    _chpx.updateSprm(SPRM_FSHADOW, newVal);
   
     }
   
  @@ -277,7 +277,7 @@
       _props.setFEmboss(emboss);
   
       byte newVal = (byte)(emboss ? 1 : 0);
  -    _chpx.addSprm(SPRM_FEMBOSS, newVal);
  +    _chpx.updateSprm(SPRM_FEMBOSS, newVal);
   
     }
   
  @@ -291,7 +291,7 @@
       _props.setFImprint(imprint);
   
       byte newVal = (byte)(imprint ? 1 : 0);
  -    _chpx.addSprm(SPRM_FIMPRINT, newVal);
  +    _chpx.updateSprm(SPRM_FIMPRINT, newVal);
   
     }
   
  @@ -305,7 +305,7 @@
       _props.setFDStrike(dstrike);
   
       byte newVal = (byte)(dstrike ? 1 : 0);
  -    _chpx.addSprm(SPRM_FDSTRIKE, newVal);
  +    _chpx.updateSprm(SPRM_FDSTRIKE, newVal);
   
     }
   
  @@ -313,7 +313,7 @@
     {
       _props.setFtcAscii(ftcAscii);
   
  -    _chpx.addSprm(SPRM_RGFTCASCII, (short)ftcAscii);
  +    _chpx.updateSprm(SPRM_RGFTCASCII, (short)ftcAscii);
   
     }
   
  @@ -321,7 +321,7 @@
     {
       _props.setFtcFE(ftcFE);
   
  -    _chpx.addSprm(SPRM_RGFTCFAREAST, (short)ftcFE);
  +    _chpx.updateSprm(SPRM_RGFTCFAREAST, (short)ftcFE);
   
     }
   
  @@ -329,7 +329,7 @@
     {
       _props.setFtcOther(ftcOther);
   
  -    _chpx.addSprm(SPRM_RGFTCNOTFAREAST, (short)ftcOther);
  +    _chpx.updateSprm(SPRM_RGFTCNOTFAREAST, (short)ftcOther);
   
     }
   
  @@ -342,7 +342,7 @@
     {
       _props.setHps(halfPoints);
   
  -    _chpx.addSprm(SPRM_HPS, (short)halfPoints);
  +    _chpx.updateSprm(SPRM_HPS, (short)halfPoints);
   
     }
   
  @@ -355,7 +355,7 @@
     {
       _props.setDxaSpace(twips);
   
  -    _chpx.addSprm(SPRM_DXASPACE, twips);
  +    _chpx.updateSprm(SPRM_DXASPACE, twips);
   
     }
   
  @@ -368,7 +368,7 @@
     {
       _props.setDxaSpace(iss);
   
  -    _chpx.addSprm(SPRM_DXASPACE, iss);
  +    _chpx.updateSprm(SPRM_DXASPACE, iss);
   
     }
   
  @@ -380,7 +380,7 @@
     public void setUnderlineCode(int kul)
     {
       _props.setKul((byte)kul);
  -    _chpx.addSprm(SPRM_KUL, (byte)kul);
  +    _chpx.updateSprm(SPRM_KUL, (byte)kul);
     }
   
     public int getColor()
  @@ -391,7 +391,7 @@
     public void setColor(int color)
     {
       _props.setIco((byte)color);
  -    _chpx.addSprm(SPRM_ICO, (byte)color);
  +    _chpx.updateSprm(SPRM_ICO, (byte)color);
     }
   
     public int getVerticalOffset()
  @@ -402,7 +402,7 @@
     public void setVerticalOffset(int hpsPos)
     {
       _props.setHpsPos(hpsPos);
  -    _chpx.addSprm(SPRM_HPSPOS, (byte)hpsPos);
  +    _chpx.updateSprm(SPRM_HPSPOS, (byte)hpsPos);
     }
   
     public int getKerning()
  @@ -413,7 +413,7 @@
     public void setKerning(int kern)
     {
       _props.setHpsKern(kern);
  -    _chpx.addSprm(SPRM_HPSKERN, (short)kern);
  +    _chpx.updateSprm(SPRM_HPSKERN, (short)kern);
     }
   
     public boolean isHighlighted()
  @@ -425,7 +425,7 @@
     {
       _props.setFHighlight(true);
       _props.setIcoHighlight(color);
  -    _chpx.addSprm(SPRM_HIGHLIGHT, color);
  +    _chpx.updateSprm(SPRM_HIGHLIGHT, color);
     }
   
     public String getFontName()
  @@ -433,6 +433,80 @@
       return _doc.getFontTable().getMainFont(_props.getFtcAscii());
     }
   
  +  public boolean isSpecialCharacter()
  +  {
  +    return _props.isFSpec();
  +  }
  +
  +  public void setSpecialCharacter(boolean spec)
  +  {
  +    _props.setFSpec(spec);
  +
  +    byte newVal = (byte)(spec ? 1 : 0);
  +    _chpx.updateSprm(SPRM_FSPEC, newVal);
  +  }
  +
  +  public boolean isObj()
  +  {
  +    return _props.isFObj();
  +  }
  +
  +  public void setObj(boolean obj)
  +  {
  +    _props.setFObj(obj);
  +
  +    byte newVal = (byte)(obj ? 1 : 0);
  +    _chpx.updateSprm(SPRM_FOBJ, newVal);
  +  }
  +
  +  public int getPicOffset()
  +  {
  +    return _props.getFcPic();
  +  }
  +
  +  public void setPicOffset(int offset)
  +  {
  +    _props.setFcPic(offset);
  +    _chpx.updateSprm(SPRM_PICLOCATION, offset);
  +  }
  +
  +
  +  public boolean isData()
  +  {
  +    return _props.isFData();
  +  }
  +
  +  public void setData(boolean data)
  +  {
  +    _props.setFData(data);
  +
  +    byte newVal = (byte)(data ? 1 : 0);
  +    _chpx.updateSprm(SPRM_FOBJ, newVal);
  +  }
  +
  +  public boolean isOle2()
  +  {
  +    return _props.isFOle2();
  +  }
  +
  +  public void setOle2(boolean ole)
  +  {
  +    _props.setFOle2(ole);
  +
  +    byte newVal = (byte)(ole ? 1 : 0);
  +    _chpx.updateSprm(SPRM_FOBJ, newVal);
  +  }
  +
  +  public int getObjOffset()
  +  {
  +    return _props.getFcObj();
  +  }
  +
  +  public void setObjOffset(int obj)
  +  {
  +    _props.setFcObj(obj);
  +    _chpx.updateSprm(SPRM_OBJLOCATION, obj);
  +  }
   
     /**
     * Get the ico24 field for the CHP record.
  
  
  
  1.8       +12 -5     jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/Paragraph.java
  
  Index: Paragraph.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/Paragraph.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Paragraph.java	9 Apr 2004 13:05:33 -0000	1.7
  +++ Paragraph.java	24 Aug 2004 12:34:32 -0000	1.8
  @@ -18,13 +18,8 @@
   
   package org.apache.poi.hwpf.usermodel;
   
  -import org.apache.poi.hwpf.model.types.PAPAbstractType;
  -import org.apache.poi.hwpf.model.StyleDescription;
  -import org.apache.poi.hwpf.model.StyleSheet;
   import org.apache.poi.hwpf.model.PAPX;
  -
   import org.apache.poi.hwpf.sprm.SprmBuffer;
  -import org.apache.poi.hwpf.sprm.ParagraphSprmCompressor;
   import org.apache.poi.hwpf.sprm.TableSprmCompressor;
   
   public class Paragraph
  @@ -434,6 +429,18 @@
       _props.setDcs(dcs);
       _papx.updateSprm(SPRM_DCS, dcs.toShort());
     }
  +
  +  public int getIlfo()
  +  {
  +    return _props.getIlfo();
  +  }
  +
  +  public int getIlvl()
  +  {
  +    return _props.getIlvl();
  +  }
  +
  +
   
     void setTableRowEnd(TableProperties props)
     {
  
  
  
  1.12      +3 -4      jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/Range.java
  
  Index: Range.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/Range.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Range.java	11 Jul 2004 05:54:36 -0000	1.11
  +++ Range.java	24 Aug 2004 12:34:32 -0000	1.12
  @@ -712,8 +712,7 @@
       {
         throw new ArrayIndexOutOfBoundsException("The table's bounds fall outside of this Range");
       }
  -
  -    return new Table(r._parStart, tableEnd, r._doc.getRange(), 1);
  +    return new Table(r._parStart, tableEnd, r._doc.getRange(), paragraph.getTableLevel());
     }
   
     /**
  @@ -797,7 +796,7 @@
     {
       int x = min;
       PropertyNode node = (PropertyNode)rpl.get(x);
  -    while(node.getEnd() <= start)
  +    while(node.getEnd() <= start && x < rpl.size()-1)
       {
         x++;
         node = (PropertyNode)rpl.get(x);
  @@ -805,7 +804,7 @@
   
       int y = x;
       node = (PropertyNode)rpl.get(y);
  -    while(node.getEnd() < end)
  +    while(node.getEnd() < end && y < rpl.size()-1)
       {
         y++;
         node = (PropertyNode)rpl.get(y);
  
  
  
  1.5       +1 -1      jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java
  
  Index: TableRow.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TableRow.java	9 Apr 2004 13:05:33 -0000	1.4
  +++ TableRow.java	24 Aug 2004 12:34:32 -0000	1.5
  @@ -51,7 +51,7 @@
         Paragraph p = getParagraph(start);
         String s = p.text();
   
  -      while (! ( (levelNum == 1 && s.charAt(s.length() - 1) == TABLE_CELL_MARK) ||
  +      while (! ( (s.charAt(s.length() - 1) == TABLE_CELL_MARK) ||
                   p.isEmbeddedCellMark() && p.getTableLevel() == levelNum))
         {
           end++;
  
  
  
  1.6       +0 -0      jakarta-poi/src/examples/src/org/apache/poi/hssf/usermodel/examples/BigExample.java
  
  Index: BigExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/examples/src/org/apache/poi/hssf/usermodel/examples/BigExample.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: poi-dev-help@jakarta.apache.org