Skip to content

ONLYOFFICE/document-builder-samples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Document Builder samples

About

Here you can find some code samples for Document Builder library in different programming languages:

  1. C++
  2. C# (.NET)
  3. Python
  4. Java

Project generator: configure.py

For running C++ and C# code samples use python script configure/configure.py which is able to generate:

  • Visual Studio project files
  • Qt project file
  • Makefile

To use configure.py you need to specify following options:

  1. Which project files to generate: --vs, --qt or --make. Several options are available at the same time, but some of them are not supported on all platforms. In case you provide none of these options, all available projects will be generated.

  2. Test samples with --test TEST. Some available options:

    • --test all – generate projects for both C++ and C#.
    • --test cpp – generate projects only for C++ samples
    • --test cs – generate projects only for C# samples.
    • --test cpp/creating_basic_form – generate only project for the specified sample.

    Several test options are available at the same time. To see all available TEST options call configure.py -l.

  3. Directory to the Document Builder with --dir DIR. If Document Builder is not installed in default path you have to provide path to it.

Generated files will be located in the out directory inside of the corresponding test folders.

Running C++ samples

Visual Studio

NOTE: Only available on Windows

  1. Use configure.py to generate VS project files. For example:

    python configure.py --vs --test cpp/creating_basic_form --test cpp/creating_advanced_form
  2. Open .sln file in Visual Studio. It will prompt you to retarget Windows SDK and VS toolset to your installed version – click "OK".

  3. The solution is ready to be built and run. Documents will be created in the project files directory.

Qt

  1. Use configure.py to generate Qt project files. For example:

    python configure.py --qt --test cpp
  2. Open .pro file in Qt Creator.

  3. The project is ready to be built and run. Documents will be created in the build directory.

Makefile

NOTE: Only available on Linux and Mac OS.

  1. Use configure.py to generate Makefile. For example:

    python configure.py --make --test cpp/filling_spreadsheet
  2. Go to the directory with generated Makefile:

    cd ../out/cpp/filling_spreadsheet
  3. Call

    make

    make will build and run the executable. Documents will be created in the same directory as Makefile is.

Running C# samples

NOTE: Only available on Windows with Visual Studio and .NET SDK installed

Visual Studio

  1. Use configure.py to generate VS project files. For example:

    python configure.py --vs --test cs
  2. Open .sln file in Visual Studio. Depending on your installed .NET SDK version you may need to set different target framework by setting it in Visual Studio project properties or editing it directly in the .csproj file.

  3. The solution is ready to be built and run. Documents will be created in the project files directory.

Running Python samples

  1. Execute configure.py with --test python:

    python configure.py --test python

    Provide directory to Document Builder with --dir if necessary.

    It is needed for generating auxiliary module containing the path to Document Builder.

  2. Go to test directory:

    cd python/creating_basic_form
  3. Run the script

    python main.py

    Documents will be created in the test directory.

Running Java samples

NOTE: JDK 8 or newer is required

  1. Go to test directory:

    cd java/creating_presentation
  2. Compile the Program.java providing the path to docbuilder.jar, located in the Document Builder directory:

    javac -cp "C:\Program Files\ONLYOFFICE\DocumentBuilder\docbuilder.jar" Program.java
  3. .class file should appear in the directory. Run the program:

    java -cp "C:\Program Files\ONLYOFFICE\DocumentBuilder\docbuilder.jar;." Program

    Note, that on UNIX systems the path separator is : instead of ;. Thus, on Linux or Mac OS it should be:

    java -cp "/opt/onlyoffice/documentbuilder/docbuilder.jar:." Program
  4. Documents will be created in the test directory.