2.0のSDK
OpenOffice.org SDKの入手
OpenOffice.orgのダウンロードミラーリスト http://www.ring.gr.jp/pub/misc/openoffice/stable/ OpenOffice.org SDKのインストール
SDKファイルをダウンロードしたら、適当なディレクトリで解凍します。 また、docsディレクトリのinstall.htmlに導入方法が書いてあります。これは、表紙からもたどりつけます(本ページで一部翻訳中)。 Installation guide(導入ガイド)
1.1.0 SDK Installation guide(docs/install.html) Copyright 2003 Sun Microsystems, Inc. The OpenOffice.org 1.1 SDK comes with a set of development tools, base libraries and jar files which can be used to develop Java/C++ components, to embed the OpenOffice.org 1.1 application in your own programs, or to use the API (scripting or remote control the office). For a complete working environment, we have some additional requirements: OpenOffice.org 1.1 SDKは、あなたがOpenOffice.orgアプリケーションを開発するための、開発ツール・ベースライブラリ・Java/C++コンポーネンツを開発するのに使用できるjarファイル、スクリプトかリモートでOOoを利用するためのAPIを含んでいます。 本格的な開発のためには、さらに次のものが必要です。 必要なもの
The SDK works on top of an existing office installation and uses the same libraries as the office installation.
A JDK is necessary for developing Java components or applications. An appropriate Java SDK can be found on http://java.sun.com/products.
A C++ compiler is necessary for developing C++ components or applications. UNO depends on a compiler dependent language binding so that we use the appropriate compiler where a language binding exists:
GNU make is used to build the examples of the SDK. GNU make is available from http://www.gnu.org, インストール
The SDK provides a configure script (Unix and WindowsNT/2000/XP) that asks for relevant directories (SDK, StarOffice, GNU make, Java, C++). After completing the configure script a new script will be created (WindowsNT//2000/XP and UNIX) to set the necessary environment variables for using the SDK and the required tools. SDKには、適切なディレクトリ(SDK, StarOffice, GNU make, Java, C++)を設定する設定スクリプト(Unix and WindowsNT/2000/XP)が付属しています。スクリプトによる設定が終わると、SDKとツールに必要な設定が行われます(訳注:テキトー)。
Other versions of the operating system Windows should use the batch program <OO_SDK_HOME>setsdkenv_windows.bat directly and adopt it to their local environment. これ以外のバージョンのWindowsでは、<OO_SDK_HOME>setsdkenv_windows.batを直接実行して、設定を行います。 設定内容
The first time you use the batch program, you must prepare it for your environment. Edit the script and set the following variables: 最初に、あなたの環境に合わせるため、バッチプログラムを実行します。必要なら、スクリプトを編集し、設定内容を変更します。
path to an existing StarOffice™ or OpenOffice.org installation, e.g. "/usr/local/StarOffice6.0"
path to the SDK root directory, e.g. "/usr/local/StarOffice6.0SDK"
path to the JDK
path to the C++ compiler (under windows the directory where the vcvar32.bat file can be found). The C++ compiler is optional and only necessary for building the C++ examples.
path to GNU make.
if this variable is set, the component examples will be automatically deployed into the Office installation referenced by OFFICE_HOME. See also chapter "UNO Package installation" from the Developer's Guide. If you do not want to use the script to set your working environment, you must set the appropriate environment variables by yourself. The script sets the following environment variables: Environment variables for UNIX
UNIXの環境変数 Solaris
This variable is used to register example components automatically in your Office installation. If you do not want automatic registration, please comment this variable out in the script.
The LD_LIBRARY_PATH will be set or will be extended by the office program path, the platform dependent lib directory for some additional libraries.
The PATH variable will be extended by the paths for the SDK development tools, the compiler, the JDK and GNU make. Linux
This variable is used to register example components automatically in your Office installation. If you do not want automatic registration, comment this variable out in the script.
The LD_LIBRARY_PATH will be set or will be extended by the office program path, the platform dependent lib directory for some additional libraries.
The PATH variable will be extended by the paths for the SDK development tools, the compiler, the JDK and GNU make. Environment variables for Windows
Windowsの環境変数 In addition to setting these environment variables, the script calls the "vcvar32.bat" batch file, which is provided by the Microsoft Developer Studio to set the necessary environment variables for the compiler.
This variable is used to register example components automatically in your Office installation. If you don't want automatic registration, please comment this variable out in the script.
The PATH variable will be extended by the paths for the SDK development tools, the compiler, the JDK, GNU make and the <OFFICE_PROGRAM_PATH>.
The LIB variable will be extended by the path to the import libraries which are necessary for windows. Additionally to setting these environment variables the script calls the "vcvar32.bat" batch file which is provided by the Microsoft Developer Studio to set the necessary environment variables for the compiler. |