Plugin Architecture: Difference between revisions

From Scribus Wiki
Jump to navigation Jump to search
(BAD INTERNAL LINK)
(archive.org links to non existing pages - or delete this page itself ?)
Line 3: Line 3:
Scribus can be extended and automated using C++ plugins. Plugins are dynamic loaded libraries in "so" format.
Scribus can be extended and automated using C++ plugins. Plugins are dynamic loaded libraries in "so" format.


An introduction to writing Scribus plugins is available here: [[ BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto]]. At present (3 Feb '05) there's not a lot of documentation available for the object model. It's said to be in Doxygen format in the source code, although I can't find it.
An introduction to writing Scribus plugins is available here: [[ BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto]] [[Archive.org link http://web.archive.org/web/20080809121430/http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto]]. At present (3 Feb '05) there's not a lot of documentation available for the object model. It's said to be in Doxygen format in the source code, although I can't find it.


There is also a separate api for formatted text importer plugins. More information on this can be found from here:
There is also a separate api for formatted text importer plugins. More information on this can be found from here:
[[ BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto]]
[[ BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto]] [[Link on archive.org http://web.archive.org/web/20100506001054/http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto]]
 


Scribus also provides a Python [[Scripter API]], which is generally easier to use, more mature and better documented than the C++ API. The internal C++ API is often updated and is not compatible release-to-release. Work on a [[public C++ API]] that's simpler, more stable, easier to use, and exposes more functionality for scripting languages is being considered.
Scribus also provides a Python [[Scripter API]], which is generally easier to use, more mature and better documented than the C++ API. The internal C++ API is often updated and is not compatible release-to-release. Work on a [[public C++ API]] that's simpler, more stable, easier to use, and exposes more functionality for scripting languages is being considered.

Revision as of 14:48, 28 December 2012


Scribus can be extended and automated using C++ plugins. Plugins are dynamic loaded libraries in "so" format.

An introduction to writing Scribus plugins is available here: BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto Archive.org link http://web.archive.org/web/20080809121430/http://docs.scribus.net/index.php?lang=en&sm=pluginhowto&page=plugin_howto. At present (3 Feb '05) there's not a lot of documentation available for the object model. It's said to be in Doxygen format in the source code, although I can't find it.

There is also a separate api for formatted text importer plugins. More information on this can be found from here: BAD INTERNAL LINK http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto Link on archive.org http://web.archive.org/web/20100506001054/http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto


Scribus also provides a Python Scripter API, which is generally easier to use, more mature and better documented than the C++ API. The internal C++ API is often updated and is not compatible release-to-release. Work on a public C++ API that's simpler, more stable, easier to use, and exposes more functionality for scripting languages is being considered.