Plugin Architecture: Difference between revisions
Jump to navigation
Jump to search
(Stub) |
No edit summary |
||
Line 2: | Line 2: | ||
An introduction to writing Scribus plugins is available here: [[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: [[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. | ||
There is also a separate api for formatted text importer plugins. More information on this can be found from here: | |||
[[http://docs.scribus.net/index.php?lang=en&sm=gettexthowto&page=gettexthowto 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. | Scribus also provides a Python [[Scripter API]], which is generally easier to use, more mature and better documented than the C++ API. |
Revision as of 16:01, 3 February 2005
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: [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: [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.