Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
3c7d9162
Commit
3c7d9162
authored
Aug 04, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WordArt multiline from doc.
parent
9d45c373
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
137 additions
and
203 deletions
+137
-203
ASCOfficeDocFile/DocDocxConverter/VMLShapeMapping.cpp
ASCOfficeDocFile/DocDocxConverter/VMLShapeMapping.cpp
+126
-200
ASCOfficePPTXFile/ASCOfficeDrawingConverter.cpp
ASCOfficePPTXFile/ASCOfficeDrawingConverter.cpp
+7
-3
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
+4
-0
No files found.
ASCOfficeDocFile/DocDocxConverter/VMLShapeMapping.cpp
View file @
3c7d9162
This diff is collapsed.
Click to expand it.
ASCOfficePPTXFile/ASCOfficeDrawingConverter.cpp
View file @
3c7d9162
...
...
@@ -1869,9 +1869,13 @@ PPTX::Logic::SpTreeElem CDrawingConverter::doc_LoadShape(XmlUtils::CXmlNode& oNo
CString
strNameP
=
XmlUtils
::
GetNameNoNS
(
oNodeP
.
GetName
());
if
(
_T
(
"textpath"
)
==
strNameP
)
{
strString
=
oNodeP
.
GetAttribute
(
_T
(
"string"
));
// мы используем его в хмл
CorrectXmlString
(
strString
);
strString
=
oNodeP
.
GetText
();
//для обхода 
 пишется дубль в контент
if
(
strString
.
IsEmpty
())
{
strString
=
oNodeP
.
GetAttribute
(
_T
(
"string"
));
}
CorrectXmlString
(
strString
);
// мы используем его в хмл
CString
strStyle
=
oNodeP
.
GetAttribute
(
_T
(
"style"
));
PPTX
::
CCSS
oCSSParser
;
...
...
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
View file @
3c7d9162
...
...
@@ -2623,6 +2623,8 @@ namespace OOX
{
ReadAttributes
(
oReader
);
m_sStringOriginal
=
oReader
.
GetText2
();
if
(
!
oReader
.
IsEmptyNode
()
)
oReader
.
ReadTillEnd
();
}
...
...
@@ -2716,6 +2718,8 @@ namespace OOX
nullable
<
SimpleTypes
::
Vml
::
CCssStyle
>
m_oStyle
;
SimpleTypes
::
CTrueFalse
<
SimpleTypes
::
booleanFalse
>
m_oTrim
;
SimpleTypes
::
CTrueFalse
<
SimpleTypes
::
booleanFalse
>
m_oXScale
;
nullable
<
CString
>
m_sStringOriginal
;
};
//--------------------------------------------------------------------------------
// CGroup 14.1.2.7 (Part4)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment