Author: nick Date: Sun Feb 5 10:15:45 2006 New Revision: 375069 URL: http://svn.apache.org/viewcvs?rev=375069&view=rev Log: Add placeholder definitions for 2000/XP Comments
Modified: jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java Modified: jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java URL: http://svn.apache.org/viewcvs/jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java?rev=375069&r1=375068&r2=375069&view=diff ============================================================================== --- jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java (original) +++ jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/RecordTypes.java Sun Feb 5 10:15:45 2006 @@ -140,15 +140,22 @@ public static final Type ExWAVAudioEmbeddedAtom = new Type(4115,null); public static final Type AnimationInfoAtom = new Type(4116,null); public static final Type RTFDateTimeMCAtom = new Type(4117,null); - public static final Type ProgTags = new Type(5000,null); + public static final Type ProgTags = new Type(5000,DummyPositionSensitiveRecordWithChildren.class); public static final Type ProgStringTag = new Type(5001,null); - public static final Type ProgBinaryTag = new Type(5002,null); - public static final Type BinaryTagData = new Type(5003,null); + public static final Type ProgBinaryTag = new Type(5002,DummyPositionSensitiveRecordWithChildren.class); + public static final Type BinaryTagData = new Type(5003,DummyPositionSensitiveRecordWithChildren.class); public static final Type PrpublicintOptions = new Type(6000,null); public static final Type PersistPtrFullBlock = new Type(6001,PersistPtrHolder.class); public static final Type PersistPtrIncrementalBlock = new Type(6002,PersistPtrHolder.class); public static final Type GScalingAtom = new Type(10001,null); public static final Type GRColorAtom = new Type(10002,null); + + // Records ~12000 seem to be related to the Comments used in PPT 2000/XP + // (Comments in PPT97 are normal Escher text boxes) + public static final Type Comment2000 = new Type(12000,null); + public static final Type Comment2000Record = new Type(12002,null); + public static final Type Comment2000Summary = new Type(12004,null); + public static final Type Comment2000SummaryRecord = new Type(12005,null); //records greater then 0xF000 belong to with Microsoft Office Drawing format also known as Escher public static final int EscherDggContainer = 0xf000; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta POI Project: http://jakarta.apache.org/poi/