tdf#132105: sc_subsequent_filters_test: Add unittest
[LibreOffice.git] / sdext / README
blob63bfd6d0a793fcdf893167b03c8c1eb9a876e38d
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 "Panes" 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.