tdf#108518 partial revert tdf#64222 sw: better DOCX im/export
[LibreOffice.git] / extensions / README
blob38df77e37fba071c0c43d9504c589661f09db9b1
1 This module contains a grab-bag of unrelated misc. libraries, *none* of which is an extension.
3 == Application online update checking ==
5 When we start LO, first InitUpdateCheckJobThread is created, via
6 UpdateCheckJob::execute() (from extensions/source/update/check/updatecheckjob.cxx),
7 as a reaction to a "onFirstVisibleTask" event. It waits 25 seconds (so that it
8 does not interfere with the startup itself), and then calls
9 UpdateCheck::initialize() (from extensions/source/update/check/updatecheck.cxx).
11 This creates one more thread, UpdateCheckThread, that regularly checks whether
12 we have reached the time when we should ask for the update.  If yes, asks for
13 that, and shows the download button in the menu (if the new update is
14 available).
16 == OLE automation bridge ==
18 A bridge between "OLE automation" and UNO, so you can use UNO services
19 from JScript, VBScript, etc.
21 https://www.openoffice.org/udk/common/man/spec/ole_bridge.html
23 See udkapi/com/sun/star/bridge/oleautomation/ApplicationRegistration.idl
25 This is initialized in Desktop::Main() in Desktop::OpenClients_Impl()
26 by creating the service "com.sun.star.bridge.OleApplicationRegistration",
27 which is implemented by OleServer_Impl.
29 See extensions/source/ole/
31 == ActiveX control ==
33 This allows embedding LO into a Win32 application as an ActiveX control.
34 See extensions/source/activex/
36 == Spotlight provider ==
38 On macOS, this allows indexing ODF documents with Spotlight.
39 See extensions/source/macosx/spotlight/
41 == Scanner support ==
43 You can scan from LibreOffice, using platform specific backends like TWAIN/SANE.
44 See extensions/source/scanner/