Scribus API for plugins
A stable, high level and documented interface to the Scribus core that plugin developers can use to access the Scribus features.
scribusAPI.h
1 
4 #ifndef SCRIBUSAPI_H
5 #define SCRIBUSAPI_H
6 
7 #include <QObject>
8 
9 class ScribusDoc;
10 
11 class ScribusAPI : public QObject
12 {
13  Q_OBJECT
14 
15 public:
16  ScribusAPI();
17  ~ScribusAPI();
18 };
19 
20 #endif // SCRIBUSAPI_H
Main class for creating the GUI and interpreting the user input.
Definition: scribusAPI.h:11