]> source.dussan.org Git - poi.git/commit
Initial Powerpoint support, by Nick Burch
authorAvik Sengupta <avik@apache.org>
Sat, 28 May 2005 05:36:00 +0000 (05:36 +0000)
committerAvik Sengupta <avik@apache.org>
Sat, 28 May 2005 05:36:00 +0000 (05:36 +0000)
commit6424e17b17138671152149cf3265e4f3bb0b9804
tree32a5afd561462de480ac26d475f8e2ef6f81b626
parent865c8bb4c4e2dfdc2fff995d3b8882c1c8786a19
Initial Powerpoint support, by Nick Burch

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353701 13f79535-47bb-0310-9956-ffa450edef68
47 files changed:
src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/dev/PPDrawingTextListing.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/dev/SLWTTextListing.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/dev/SlideAndNotesAtomListing.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/dev/SlideShowRecordDumper.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/dev/UserEditAndPersistListing.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/exceptions/InvalidRecordFormatException.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/model/Notes.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/model/Sheet.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/model/Slide.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/model/TextRun.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/CurrentUserAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/DummyRecordWithChildren.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/EscherTextboxWrapper.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/Notes.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/NotesAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/PPDrawing.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/PersistPtrHolder.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/PositionDependentRecordAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/Record.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/RecordAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/RecordContainer.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/Slide.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/SlideAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/SlideListWithText.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/SlidePersistAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/TextBytesAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/TextCharsAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/TextHeaderAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/UnknownRecordPlaceholder.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/record/UserEditAtom.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/usermodel/SlideShow.java [new file with mode: 0644]
src/scratchpad/src/org/apache/poi/hslf/util/MutableByteArrayOutputStream.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/TestReWrite.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/TestReWriteSanity.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/TestRecordCounts.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/data/basic_test_ppt_file.ppt [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/data/next_test_ppt_file.ppt [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/extractor/TextExtractor.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/record/TestSlidePersistAtom.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/record/TestTextBytesAtom.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/record/TestTextCharsAtom.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/record/TestTextHeaderAtom.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestCounts.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestNotesText.java [new file with mode: 0644]
src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestSheetText.java [new file with mode: 0644]