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
89ce79da
Commit
89ce79da
authored
Jul 24, 2017
by
Alexey Golubev
Browse files
Options
Browse Files
Download
Plain Diff
v4.4.2
parents
ef389872
3982ac06
Changes
26
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
447 additions
and
291 deletions
+447
-291
ASCOfficeOdfFile/formulasconvert/formulasconvert.h
ASCOfficeOdfFile/formulasconvert/formulasconvert.h
+3
-2
ASCOfficeOdfFile/formulasconvert/formulasconvert_odf.cpp
ASCOfficeOdfFile/formulasconvert/formulasconvert_odf.cpp
+3
-5
ASCOfficeOdfFile/formulasconvert/formulasconvert_oox.cpp
ASCOfficeOdfFile/formulasconvert/formulasconvert_oox.cpp
+84
-204
ASCOfficeOdfFile/src/docx/xlsx_output_xml.cpp
ASCOfficeOdfFile/src/docx/xlsx_output_xml.cpp
+2
-2
ASCOfficeOdfFileW/source/OdfFormat/ods_table_context.cpp
ASCOfficeOdfFileW/source/OdfFormat/ods_table_context.cpp
+5
-5
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertDrawing.cpp
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertDrawing.cpp
+55
-24
ASCOfficePPTFile/PPTFormatLib/Reader/PPTDocumentInfoOneUser.cpp
...icePPTFile/PPTFormatLib/Reader/PPTDocumentInfoOneUser.cpp
+26
-13
ASCOfficePPTFile/PPTFormatLib/Reader/PPTFileReader.cpp
ASCOfficePPTFile/PPTFormatLib/Reader/PPTFileReader.cpp
+7
-2
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
+15
-1
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
+50
-3
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
+1
-1
ASCOfficeRtfFile/RtfFormatLib/Mac/RtfFormatLib.xcodeproj/project.pbxproj
...e/RtfFormatLib/Mac/RtfFormatLib.xcodeproj/project.pbxproj
+2
-0
ASCOfficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
...fficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
+4
-4
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/ODRAW/OfficeArtFOPTE.h
...ce/XlsFormat/Logic/Biff_structures/ODRAW/OfficeArtFOPTE.h
+1
-1
ASCOfficeXlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.cpp
...XlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.cpp
+19
-19
ASCOfficeXlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.h
...ceXlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.h
+2
-2
Common/DocxFormat/Mac/DocxFormatLib.xcodeproj/project.pbxproj
...on/DocxFormat/Mac/DocxFormatLib.xcodeproj/project.pbxproj
+6
-0
DesktopEditor/common/File.cpp
DesktopEditor/common/File.cpp
+92
-0
DesktopEditor/common/File.h
DesktopEditor/common/File.h
+11
-0
DesktopEditor/ios_projects/PdfWriter/PdfWriter.xcodeproj/project.pbxproj
...os_projects/PdfWriter/PdfWriter.xcodeproj/project.pbxproj
+9
-1
DesktopEditor/xml/mac/libxml2.xcodeproj/project.pbxproj
DesktopEditor/xml/mac/libxml2.xcodeproj/project.pbxproj
+24
-0
HtmlFile/Mac/HtmlFile/HtmlFile.xcodeproj/project.pbxproj
HtmlFile/Mac/HtmlFile/HtmlFile.xcodeproj/project.pbxproj
+2
-0
OfficeUtils/OfficeUtils.xcodeproj/project.pbxproj
OfficeUtils/OfficeUtils.xcodeproj/project.pbxproj
+3
-1
OfficeUtils/src/ZipUtilsCP.cpp
OfficeUtils/src/ZipUtilsCP.cpp
+18
-0
UnicodeConverter/build/UnicodeConverter/UnicodeConverter.xcodeproj/project.pbxproj
...icodeConverter/UnicodeConverter.xcodeproj/project.pbxproj
+2
-0
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+1
-1
No files found.
ASCOfficeOdfFile/formulasconvert/formulasconvert.h
View file @
89ce79da
...
...
@@ -87,9 +87,10 @@ public:
std
::
wstring
convert_conditional_formula
(
std
::
wstring
const
&
expr
);
// Лист1!$A$1 -> $Лист1.$A$1
std
::
wstring
convert_named_ref
(
std
::
wstring
const
&
expr
);
std
::
wstring
convert_named_ref
(
std
::
wstring
const
&
expr
);
std
::
wstring
convert_named_formula
(
std
::
wstring
const
&
expr
);
std
::
wstring
find_base_cell
(
std
::
wstring
const
&
expr
);
std
::
wstring
get_base_cell_formula
(
std
::
wstring
const
&
expr
);
//Sheet2!C3:C19 -> Sheet2.C3:Sheet2.C19
std
::
wstring
convert_chart_distance
(
std
::
wstring
const
&
expr
);
...
...
ASCOfficeOdfFile/formulasconvert/formulasconvert_odf.cpp
View file @
89ce79da
...
...
@@ -57,6 +57,7 @@ namespace formulasconvert {
static
std
::
wstring
replace_named_ref_formater1
(
boost
::
wsmatch
const
&
what
);
static
std
::
wstring
replace_cell_range_formater
(
boost
::
wsmatch
const
&
what
);
void
replace_named_formula
(
std
::
wstring
&
expr
,
bool
w
=
true
);
void
replace_named_ref
(
std
::
wstring
&
expr
,
bool
w
=
true
);
bool
find_first_ref
(
std
::
wstring
const
&
expr
,
std
::
wstring
&
table
,
std
::
wstring
&
ref
);
bool
find_first_last_ref
(
std
::
wstring
const
&
expr
,
std
::
wstring
&
table
,
std
::
wstring
&
ref_first
,
std
::
wstring
&
ref_last
);
...
...
@@ -209,7 +210,7 @@ namespace formulasconvert {
{
convert_with_TableName
=
withTableName
;
//boost::wregex simpleRef(L"\\[\\.([a-zA-Z]+\\d+)(?::\\.([a-zA-Z]+\\d+)){0,1}\\]");
boost
::
wregex
complexRef
(
L"
\\
[(?:
\\
$)?([^
\\
.]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]
+
\\
${0,1}
\\
d+)(?::
\\
.(
\\
${0,1}[a-zA-Z]+
\\
${0,1}
\\
d+
)){0,1}
\\
]"
);
boost
::
wregex
complexRef
(
L"
\\
[(?:
\\
$)?([^
\\
.]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]
*
\\
${0,1}
\\
d*)(?::
\\
.(
\\
${0,1}[a-zA-Z]*
\\
${0,1}
\\
d*
)){0,1}
\\
]"
);
/*
[ $ Sheet2 . A1 : . B5 ]
*/
...
...
@@ -226,7 +227,7 @@ namespace formulasconvert {
convert_with_TableName
=
withTableName
;
//boost::wregex complexRef(L"\\${0,1}([^\\.]+?){0,1}\\.(\\${0,1}[a-zA-Z]+\\${0,1}\\d+)(?::\\.(\\${0,1}[a-zA-Z]+\\${0,1}\\d+)){0,1}");
boost
::
wregex
complexRef
(
L"
\\
${0,1}([^
\\
.
\\
s]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]
+
\\
${0,1}
\\
d+)(?::
\\
${0,1}([^
\\
.
\\
s]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]+
\\
${0,1}
\\
d+
)){0,1}"
);
boost
::
wregex
complexRef
(
L"
\\
${0,1}([^
\\
.
\\
s]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]
*
\\
${0,1}
\\
d*)(?::
\\
${0,1}([^
\\
.
\\
s]+?){0,1}
\\
.(
\\
${0,1}[a-zA-Z]*
\\
${0,1}
\\
d*
)){0,1}"
);
const
std
::
wstring
res
=
boost
::
regex_replace
(
expr
,
...
...
@@ -263,15 +264,12 @@ namespace formulasconvert {
return
what
[
2
].
str
();
else
if
(
what
[
3
].
matched
)
return
what
[
3
].
str
();
//else if (what[4].matched)
// return what[4].str();
else
return
L""
;
}
// TODO
// заменить точки с запятой во всех вхождениях кроме находящихся в кавычках --*и в фигурных скобках*--
// TODO: проверить как сохраняются кавычки в строке
void
odf2oox_converter
::
Impl
::
replace_semicolons
(
std
::
wstring
&
expr
)
{
const
std
::
wstring
res
=
boost
::
regex_replace
(
...
...
ASCOfficeOdfFile/formulasconvert/formulasconvert_oox.cpp
View file @
89ce79da
This diff is collapsed.
Click to expand it.
ASCOfficeOdfFile/src/docx/xlsx_output_xml.cpp
View file @
89ce79da
...
...
@@ -190,13 +190,13 @@ void xlsx_xml_worksheet::write_to(std::wostream & strm)
}
}
CP_XML_STREAM
()
<<
impl_
->
drawing_
.
str
();
if
(
!
impl_
->
page_props_
.
str
().
empty
())
{
CP_XML_STREAM
()
<<
impl_
->
page_props_
.
str
();
}
//props выше legacyDrawing !!
CP_XML_STREAM
()
<<
impl_
->
drawing_
.
str
();
if
(
impl_
->
commentsId_
.
length
()
>
0
)
{
CP_XML_NODE
(
L"legacyDrawing"
)
...
...
ASCOfficeOdfFileW/source/OdfFormat/ods_table_context.cpp
View file @
89ce79da
...
...
@@ -138,7 +138,8 @@ void ods_table_context::add_defined_range(const std::wstring & name, const std::
std
::
wstring
odf_range
=
formulas_converter
.
convert_named_ref
(
cell_range
);
//todo - разделить конвертацию диапазонов/рэнжей на c [] и без
XmlUtils
::
replace_all
(
odf_range
,
L"["
,
L""
);
XmlUtils
::
replace_all
(
odf_range
,
L"]"
,
L""
);
std
::
wstring
odf_base_cell
=
formulas_converter
.
find_base_cell
(
cell_range
);
std
::
wstring
odf_base_cell
=
formulas_converter
.
get_base_cell_formula
(
cell_range
);
named_range
->
table_name_
=
name
;
named_range
->
table_cell_range_address_
=
odf_range
;
...
...
@@ -181,8 +182,8 @@ void ods_table_context::add_defined_expression(const std::wstring & name, const
formulasconvert
::
oox2odf_converter
formulas_converter
;
std
::
wstring
odf_value
=
formulas_converter
.
convert_named_
ref
(
value
);
std
::
wstring
odf_base_cell
=
formulas_converter
.
find_base_cell
(
value
);
std
::
wstring
odf_value
=
formulas_converter
.
convert_named_
formula
(
value
);
std
::
wstring
odf_base_cell
=
formulas_converter
.
get_base_cell_formula
(
value
);
named_expression
->
table_name_
=
name
;
named_expression
->
table_expression_
=
odf_value
;
...
...
@@ -215,10 +216,9 @@ void ods_table_context::add_defined_expression(const std::wstring & name, const
table_defined_expressions_
.
root
->
add_child_element
(
elm
);
}
if
(
odf_base_cell
.
length
()
>
0
)
if
(
!
odf_base_cell
.
empty
()
)
named_expression
->
table_base_cell_address_
=
odf_base_cell
;
table_defined_expressions_
.
elements
.
push_back
(
elm
);
}
...
...
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertDrawing.cpp
View file @
89ce79da
...
...
@@ -594,8 +594,17 @@ void OoxConverter::convert(PPTX::Logic::SpPr *oox_spPr, PPTX::Logic::ShapeStyle*
convert
(
oox_spPr
->
xfrm
.
GetPointer
());
PPTX
::
Logic
::
PrstGeom
*
prstGeom
=
&
oox_spPr
->
Geometry
.
as
<
PPTX
::
Logic
::
PrstGeom
>
();
PPTX
::
Logic
::
CustGeom
*
custGeom
=
&
oox_spPr
->
Geometry
.
as
<
PPTX
::
Logic
::
CustGeom
>
();
PPTX
::
Logic
::
PrstGeom
*
prstGeom
=
NULL
;
PPTX
::
Logic
::
CustGeom
*
custGeom
=
NULL
;
if
(
oox_spPr
->
Geometry
.
is
<
PPTX
::
Logic
::
PrstGeom
>
())
{
prstGeom
=
&
oox_spPr
->
Geometry
.
as
<
PPTX
::
Logic
::
PrstGeom
>
();
}
if
(
oox_spPr
->
Geometry
.
is
<
PPTX
::
Logic
::
CustGeom
>
())
{
custGeom
=
&
oox_spPr
->
Geometry
.
as
<
PPTX
::
Logic
::
CustGeom
>
();
}
convert
(
prstGeom
);
convert
(
custGeom
);
...
...
@@ -627,7 +636,12 @@ void OoxConverter::convert(PPTX::Logic::SpPr *oox_spPr, PPTX::Logic::ShapeStyle*
}
odf_context
()
->
drawing_context
()
->
end_line_properties
();
//-----------------------------------------------------------------------------------------------------------------------------
PPTX
::
Logic
::
EffectLst
*
effectLst
=
&
oox_spPr
->
EffectList
.
as
<
PPTX
::
Logic
::
EffectLst
>
();
PPTX
::
Logic
::
EffectLst
*
effectLst
=
NULL
;
if
(
oox_spPr
->
EffectList
.
is
<
PPTX
::
Logic
::
EffectLst
>
())
{
effectLst
=
&
oox_spPr
->
EffectList
.
as
<
PPTX
::
Logic
::
EffectLst
>
();
}
if
(
effectLst
)
convert
(
effectLst
);
else
if
(
oox_sp_style
)
convert
(
&
oox_sp_style
->
effectRef
,
3
);
...
...
@@ -644,18 +658,12 @@ void OoxConverter::convert(PPTX::Logic::UniFill *oox_fill, DWORD nARGB)
{
if
(
oox_fill
==
NULL
)
return
;
PPTX
::
Logic
::
NoFill
*
noFill
=
&
oox_fill
->
as
<
PPTX
::
Logic
::
NoFill
>
();
PPTX
::
Logic
::
BlipFill
*
blipFill
=
&
oox_fill
->
as
<
PPTX
::
Logic
::
BlipFill
>
();
PPTX
::
Logic
::
GradFill
*
gradFill
=
&
oox_fill
->
as
<
PPTX
::
Logic
::
GradFill
>
();
PPTX
::
Logic
::
SolidFill
*
solidFill
=
&
oox_fill
->
as
<
PPTX
::
Logic
::
SolidFill
>
();
PPTX
::
Logic
::
PattFill
*
pattFill
=
&
oox_fill
->
as
<
PPTX
::
Logic
::
PattFill
>
();
if
(
solidFill
)
convert
(
solidFill
,
nARGB
);
else
if
(
blipFill
)
convert
(
blipFill
);
else
if
(
gradFill
)
convert
(
gradFill
,
nARGB
);
else
if
(
pattFill
)
convert
(
pattFill
,
nARGB
);
else
if
(
noFill
)
odf_context
()
->
drawing_context
()
->
set_no_fill
();
if
(
oox_fill
->
is
<
PPTX
::
Logic
::
NoFill
>
())
odf_context
()
->
drawing_context
()
->
set_no_fill
();
if
(
oox_fill
->
is
<
PPTX
::
Logic
::
BlipFill
>
())
convert
(
&
oox_fill
->
as
<
PPTX
::
Logic
::
BlipFill
>
());
if
(
oox_fill
->
is
<
PPTX
::
Logic
::
GradFill
>
())
convert
(
&
oox_fill
->
as
<
PPTX
::
Logic
::
GradFill
>
(),
nARGB
);
if
(
oox_fill
->
is
<
PPTX
::
Logic
::
SolidFill
>
())
convert
(
&
oox_fill
->
as
<
PPTX
::
Logic
::
SolidFill
>
(),
nARGB
);
if
(
oox_fill
->
is
<
PPTX
::
Logic
::
PattFill
>
())
convert
(
&
oox_fill
->
as
<
PPTX
::
Logic
::
PattFill
>
(),
nARGB
);
}
int
OoxConverter
::
convert
(
PPTX
::
Logic
::
PrstTxWarp
*
oox_text_preset
)
...
...
@@ -783,8 +791,10 @@ void OoxConverter::convert(PPTX::Logic::Path2D *oox_geom_path)
for
(
size_t
i
=
0
;
i
<
oox_geom_path
->
Paths
.
size
();
i
++
)
{
PPTX
::
Logic
::
PathBase
*
pathBase
=
&
oox_geom_path
->
Paths
[
i
].
Path2D
.
as
<
PPTX
::
Logic
::
PathBase
>
();
convert
(
pathBase
);
if
(
oox_geom_path
->
Paths
[
i
].
Path2D
.
is
<
PPTX
::
Logic
::
PathBase
>
())
{
convert
(
&
oox_geom_path
->
Paths
[
i
].
Path2D
.
as
<
PPTX
::
Logic
::
PathBase
>
());
}
}
if
(
oox_geom_path
->
stroke
.
IsInit
()
&&
*
oox_geom_path
->
stroke
==
false
)
...
...
@@ -951,7 +961,7 @@ void OoxConverter::convert(PPTX::Logic::GradFill *oox_grad_fill, DWORD nARGB)
{
odf_context
()
->
drawing_context
()
->
set_opacity_angle
(
oox_grad_fill
->
lin
->
ang
.
get
()
/
60000.
);
}
else
if
(
oox_grad_fill
->
path
.
is_init
())
else
if
(
oox_grad_fill
->
path
.
is_init
()
&&
oox_grad_fill
->
path
->
rect
.
is_init
()
)
{
odf_context
()
->
drawing_context
()
->
set_opacity_rect
(
XmlUtils
::
GetInteger
(
oox_grad_fill
->
path
->
rect
->
l
.
get_value_or
(
L""
)),
XmlUtils
::
GetInteger
(
oox_grad_fill
->
path
->
rect
->
t
.
get_value_or
(
L""
)),
...
...
@@ -1137,12 +1147,24 @@ void OoxConverter::convert(PPTX::Logic::BodyPr *oox_bodyPr)
//+ style section
//+element text:section в котором параграфы
}
if
(
oox_bodyPr
->
Fit
.
type
==
PPTX
::
Logic
::
TextFit
::
FitSpAuto
)
switch
(
oox_bodyPr
->
Fit
.
type
)
{
//изменяемы размеры
case
PPTX
:
:
Logic
::
TextFit
::
FitSpAuto
:
{
//изменяемы размеры
odf_context
()
->
drawing_context
()
->
set_text_box_min_size
(
true
);
//уже выставленые в min
}
break
;
case
PPTX
:
:
Logic
::
TextFit
::
FitNo
:
{
}
break
;
case
PPTX
:
:
Logic
::
TextFit
::
FitNormAuto
:
{
}
break
;
default:
{
}
}
if
(
oox_bodyPr
->
fromWordArt
.
IsInit
()
&&
oox_bodyPr
->
prstTxWarp
.
IsInit
())
{
for
(
size_t
i
=
0
;
i
<
oox_bodyPr
->
prstTxWarp
->
avLst
.
size
();
i
++
)
...
...
@@ -1680,12 +1702,21 @@ void OoxConverter::convert(PPTX::Logic::RunProperties *oox_run_pr, odf_writer::s
_CP_OPT
(
double
)
opacityText
;
std
::
wstring
hexColorText
;
PPTX
::
Logic
::
GradFill
*
gradFill
=
&
oox_run_pr
->
Fill
.
as
<
PPTX
::
Logic
::
GradFill
>
();
PPTX
::
Logic
::
GradFill
*
gradFill
=
NULL
;
PPTX
::
Logic
::
SolidFill
*
solidFill
=
NULL
;
if
(
oox_run_pr
->
Fill
.
is
<
PPTX
::
Logic
::
GradFill
>
())
{
gradFill
=
&
oox_run_pr
->
Fill
.
as
<
PPTX
::
Logic
::
GradFill
>
();
}
if
(
gradFill
&&
!
gradFill
->
GsLst
.
empty
())
{
convert
(
&
gradFill
->
GsLst
[
0
].
color
,
hexColorText
,
opacityText
);
}
PPTX
::
Logic
::
SolidFill
*
solidFill
=
&
oox_run_pr
->
Fill
.
as
<
PPTX
::
Logic
::
SolidFill
>
();
if
(
oox_run_pr
->
Fill
.
is
<
PPTX
::
Logic
::
SolidFill
>
())
{
solidFill
=
&
oox_run_pr
->
Fill
.
as
<
PPTX
::
Logic
::
SolidFill
>
();
}
if
(
solidFill
)
{
convert
(
&
solidFill
->
Color
,
hexColorText
,
opacityText
);
...
...
ASCOfficePPTFile/PPTFormatLib/Reader/PPTDocumentInfoOneUser.cpp
View file @
89ce79da
...
...
@@ -603,10 +603,12 @@ void CPPTUserInfo::LoadNotes(DWORD dwNoteID, CSlide* pNotes)
int
indexUser
=
pRecordSlide
->
m_IndexUser
;
if
(
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
.
empty
())
pNotesWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
0
]
->
m_arOffsetPictures
;
else
pNotesWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
;
pNotesWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
//грузим placeholder
pNotesWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
pNotesWrapper
->
m_arTextPlaceHolders
=
pRecordSlide
->
m_oPersist
.
m_arTextAttrs
;
std
::
vector
<
CRecordNotesAtom
*>
oArrayNotesAtoms
;
...
...
@@ -627,6 +629,9 @@ void CPPTUserInfo::LoadNotes(DWORD dwNoteID, CSlide* pNotes)
//????? у заметок нет слайда !!!
}
//-----------------------------------------------------
size_t
index
=
pPairSlide
->
second
->
m_Index
;
if
(
index
>=
m_arSlides
.
size
())
return
;
CSlide
*
pSlide
=
m_arSlides
[
pPairSlide
->
second
->
m_Index
];
pNotes
->
m_lSlideID
=
pPairSlide
->
second
->
m_Index
;
...
...
@@ -798,10 +803,12 @@ void CPPTUserInfo::LoadSlide(DWORD dwSlideID, CSlide* pSlide)
int
indexUser
=
pRecordSlide
->
m_IndexUser
;
if
(
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
.
empty
())
pSlideWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
0
]
->
m_arOffsetPictures
;
else
pSlideWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
;
pSlideWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
// вот, грузим placeholder
pSlideWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
pSlideWrapper
->
m_arTextPlaceHolders
=
pRecordSlide
->
m_oPersist
.
m_arTextAttrs
;
// записываем шрифты
...
...
@@ -1402,7 +1409,11 @@ void CPPTUserInfo::LoadMainMaster(DWORD dwMasterID, const LONG& lOriginWidth, co
indexUser
=
pPairMaster1
->
second
->
m_IndexUser
;
pMasterWrapper
->
m_arTextPlaceHolders
=
pPairMaster1
->
second
->
m_oPersist
.
m_arTextAttrs
;
}
if
(
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
.
empty
()
==
false
)
pMasterWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
indexUser
]
->
m_arOffsetPictures
;
else
pMasterWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
0
]
->
m_arOffsetPictures
;
pMasterWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
// читаем настройки текстовых стилей -----------------------------------------------
...
...
@@ -1784,11 +1795,13 @@ void CPPTUserInfo::LoadNoMainMaster(DWORD dwMasterID, const LONG& lOriginWidth,
CSlideInfo
*
pMasterWrapper
=
&
m_arMasterWrapper
[
m_arMasterWrapper
.
size
()
-
1
];
// вот, грузим placeholder
pMasterWrapper
->
m_arTextPlaceHolders
=
pCurMaster
->
m_oPersist
.
m_arTextAttrs
;
pMasterWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
if
(
m_pDocumentInfo
->
m_arUsers
[
pCurMaster
->
m_IndexUser
]
->
m_arOffsetPictures
.
empty
()
==
false
)
pMasterWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
pCurMaster
->
m_IndexUser
]
->
m_arOffsetPictures
;
pMasterWrapper
->
m_mapFilePictures
=
&
m_pDocumentInfo
->
m_mapStoreImageFile
;
else
pMasterWrapper
->
m_parEmptyPictures
=
&
m_pDocumentInfo
->
m_arUsers
[
0
]
->
m_arOffsetPictures
;
std
::
map
<
DWORD
,
LONG
>::
iterator
pPairTheme
=
m_mapMasterToTheme
.
find
(
dwID
);
...
...
ASCOfficePPTFile/PPTFormatLib/Reader/PPTFileReader.cpp
View file @
89ce79da
...
...
@@ -232,10 +232,12 @@ void CPPTFileReader::ReadPictures()
while
(
true
)
{
if
(
pStream
->
isEOF
())
break
;
//if (pStream->isEOF()) случаются неверно записанные стримы
//
break;
int
pos
=
pStream
->
getStreamPointer
();
if
(
pos
>=
pStream
->
getStreamSize
())
break
;
SRecordHeader
oHeader
;
if
(
pDecryptor
)
...
...
@@ -256,6 +258,9 @@ void CPPTFileReader::ReadPictures()
else
oHeader
.
ReadFromStream
(
pStream
->
stream_
);
if
(
oHeader
.
RecType
==
0
&&
oHeader
.
RecLen
==
0
)
break
;
// окончание стрима забито нулями (выравнивание)
CRecordOfficeArtBlip
art_blip
;
art_blip
.
m_strTmpDirectory
=
m_strTmpDirectory
;
art_blip
.
m_oDocumentInfo
=
&
m_oDocumentInfo
;
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
View file @
89ce79da
...
...
@@ -250,12 +250,26 @@ namespace PPTX
}
else
if
(
L"oleObj"
==
strName
)
{
olePic
=
oNode
.
ReadNode
(
L"p:pic"
);
olePic
=
oNode
.
ReadNode
(
L"p:pic"
);
//нормальный вариант объекта
if
(
olePic
.
IsInit
())
{
olePic
->
fromXMLOle
(
oNode
);
result
=
true
;
}
else
{
olePic
.
Init
();
//старый вариант описания объекта через spid в VmlDrawing
olePic
->
spPr
.
xfrm
;
Logic
::
PrstGeom
*
geom
=
new
Logic
::
PrstGeom
();
geom
->
prst
=
L"rect"
;
olePic
->
spPr
.
Geometry
.
m_geometry
.
reset
(
geom
);
olePic
->
fromXMLOle
(
oNode
);
result
=
true
;
}
if
(
olePic
->
spPr
.
xfrm
.
IsInit
()
==
false
)
olePic
->
spPr
.
xfrm
=
xfrm
;
}
else
if
(
L"AlternateContent"
==
strName
)
{
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.cpp
View file @
89ce79da
...
...
@@ -619,6 +619,45 @@ namespace PPTX
if
(
oleObject
.
IsInit
())
{
pWriter
->
StartRecord
(
SPTREE_TYPE_OLE
);
if
(
oleObject
->
m_sShapeId
.
IsInit
()
&&
(
!
blipFill
.
blip
->
embed
.
IsInit
()
&&
blipFill
.
blip
->
oleFilepathImage
.
empty
())
&&
parentFileIs
<
PPTX
::
Slide
>
()
&&
parentFileAs
<
PPTX
::
Slide
>
().
Vml
.
IsInit
())
{
OOX
::
CVmlDrawing
*
pVml
=
parentFileAs
<
PPTX
::
Slide
>
().
Vml
.
operator
->
();
std
::
map
<
std
::
wstring
,
OOX
::
CVmlDrawing
::
_vml_shape
>::
iterator
pPair
=
pVml
->
m_mapShapes
.
find
(
*
oleObject
->
m_sShapeId
);
if
(
pVml
->
m_mapShapes
.
end
()
!=
pPair
)
{
pPair
->
second
.
bUsed
=
true
;
OOX
::
Vml
::
CShape
*
pShape
=
dynamic_cast
<
OOX
::
Vml
::
CShape
*>
(
pPair
->
second
.
pElement
);
for
(
size_t
j
=
0
;
(
pShape
)
&&
(
j
<
pShape
->
m_arrItems
.
size
());
++
j
)
{
OOX
::
WritingElement
*
pChildElemShape
=
pShape
->
m_arrItems
[
j
];
if
(
OOX
::
et_v_imagedata
==
pChildElemShape
->
getType
())
{
OOX
::
Vml
::
CImageData
*
pImageData
=
static_cast
<
OOX
::
Vml
::
CImageData
*>
(
pChildElemShape
);
std
::
wstring
sIdImageFileCache
;
if
(
pImageData
->
m_oRelId
.
IsInit
())
sIdImageFileCache
=
pImageData
->
m_oRelId
->
GetValue
();
else
if
(
pImageData
->
m_rId
.
IsInit
())
sIdImageFileCache
=
pImageData
->
m_rId
->
GetValue
();
if
(
!
sIdImageFileCache
.
empty
())
{
//ищем физический файл ( rId относительно vml_drawing)
smart_ptr
<
OOX
::
File
>
pFile
=
pVml
->
Find
(
sIdImageFileCache
);
if
(
pFile
.
IsInit
()
&&
(
OOX
::
FileTypes
::
Image
==
pFile
->
type
()))
{
OOX
::
Image
*
pImageFileCache
=
static_cast
<
OOX
::
Image
*>
(
pFile
.
operator
->
());
blipFill
.
blip
->
oleFilepathImage
=
pImageFileCache
->
filename
().
GetPath
();
}
}
}
}
}
}
}
else
if
(
nvPicPr
.
nvPr
.
media
.
is_init
())
{
...
...
@@ -630,10 +669,17 @@ namespace PPTX
blipFill
.
blip
->
mediaFilepath
=
mediaFile
->
filename
().
GetPath
();
}
if
(
nvPicPr
.
nvPr
.
media
.
is
<
MediaFile
>
())
{
if
(
nvPicPr
.
nvPr
.
media
.
as
<
MediaFile
>
().
name
==
L"audioFile"
)
pWriter
->
StartRecord
(
SPTREE_TYPE_AUDIO
);
else
if
(
nvPicPr
.
nvPr
.
media
.
as
<
MediaFile
>
().
name
==
L"videoFile"
)
pWriter
->
StartRecord
(
SPTREE_TYPE_VIDEO
);
}
else
if
(
nvPicPr
.
nvPr
.
media
.
is
<
WavAudioFile
>
()
||
nvPicPr
.
nvPr
.
media
.
is
<
AudioCD
>
())
{
pWriter
->
StartRecord
(
SPTREE_TYPE_AUDIO
);
}
else
pWriter
->
StartRecord
(
SPTREE_TYPE_PIC
);
}
...
...
@@ -1338,6 +1384,7 @@ namespace PPTX
blipFill
.
blip
.
Init
();
blipFill
.
blip
->
oleRid
=
oleObject
->
m_oId
->
get
();
}
node
.
ReadAttributeBase
(
L"spid"
,
oleObject
->
m_sShapeId
);
}
}
// namespace Logic
}
// namespace PPTX
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
View file @
89ce79da
...
...
@@ -259,7 +259,7 @@ namespace PPTX
void
toXmlWriterVML
(
NSBinPptxRW
::
CXmlWriter
*
pWriter
,
smart_ptr
<
PPTX
::
Theme
>&
oTheme
,
smart_ptr
<
PPTX
::
Logic
::
ClrMap
>&
oClrMap
,
bool
in_group
=
false
);
//----------------------------------------------------------------------
NvPicPr
nvPicPr
;
BlipFill
blipFill
;
mutable
BlipFill
blipFill
;
SpPr
spPr
;
nullable
<
ShapeStyle
>
style
;
//internal
...
...
ASCOfficeRtfFile/RtfFormatLib/Mac/RtfFormatLib.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -562,6 +562,7 @@
_IOS
,
DONT_WRITE_EMBEDDED_FONTS
,
AVS_USE_CONVERT_PPTX_TOCUSTOM_VML
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
@@ -595,6 +596,7 @@
_IOS
,
DONT_WRITE_EMBEDDED_FONTS
,
AVS_USE_CONVERT_PPTX_TOCUSTOM_VML
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
ASCOfficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
View file @
89ce79da
...
...
@@ -51,7 +51,7 @@ const std::list<std::string> TxtFile::readAnsiOrCodePage() // == readUtf8without
std
::
list
<
std
::
string
>
result
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
...
...
@@ -118,7 +118,7 @@ const std::list<std::wstring> TxtFile::readUnicode()
std
::
list
<
std
::
wstring
>
result
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
...
...
@@ -135,7 +135,7 @@ const std::list<std::wstring> TxtFile::readBigEndian()
std
::
list
<
std
::
wstring
>
result
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
...
...
@@ -160,7 +160,7 @@ const std::list<std::string> TxtFile::readUtf8()
std
::
list
<
std
::
string
>
result
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
...
...
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_structures/ODRAW/OfficeArtFOPTE.h
View file @
89ce79da
...
...
@@ -750,7 +750,7 @@ class pConnectionSitesDir : public OfficeArtFOPTE
virtual
void
ReadComplexData
(
XLS
::
CFRecord
&
record
);
IMsoArray
<
O
DRAW
::
FixedPoint
>
complex
;
IMsoArray
<
O
SHARED
::
FixedPoint
>
complex
;
};
class
pInscribe
:
public
OfficeArtFOPTE
...
...
ASCOfficeXlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.cpp
View file @
89ce79da
...
...
@@ -86,7 +86,7 @@ public:
std
::
pair
<
std
::
wstring
,
std
::
wstring
>
add_drawing_xml
(
std
::
wstring
const
&
content
,
xlsx_drawings_rels_ptr
rels
)
{
//todooo отсчеты номеров файлов отдельно
const
std
::
wstring
id
=
boost
::
lexical_cast
<
std
::
wstring
>
(
next_drawing_id_
++
);
const
std
::
wstring
id
=
std
::
to_wstring
(
next_drawing_id_
++
);
const
std
::
wstring
fileName
=
std
::
wstring
(
L"drawing"
)
+
id
+
L".xml"
;
drawings_
.
push_back
(
drawing_elm
(
fileName
,
content
,
rels
));
...
...
@@ -97,8 +97,8 @@ public:
std
::
pair
<
std
::
wstring
,
std
::
wstring
>
add_drawing_vml
(
std
::
wstring
const
&
content
,
xlsx_drawings_rels_ptr
rels
)
{
const
std
::
wstring
drawing_id
=
boost
::
lexical_cast
<
std
::
wstring
>
(
next_drawing_id_
++
);
const
std
::
wstring
file_vml_id
=
boost
::
lexical_cast
<
std
::
wstring
>
(
next_vml_file_id_
++
);
const
std
::
wstring
drawing_id
=
std
::
to_wstring
(
next_drawing_id_
++
);
const
std
::
wstring
file_vml_id
=
std
::
to_wstring
(
next_vml_file_id_
++
);
const
std
::
wstring
fileName
=
std
::
wstring
(
L"vmlDrawing"
)
+
file_vml_id
+
L".vml"
;
drawings_vml_
.
push_back
(
drawing_elm
(
fileName
,
content
,
rels
));
...
...
@@ -587,7 +587,7 @@ void xlsx_drawing_context::serialize_group()
if
(
drawing_state
->
name
.
empty
())
{
drawing_state
->
name
=
L"Group_"
+
boost
::
lexical_cast
<
std
::
wstring
>
(
count_object
);
drawing_state
->
name
=
L"Group_"
+
std
::
to_wstring
(
count_object
);
}
CP_XML_ATTR
(
L"name"
,
drawing_state
->
name
);
...
...
@@ -641,24 +641,24 @@ void xlsx_drawing_context::serialize_shape_comment(_drawing_state_ptr & drawing_
std
::
wstringstream
strmStyle
;
strmStyle
<<
L"position:absolute;"
;
strmStyle
<<
L"margin-left:"
<<
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
x
/
12700.
)
<<
L"pt;"
;
//in pt (1 pt = 12700 emu)
strmStyle
<<
L"margin-top:"
<<
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
y
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"width:"
<<
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
cx
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"height:"
<<
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
cy
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"z-index:"
<<
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
id
)
<<
L";"
;
strmStyle
<<
L"margin-left:"
<<
std
::
to_wstring
(
drawing_state
->
child_anchor
.
x
/
12700.
)
<<
L"pt;"
;
//in pt (1 pt = 12700 emu)
strmStyle
<<
L"margin-top:"
<<
std
::
to_wstring
(
drawing_state
->
child_anchor
.
y
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"width:"
<<
std
::
to_wstring
(
drawing_state
->
child_anchor
.
cx
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"height:"
<<
std
::
to_wstring
(
drawing_state
->
child_anchor
.
cy
/
12700.
)
<<
L"pt;"
;
strmStyle
<<
L"z-index:"
<<
std
::
to_wstring
(
drawing_state
->
id
)
<<
L";"
;
if
(
drawing_state
->
object
.
visible
==
false
)
strmStyle
<<
L"visibility:hidden;"
;
CP_XML_NODE
(
L"v:shape"
)
{
//CP_XML_ATTR(L"id" ,
boost::lexical_cast<std::wstring>
(drawing_state->object.id));
//CP_XML_ATTR(L"id" ,
std::to_wstring
(drawing_state->object.id));
CP_XML_ATTR
(
L"type"
,
L"_x0000_t202"
);
CP_XML_ATTR
(
L"fillcolor"
,
L"#"
+
drawing_state
->
fill
.
color
.
sRGB
);
if
(
drawing_state
->
line
.
width
>
0
)
{
CP_XML_ATTR
(
L"strokeweight"
,
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
line
.
width
)
+
L"pt"
);
CP_XML_ATTR
(
L"strokeweight"
,
std
::
to_wstring
(
drawing_state
->
line
.
width
)
+
L"pt"
);
}
CP_XML_ATTR
(
L"style"
,
strmStyle
.
str
());
...
...
@@ -770,9 +770,9 @@ void xlsx_drawing_context::serialize_vml_pic(_drawing_state_ptr & drawing_state,
std
::
wstring
style
=
std
::
wstring
(
L"position:absolute;margin-left:0;margin-top:0;"
);
//todooo сделать "покороче" значения .. достаточно 2 знаков после запятой
style
+=
std
::
wstring
(
L"width:"
)
+
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
cx
)
+
std
::
wstring
(
L"pt;"
);
style
+=
std
::
wstring
(
L"height:"
)
+
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
child_anchor
.
cy
)
+
std
::
wstring
(
L"pt;"
);
style
+=
std
::
wstring
(
L"z-index:"
)
+
boost
::
lexical_cast
<
std
::
wstring
>
(
drawing_state
->
id
)
+
std
::
wstring
(
L";"
);
style
+=
std
::
wstring
(
L"width:"
)
+
std
::
to_wstring
(
drawing_state
->
child_anchor
.
cx
)
+
std
::
wstring
(
L"pt;"
);
style
+=
std
::
wstring
(
L"height:"
)
+
std
::
to_wstring
(
drawing_state
->
child_anchor
.
cy
)
+
std
::
wstring
(
L"pt;"
);
style
+=
std
::
wstring
(
L"z-index:"
)
+
std
::
to_wstring
(
drawing_state
->
id
)
+
std
::
wstring
(
L";"
);
CP_XML_ATTR
(
L"style"
,
style
);
...
...
@@ -865,7 +865,7 @@ void xlsx_drawing_context::serialize_chart(_drawing_state_ptr & drawing_state, s
CP_XML_ATTR
(
L"id"
,
drawing_state
->
id
);
if
(
drawing_state
->
name
.
empty
())
drawing_state
->
name
=
L"Chart_"
+
boost
::
lexical_cast
<
std
::
wstring
>
(
count_object
);
drawing_state
->
name
=
L"Chart_"
+
std
::
to_wstring
(
count_object
);
CP_XML_ATTR
(
L"name"
,
drawing_state
->
name
);
if
(
!
drawing_state
->
description
.
empty
())
...
...
@@ -941,9 +941,9 @@ void xlsx_drawing_context::serialize_shape(_drawing_state_ptr & drawing_state)
if
(
drawing_state
->
name
.
empty
())
{
if
(
drawing_state
->
wordart
.
is
)
drawing_state
->
name
=
L"WordArt_"
+
boost
::
lexical_cast
<
std
::
wstring
>
(
count_object
);
drawing_state
->
name
=
L"WordArt_"
+
std
::
to_wstring
(
count_object
);
else
drawing_state
->
name
=
L"Shape_"
+
boost
::
lexical_cast
<
std
::
wstring
>
(
count_object
);
drawing_state
->
name
=
L"Shape_"
+
std
::
to_wstring
(
count_object
);
}
CP_XML_ATTR
(
L"name"
,
drawing_state
->
name
);
...
...
@@ -2232,7 +2232,7 @@ void xlsx_drawing_context::set_hyperlink(const std::wstring & link, const std::w
if
(
current_drawing_states
==
NULL
)
return
;
if
(
current_drawing_states
->
empty
())
return
;
std
::
wstring
sId
=
std
::
wstring
(
L"hId"
)
+
boost
::
lexical_cast
<
std
::
wstring
>
(
hlinks_
.
size
()
+
1
);
std
::
wstring
sId
=
std
::
wstring
(
L"hId"
)
+
std
::
to_wstring
(
hlinks_
.
size
()
+
1
);
std
::
wstring
link_correct
=
link
;
if
(
!
is_external
)
link_correct
=
std
::
wstring
(
L"#"
)
+
link_correct
;
...
...
@@ -2423,7 +2423,7 @@ void xlsx_drawing_context::set_custom_connection(std::vector<ODRAW::MSOPOINT>& p
current_drawing_states
->
back
()
->
custom_connection
=
points
;
}
void
xlsx_drawing_context
::
set_custom_connectionDir
(
std
::
vector
<
O
DRAW
::
FixedPoint
>&
points
)
void
xlsx_drawing_context
::
set_custom_connectionDir
(
std
::
vector
<
O
SHARED
::
FixedPoint
>&
points
)
{
if
(
current_drawing_states
==
NULL
)
return
;
if
(
current_drawing_states
->
empty
())
return
;
...
...
ASCOfficeXlsFile2/source/XlsXlsxConverter/xlsx_drawing_context.h
View file @
89ce79da
...
...
@@ -182,7 +182,7 @@ public:
std
::
vector
<
ODRAW
::
MSOPOINT
>
custom_verticles
;
std
::
vector
<
ODRAW
::
ADJH
>
custom_adjustHandles
;
std
::
vector
<
ODRAW
::
MSOPOINT
>
custom_connection
;
std
::
vector
<
O
DRAW
::
FixedPoint
>
custom_connectionDir
;
std
::
vector
<
O
SHARED
::
FixedPoint
>
custom_connectionDir
;
std
::
vector
<
ODRAW
::
MSORECT
>
custom_inscribe
;
_rect
custom_rect
;
...
...
@@ -413,7 +413,7 @@ public:
void
set_custom_adjustValues
(
std
::
vector
<
_CP_OPT
(
int
)
>
&
values
);
void
set_custom_path
(
int
type_path
);
void
set_custom_connection
(
std
::
vector
<
ODRAW
::
MSOPOINT
>
&
points
);
void
set_custom_connectionDir
(
std
::
vector
<
O
DRAW
::
FixedPoint
>&
points
);
void
set_custom_connectionDir
(
std
::
vector
<
O
SHARED
::
FixedPoint
>&
points
);
void
set_custom_inscribe
(
std
::
vector
<
ODRAW
::
MSORECT
>
&
rects
);
void
set_custom_x_limo
(
int
val
);
void
set_custom_y_limo
(
int
val
);
...
...
Common/DocxFormat/Mac/DocxFormatLib.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -213,6 +213,7 @@
690FE07F1E9BBA15004B26D0
/* DrawingExt.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
690FE07B1E9BBA15004B26D0
/* DrawingExt.h */
;
};
690FE0821E9BBA23004B26D0
/* DiagramData.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
690FE0801E9BBA23004B26D0
/* DiagramData.h */
;
};
690FE0831E9BBA23004B26D0
/* DiagramDrawing.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
690FE0811E9BBA23004B26D0
/* DiagramDrawing.h */
;
};
691C3E131F20C3D500F1775E
/* File.cpp in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
691C3E121F20C3D500F1775E
/* File.cpp */
;
};
69F181EC1C7734A700B2952B
/* strings_hack_printf.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
69F181EA1C7734A700B2952B
/* strings_hack_printf.h */
;
};
/* End PBXBuildFile section */
...
...
@@ -431,6 +432,7 @@
690FE07B1E9BBA15004B26D0
/* DrawingExt.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
DrawingExt.h
;
sourceTree
=
"<group>"
;
};
690FE0801E9BBA23004B26D0
/* DiagramData.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
DiagramData.h
;
sourceTree
=
"<group>"
;
};
690FE0811E9BBA23004B26D0
/* DiagramDrawing.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
DiagramDrawing.h
;
sourceTree
=
"<group>"
;
};
691C3E121F20C3D500F1775E
/* File.cpp */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
sourcecode.cpp.objcpp.preprocessed
;
fileEncoding
=
4
;
path
=
File.cpp
;
sourceTree
=
"<group>"
;
};
69F181EA1C7734A700B2952B
/* strings_hack_printf.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
strings_hack_printf.h
;
path
=
../../Common/DocxFormat/Source/Base/strings_hack_printf.h
;
sourceTree
=
"<group>"
;
};
/* End PBXFileReference section */
...
...
@@ -901,6 +903,7 @@
17E6B3BD1AC4298500F28F8B
/* Base64.h */
,
17E6B3BE1AC4298500F28F8B
/* Directory.h */
,
17E6B3BF1AC4298500F28F8B
/* File.h */
,
691C3E121F20C3D500F1775E
/* File.cpp */
,
17E6B3C01AC4298500F28F8B
/* Path.h */
,
17E6B3C11AC4298500F28F8B
/* Types.h */
,
69F181EA1C7734A700B2952B
/* strings_hack_printf.h */
,
...
...
@@ -1163,6 +1166,7 @@
17C1FBAE1ACC4250006B99B3
/* oMath.cpp in Sources */
,
17C1FBAF1ACC4250006B99B3
/* ChartSerialize.cpp in Sources */
,
17C1FBB11ACC4250006B99B3
/* Position.cpp in Sources */
,
691C3E131F20C3D500F1775E
/* File.cpp in Sources */
,
17C1FBB21ACC4250006B99B3
/* Vml.cpp in Sources */
,
17C1FBB31ACC4250006B99B3
/* unicode_util.cpp in Sources */
,
17C1FBB41ACC4250006B99B3
/* FldSimple.cpp in Sources */
,
...
...
@@ -1202,6 +1206,7 @@
unix
,
_IOS
,
DONT_WRITE_EMBEDDED_FONTS
,
_XCODE
,
);
GCC_SYMBOLS_PRIVATE_EXTERN
=
NO
;
HEADER_SEARCH_PATHS
=
(
...
...
@@ -1242,6 +1247,7 @@
unix
,
_IOS
,
DONT_WRITE_EMBEDDED_FONTS
,
_XCODE
,
);
GCC_SYMBOLS_PRIVATE_EXTERN
=
NO
;
HEADER_SEARCH_PATHS
=
(
...
...
DesktopEditor/common/File.cpp
0 → 100644
View file @
89ce79da
/*
* (c) Copyright Ascensio System SIA 2010-2017
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
#include "File.h"
#ifdef _IOS
#import <Foundation/Foundation.h>
static
const
char
*
fileSystemRepresentation
(
const
std
::
wstring
&
sFileName
)
{
NSString
*
path
=
[[
NSString
alloc
]
initWithBytes
:
(
char
*
)
sFileName
.
data
()
length:
sFileName
.
size
()
*
sizeof
(
wchar_t
)
encoding:
CFStringConvertEncodingToNSStringEncoding
(
kCFStringEncodingUTF32LE
)];
return
(
const
char
*
)[
path
fileSystemRepresentation
];
}
namespace
NSFile
{
bool
CFileBinary
::
OpenFile
(
const
std
::
wstring
&
sFileName
,
bool
bRewrite
)
{
m_pFile
=
fopen
(
fileSystemRepresentation
(
sFileName
),
bRewrite
?
"rb+"
:
"rb"
);
if
(
NULL
==
m_pFile
)
return
false
;
fseek
(
m_pFile
,
0
,
SEEK_END
);
m_lFileSize
=
ftell
(
m_pFile
);
fseek
(
m_pFile
,
0
,
SEEK_SET
);
m_lFilePosition
=
0
;
if
(
0
<
sFileName
.
length
())
{
if
(((
wchar_t
)
'/'
)
==
sFileName
.
c_str
()[
sFileName
.
length
()
-
1
])
m_lFileSize
=
0x7FFFFFFF
;
}
unsigned
int
err
=
0x7FFFFFFF
;
unsigned
int
cur
=
(
unsigned
int
)
m_lFileSize
;
if
(
err
==
cur
)
{
CloseFile
();
return
false
;
}
return
true
;
}
bool
CFileBinary
::
CreateFileW
(
const
std
::
wstring
&
sFileName
)
{
m_pFile
=
fopen
(
fileSystemRepresentation
(
sFileName
),
"wb"
);
if
(
NULL
==
m_pFile
)
return
false
;
m_lFilePosition
=
0
;
return
true
;
}
}
#endif
DesktopEditor/common/File.h
View file @
89ce79da
...
...
@@ -618,6 +618,14 @@ namespace NSFile
{
return
m_lFilePosition
;
}
#ifdef _IOS
bool
OpenFile
(
const
std
::
wstring
&
sFileName
,
bool
bRewrite
=
false
);
bool
CreateFileW
(
const
std
::
wstring
&
sFileName
);
#else
bool
OpenFile
(
const
std
::
wstring
&
sFileName
,
bool
bRewrite
=
false
)
{
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(_WIN64)
...
...
@@ -675,6 +683,9 @@ namespace NSFile
m_lFilePosition
=
0
;
return
true
;
}
#endif
bool
CreateTempFile
()
{
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(_WIN64)
...
...
DesktopEditor/ios_projects/PdfWriter/PdfWriter.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -251,7 +251,7 @@
7C560F671AA71A91000E5860
/* Project object */
=
{
isa
=
PBXProject
;
attributes
=
{
LastUpgradeCheck
=
0
70
0
;
LastUpgradeCheck
=
0
83
0
;
ORGANIZATIONNAME
=
"Ascensio System"
;
TargetAttributes
=
{
7C560F6E1AA71A91000E5860
=
{
...
...
@@ -346,8 +346,10 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE
=
YES_ERROR
;
CLANG_WARN_EMPTY_BODY
=
YES
;
CLANG_WARN_ENUM_CONVERSION
=
YES
;
CLANG_WARN_INFINITE_RECURSION
=
YES
;
CLANG_WARN_INT_CONVERSION
=
YES
;
CLANG_WARN_OBJC_ROOT_CLASS
=
YES_ERROR
;
CLANG_WARN_SUSPICIOUS_MOVE
=
YES
;
CLANG_WARN_UNREACHABLE_CODE
=
YES
;
CLANG_WARN__DUPLICATE_METHOD_MATCH
=
YES
;
COPY_PHASE_STRIP
=
NO
;
...
...
@@ -355,6 +357,7 @@
ENABLE_TESTABILITY
=
YES
;
GCC_C_LANGUAGE_STANDARD
=
gnu99
;
GCC_DYNAMIC_NO_PIC
=
NO
;
GCC_NO_COMMON_BLOCKS
=
YES
;
GCC_OPTIMIZATION_LEVEL
=
0
;
GCC_PREPROCESSOR_DEFINITIONS
=
(
"DEBUG=1"
,
...
...
@@ -388,14 +391,17 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE
=
YES_ERROR
;
CLANG_WARN_EMPTY_BODY
=
YES
;
CLANG_WARN_ENUM_CONVERSION
=
YES
;
CLANG_WARN_INFINITE_RECURSION
=
YES
;
CLANG_WARN_INT_CONVERSION
=
YES
;
CLANG_WARN_OBJC_ROOT_CLASS
=
YES_ERROR
;
CLANG_WARN_SUSPICIOUS_MOVE
=
YES
;
CLANG_WARN_UNREACHABLE_CODE
=
YES
;
CLANG_WARN__DUPLICATE_METHOD_MATCH
=
YES
;
COPY_PHASE_STRIP
=
YES
;
ENABLE_NS_ASSERTIONS
=
NO
;
ENABLE_STRICT_OBJC_MSGSEND
=
YES
;
GCC_C_LANGUAGE_STANDARD
=
gnu99
;
GCC_NO_COMMON_BLOCKS
=
YES
;
GCC_WARN_64_TO_32_BIT_CONVERSION
=
YES
;
GCC_WARN_ABOUT_RETURN_TYPE
=
YES_ERROR
;
GCC_WARN_UNDECLARED_SELECTOR
=
YES
;
...
...
@@ -431,6 +437,7 @@
_IOS
,
FILTER_FLATE_DECODE_ENABLED
,
_ARM_ALIGN_
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
@@ -470,6 +477,7 @@
_IOS
,
FILTER_FLATE_DECODE_ENABLED
,
_ARM_ALIGN_
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
DesktopEditor/xml/mac/libxml2.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -566,6 +566,18 @@
isa
=
XCBuildConfiguration
;
buildSettings
=
{
DEVELOPMENT_TEAM
=
2WH24U26GJ
;
GCC_PREPROCESSOR_DEFINITIONS
=
(
UNICODE
,
_UNICODE
,
USE_LITE_READER
,
_USE_LIBXML2_READER_
,
_USE_XMLLITE_READER_
,
LINUX
,
MAC
,
_IOS
,
LIBXML_READER_ENABLED
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
...
...
@@ -582,6 +594,18 @@
isa
=
XCBuildConfiguration
;
buildSettings
=
{
DEVELOPMENT_TEAM
=
2WH24U26GJ
;
GCC_PREPROCESSOR_DEFINITIONS
=
(
UNICODE
,
_UNICODE
,
USE_LITE_READER
,
_USE_LIBXML2_READER_
,
_USE_XMLLITE_READER_
,
LINUX
,
MAC
,
_IOS
,
LIBXML_READER_ENABLED
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
,
...
...
HtmlFile/Mac/HtmlFile/HtmlFile.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -241,6 +241,7 @@
_IOS
,
NOMINMAX
,
LINUX
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
@@ -271,6 +272,7 @@
_IOS
,
NOMINMAX
,
LINUX
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
OfficeUtils/OfficeUtils.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -36,7 +36,7 @@
69676CB81CA58BBD00D7A1D1
/* OfficeUtils.cpp */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
path
=
OfficeUtils.cpp
;
sourceTree
=
"<group>"
;
};
69676CB91CA58BBD00D7A1D1
/* OfficeUtils.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
OfficeUtils.h
;
sourceTree
=
"<group>"
;
};
69676CBA1CA58BBD00D7A1D1
/* OfficeUtilsCommon.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
OfficeUtilsCommon.h
;
sourceTree
=
"<group>"
;
};
69676CBB1CA58BBD00D7A1D1
/* ZipUtilsCP.cpp */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
path
=
ZipUtilsCP.cpp
;
sourceTree
=
"<group>"
;
};
69676CBB1CA58BBD00D7A1D1
/* ZipUtilsCP.cpp */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
sourcecode.cpp.objcpp.preprocessed
;
fileEncoding
=
4
;
path
=
ZipUtilsCP.cpp
;
sourceTree
=
"<group>"
;
};
69676CBC1CA58BBD00D7A1D1
/* ZipUtilsCP.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
ZipUtilsCP.h
;
sourceTree
=
"<group>"
;
};
69676D291CA58BBD00D7A1D1
/* crypt.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
path
=
crypt.h
;
sourceTree
=
"<group>"
;
};
69676D2A1CA58BBD00D7A1D1
/* ioapi.c */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.c
;
path
=
ioapi.c
;
sourceTree
=
"<group>"
;
};
...
...
@@ -292,6 +292,7 @@
MAC
,
unix
,
_IOS
,
_XCODE
,
);
IPHONEOS_DEPLOYMENT_TARGET
=
8.2
;
OTHER_LDFLAGS
=
"-ObjC"
;
...
...
@@ -309,6 +310,7 @@
MAC
,
unix
,
_IOS
,
_XCODE
,
);
IPHONEOS_DEPLOYMENT_TARGET
=
8.2
;
OTHER_LDFLAGS
=
"-ObjC"
;
...
...
OfficeUtils/src/ZipUtilsCP.cpp
View file @
89ce79da
...
...
@@ -36,6 +36,10 @@
#include "../../DesktopEditor/common/Directory.h"
#include "../../DesktopEditor/common/Path.h"
#if _IOS
#import <Foundation/Foundation.h>
#endif
#define WRITEBUFFERSIZE 8192
#define READBUFFERSIZE 8192
...
...
@@ -43,6 +47,13 @@ namespace ZLibZipUtils
{
static
zipFile
zipOpenHelp
(
const
wchar_t
*
filename
)
{
#ifdef _IOS
NSString
*
path
=
[[
NSString
alloc
]
initWithBytes
:
filename
length:
wcslen
(
filename
)
*
sizeof
(
*
filename
)
encoding:
NSUTF32LittleEndianStringEncoding
];
return
zipOpen
(
(
const
char
*
)[
path
fileSystemRepresentation
],
APPEND_STATUS_CREATE
);
#endif
#if defined(_WIN32) || defined (_WIN64)
zipFile
zf
=
zipOpen
(
filename
,
APPEND_STATUS_CREATE
);
#else
...
...
@@ -56,6 +67,13 @@ namespace ZLibZipUtils
}
static
unzFile
unzOpenHelp
(
const
wchar_t
*
filename
)
{
#ifdef _IOS
NSString
*
path
=
[[
NSString
alloc
]
initWithBytes
:
filename
length:
wcslen
(
filename
)
*
sizeof
(
*
filename
)
encoding:
NSUTF32LittleEndianStringEncoding
];
return
unzOpen
((
const
char
*
)[
path
fileSystemRepresentation
]);
#endif
#if defined(_WIN32) || defined (_WIN64)
unzFile
uf
=
unzOpen
(
filename
);
#else
...
...
UnicodeConverter/build/UnicodeConverter/UnicodeConverter.xcodeproj/project.pbxproj
View file @
89ce79da
...
...
@@ -232,6 +232,7 @@
MAC
,
unix
,
_IOS
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
@@ -260,6 +261,7 @@
MAC
,
unix
,
_IOS
,
_XCODE
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
...
...
X2tConverter/build/Qt/X2tConverter.pri
100644 → 100755
View file @
89ce79da
...
...
@@ -7,7 +7,7 @@
QT -= core
QT -= gui
VERSION = 2.4.4
67
.0
VERSION = 2.4.4
70
.0
DEFINES += INTVER=$$VERSION
TARGET = x2t
...
...
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