Scribus
Open source desktop publishing at your fingertips
aboutplugins.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef ABOUTPLUGINS_H
8 #define ABOUTPLUGINS_H
9 
10 #include "ui_aboutplugins.h"
11 class QListWidgetItem;
12 
19 class AboutPlugins : public QDialog, Ui::AboutPlugins
20 {
21  Q_OBJECT
22 
23  public:
24  AboutPlugins(QWidget* parent);
25  ~AboutPlugins();
26 
27  private slots:
29  void displayPlugin(QListWidgetItem* currItem, QListWidgetItem* prevItem);
30 
31  private:
33  QStringList pluginNames;
38  QString htmlize(QString s);
39 };
40 
41 #endif
Displays info about pligins. This class implements only the non-GUI parts of the About Plug-ins dialo...
Definition: aboutplugins.h:19