lok: avoid expensive fetching of a property.
[LibreOffice.git] / sd / README
blobc250d81e7c6c09e4c1dcfb3ebefe2289e705f993
1 The core directory for the impress/draw applications.
3 Think of impress as a hack on top of draw.
6 sd module contains impress/draw specific code, non-shared UI and part
7 of ppt and pptx filter, few other filters too.
9 the slideshow UI lives here as well, the slideshow engine is in
10 slideshow module though (including the 3D transitions engine
11 slideshow/source/engine/opengl).
13 the most used filters are ODF's odp, binary ppt and OOXML's
14 pptx. their locations are listed below:
16  * odp import and export filters are in xmloff module (mostly xmloff/source/draw)
18  * ppt import is in sd/source/filter/ppt (big shared chunks are also in svx)
19  * ppt export is in sd/source/filter/eppt (big shared chunks are also in svx)
21  * pptx import is in oox/source/ppt (and uses a lot of
22    oox/source/drawingml and oox/source/*)
23  * pptx export is in sd/source/filter/eppt (mostly in pptx-* source
24    files) and shared part is in oox/source/export
26 == PPTX export/import filters ==
28 PPTX export filter is split into 2 parts. Impress related part is in
29 sd/source/filter/eppt/pptx-* and the other part is in
30 oox/source/export/ because it contains mostly code related to
31 DrawingML, which is shared with writer and calc ooxml export.
33 The export filter was written in 2009 IIRC and was not much extended
34 feature-wise lately.
36 FUTURE work: add custom shapes export (see below). enhance text
37 output, we don't write text style for indentation levels now, need to
38 export a:lvl1pPr, a:lvl2pPr, ... elements.
40 PPTX import was written by Sun/Oracle and then extended in LibreOffice
41 a lot during bug fixing. It is located in oox/source/ppt and
42 oox/source/drawingml. The areas with most bugs (at least until today)
43 were shape placeholders and text style inheritance.