Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PowerPoint 2007 Reader/Writer : Improvements on Font, RichText, Thumbnail, Presentation Properties & Shadow #788

Merged
merged 23 commits into from
Jan 31, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
715e943
Add read/write Revision document attribut
devX2712 Aug 14, 2020
71fee9c
Conserve thumbnail if already exist in file
devX2712 Aug 14, 2020
24839e6
BUGFIX whe setting image ressource
devX2712 Aug 16, 2020
8e8ae7c
EVOL Move Shape name to AbstractShape
devX2712 Aug 16, 2020
25c99a2
BUGFIX - Name, in shape, is not preserved if not a placeholder
devX2712 Sep 12, 2020
0231826
CHG-Load also richtext shape without text
devX2712 Sep 12, 2020
3f1ff7b
ADD-Preserve shape properties (background color, etc.) for richttext
devX2712 Sep 12, 2020
b237d34
ADD-Shape RichtText preserve spelling lang while loading
devX2712 Sep 12, 2020
cef70f6
ADD-Preserve shape richtext font face while loading file
devX2712 Sep 12, 2020
33c4619
EVOL-Allow different style of strick paragraph
devX2712 Sep 13, 2020
cd9a17f
EVOL-Define const for strike types
devX2712 Sep 13, 2020
5aecc8d
EVOL-Super script and sub script for paragraph
devX2712 Sep 13, 2020
afc58c0
ADD Property 'status' reading and writing
devX2712 Jan 27, 2021
db96a0a
BUGFIX while cloning an existant slide
devX2712 Feb 1, 2021
9f3f686
ADD Read also texte zone margin RLTB
devX2712 Feb 2, 2021
cdaa211
ADD Vertical alignment for shape RichText
devX2712 Feb 2, 2021
3dfc5f5
ADD Effect managment to Shape,Paragraph and Text
devX2712 Feb 2, 2021
0be11d0
BUGFIX for duplacting slide
devX2712 Feb 3, 2021
a49854f
ADD vertical alos need horz sometimes
devX2712 Feb 3, 2021
7a31dbb
ADD Get more font attributs
devX2712 Feb 3, 2021
0e03232
BUGFIX Forgot clone for effect shape
devX2712 Feb 3, 2021
0e5dd85
ADD usefull function te search shape into a slide
devX2712 Feb 3, 2021
ec4700e
Feedbacks from @Progi1984
Progi1984 Dec 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BUGFIX - Name, in shape, is not preserved if not a placeholder
While wrting shape, the name is not preserved if it is not a placehoder
devX2712 authored and Progi1984 committed Dec 13, 2023
commit 25c99a20ddb26daee8719fbe7f7d29a15c578b03
Original file line number Diff line number Diff line change
@@ -172,7 +172,7 @@ protected function writeShapeText(XMLWriter $objWriter, RichText $shape, int $sh
if ($shape->isPlaceholder()) {
$objWriter->writeAttribute('name', 'Placeholder for ' . $shape->getPlaceholder()->getType());
} else {
$objWriter->writeAttribute('name', '');
$objWriter->writeAttribute('name', $shape->getName());
}
// Hyperlink
if ($shape->hasHyperlink()) {