sc: filter: rtf: use a separate document stream
[LibreOffice.git] / sdext / README.md
blob86cb1d2af7ca64903842a21e1e97fa45eb3c45be
1 # Extensions for the Impress and Draw Applications
3 `source/pdfimport/` - PDF import
5 Uses an external poppler process to parse and handle PDF
6 import as draw shapes.
8 `source/minimizer/` - Presentation Minimizer
10 Shrinks presentations by down-scaling images, and removing
11 extraneous eg. embedded OLE content.
13 `source/presenter/` - Impress / Presenter Console.
15 This couples to `sd/` in rather strange ways. Its design is
16 heavily mangled by an attempt to use only UNO interfaces
17 which are highly inadequate. This leads to somewhat
18 ridiculous situations. Activating in response to
19 configuration keys (for example), and the `XPresenterHelper`
20 interface inside `sd/` used to create and manage windows.
22 The main screen uses a hardware-accelerated
23 canvas (e.g. cairo canvas), while the entire secondary screen
24 uses a VCL-canvas that is created in
25 `sd::framework::FullScreenPane::CreateCanvas()`.
27 The secondary screen contains 3 `Pane`s which each have
28 2 `XWindows` for the border area & the actual content,
29 and each content Pane is backed by a `sd::presenter::PresenterCanvas`
30 that wraps the `FullScreenPane`'s canvas and does clipping.