office-gobmx/sd
Gabor Kelemen d3e1ada454 Remove unused using declarations in oox...xmlsecurity
Found by:
run-clang-tidy-10 -checks=-*,misc-unused-using-decls

Change-Id: I3e95791e223ef01e140a6217e29a9efae428a784
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90876
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2020-03-25 09:13:27 +01:00
..
inc Revert "loplugin:constfields in sd" 2020-03-12 17:45:54 +01:00
qa pdfium: support for pages when using PDF import with pdfium 2020-03-18 09:23:15 +01:00
res
sdi sd lok: Implement execution of SID_SPELLCHECK_APPLY_SUGGESTION 2020-03-17 11:17:25 +01:00
source Remove unused using declarations in oox...xmlsecurity 2020-03-25 09:13:27 +01:00
uiconfig give the break dialog more space for its numbers 2020-03-18 14:16:03 +01:00
util prefix is unused when all implementations have constructors 2020-01-14 22:26:39 +01:00
workben remove some useless comment lines 2019-12-03 12:46:27 +01:00
xml
xsl
AllLangMoTarget_sd.mk
CppunitTest_sd_activex_controls_tests.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_dialogs_test.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_export_ooxml1.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_export_ooxml2.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_export_tests.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_filters_test.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_html_export_tests.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_import_tests.mk pdfium: Make Insert -> Image... use VectorGraphicData for PDF. 2020-03-17 22:01:15 +01:00
CppunitTest_sd_import_tests_smartart.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_misc_tests.mk Add missing test dependency on instdir/share/config/images_*.zip 2020-02-07 09:12:32 +01:00
CppunitTest_sd_svg_export_tests.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_tiledrendering.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_uiimpress.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
CppunitTest_sd_uimpress.mk gbuild: Treat 'DBUS_GLIB_CFLAGS' as includes, not defines 2019-10-17 16:04:19 +02:00
IwyuFilter_sd.yaml find-unneeded-includes: ignore extra recommendations 2019-10-04 09:08:49 +02:00
JunitTest_sd_unoapi.mk
Library_sd.mk SdDocPreviewWin is unused 2020-01-23 09:52:07 +01:00
Library_sdd.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
Library_sdfilt.mk use common PCH in sd/ 2019-10-04 09:00:18 +02:00
Library_sdui.mk do not require $(SRCDIR) in every gb_Library_set_precompiled_header 2019-09-23 10:47:25 +02:00
Makefile
Module_sd.mk tdf#111522 svx: fix crash with view1 doing text edit and view2 doing sdr undo 2019-06-05 23:20:38 +02:00
Package_opengl.mk
Package_web.mk
Package_xml.mk
README
README_REMOTE
UIConfig_sdraw.mk tdf#124258 Draw NB groupedbar_full not available for draw 2019-12-04 07:59:09 +01:00
UIConfig_simpress.mk weld GlueEscDirLB ItemWindow 2020-02-07 14:11:27 +01:00
UITest_impress_tests.mk
UITest_sd_findReplace.mk

The core directory for the impress/draw applications.

Think of impress as a hack on top of draw.


sd module contains impress/draw specific code, non-shared UI and part
of ppt and pptx filter, few other filters too.

the slideshow UI lives here as well, the slideshow engine is in
slideshow module though (including the 3D transitions engine
slideshow/source/engine/opengl).

the most used filters are ODF's odp, binary ppt and OOXML's
pptx. their locations are listed below:

 * odp import and export filters are in xmloff module (mostly xmloff/source/draw)

 * ppt import is in sd/source/filter/ppt (big shared chunks are also in svx)
 * ppt export is in sd/source/filter/eppt (big shared chunks are also in svx)

 * pptx import is in oox/source/ppt (and uses a lot of
   oox/source/drawingml and oox/source/*)
 * pptx export is in sd/source/filter/eppt (mostly in pptx-* source
   files) and shared part is in oox/source/export

== PPTX export/import filters ==

PPTX export filter is split into 2 parts. Impress related part is in
sd/source/filter/eppt/pptx-* and the other part is in
oox/source/export/ because it contains mostly code related to
DrawingML, which is shared with writer and calc ooxml export.

The export filter was written in 2009 IIRC and was not much extended
feature-wise lately.

FUTURE work: add custom shapes export (see below). enhance text
output, we don't write text style for indentation levels now, need to
export a:lvl1pPr, a:lvl2pPr, ... elements.

PPTX import was written by Sun/Oracle and then extended in LibreOffice
a lot during bug fixing. It is located in oox/source/ppt and
oox/source/drawingml. The areas with most bugs (at least until today)
were shape placeholders and text style inheritance.