libreoffice-starter-extension
libreoffice-starter-extension copied to clipboard
LibreOffice Starter Extension
LibreOffice Starter Extension
This repository contains some boilerplate code and config you need to get started to build your own LibreOffice Extension.
You can use this project as a starting point to write your own extension for LibreOffice.
Get started
- Install LibreOffice & the LibreOffice SDK (5.0 or greater)
- Install Eclipse IDE for Java Developers & the LOEclipse plugin
- Download this starter project & unzip it
- Import the project in Eclipse (File->Import->Existing Projects into Workspace)
- Let Eclipse know the paths to LibreOffice & the SDK (Project->Properties->LibreOffice Properties)
- Setup Run Configuration
- Go to Run->Run Configurations
- Create a new run configuration of the type "LibreOffice Application"
- Select the project
- Run!
- Hint: Show the error log to view the output of the run configuration (Window->Show View->Error Log)
- The extension will be installed in LibreOffice (see Tools->Extension Manager)
- To launch the example dialog, click on the newly added toolbar/menu entry which have been added to Writer (named "Starter Project/Action One").
Development Hints
- The entry point is in StarterProjectImpl.java.
- Toolbar items and menu entries are defined in Addons.xcu.
- Shortcuts are defined in Accelerators.xcu.
- The position of the toolbar is defined in WriterWindowState.xcu.
- The dialog shown when clicking "Action One" is ActionOneDialog.xdl. The dialog itself contains information how to edit it.
- The DialogHelper contains some helper methods to work with the dialog.
- To debug the Java code, just stick a breakpoint anywhere in Eclipse and start your run configuration in debug mode.
- If you add non-code files (or an external .jar) to your extension, you need to mention them in package.properties, else they won't be included in the packaged extension.
- Now go on customizing the extension to your needs. Some helpful links: