sc lok: cope with non 100% zoom better.
[LibreOffice.git] / scripting / README
blob3a019e27d2544c47b7ea1e2eef924a26228c1cbc
1 This module provides the source code for the Scripting Framework.
3 For more information on the Scripting Framework, see the project web page:
4 [https://framework.openoffice.org/scripting/]
6 This module uses astyle to keep consistent java coding style. Please run
8 ./Format_java_code.sh
10 before committing.
12 == Source Code Structure ==
14 The following directories contain the source code currently used
15 by the Scripting Framework:
17 - source/provider
19 C++ source for the implementations of the com.sun.star.script.provider.*
20 and com.sun.star.script.browse.* UNO types. These types are used for
21 browsing and executing scripts.
23 - source/protocolhandler
25 C++ for a ProtocolHandler implementation that handles vnd.sun.star.script
26 URIs and dispatches them for execution to the Scripting Framework.
28 - source/basprov
30 C++ implementation of the LanguageScriptProvider UNO service for Basic
32 - source/dlgprov
34 C++ implementation of the DialogProvider UNO service used for loading
35 UNO dialogs from various languages
37 - source/pyprov
39 LanguageScriptProvider for Python
41 - java/com/sun/star/script/framework/provider
43 Implementation of an abstract base class ScriptProvider which provides
44 core methods for implementing Java based LanguageScriptProvider implementations
46 - java/com/sun/star/script/framework/provider/*
48 BeanShell, JavaScript and Java LanguageScriptProvider implementations
50 - java/com/sun/star/script/framework/browse/*
52 BrowseNode implementations for the Java based LanguageScriptProviders
54 - java/com/sun/star/script/framework/io
55 - java/com/sun/star/script/framework/container
57 Classes for performing script IO
59 - examples
61 Example scripts in BeanShell, JavaScript, Java and Python
64 == Deprecated Code ==
66 - java/org/openoffice/*
68 Support for developing scripts in IDEs such as NetBeans.