home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / javadocs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-06-04  |  996 b   |  50 lines

  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 JAVADOCS_H
  8. #define JAVADOCS_H
  9.  
  10. #include <QDialog>
  11.  
  12. #include "scribusapi.h"
  13. class QListWidget;
  14. class QPushButton;
  15. class QVBoxLayout;
  16. class QHBoxLayout;
  17. class ScribusDoc;
  18. class ScribusView;
  19.  
  20. class SCRIBUS_API JavaDocs : public QDialog
  21. {
  22.     Q_OBJECT
  23.  
  24. public:
  25.     JavaDocs( QWidget* parent, ScribusDoc *doc, ScribusView* vie);
  26.     ~JavaDocs() {};
  27.  
  28.     QListWidget* Scripts;
  29.     QPushButton* EditScript;
  30.     QPushButton* AddScript;
  31.     QPushButton* DeleteScript;
  32.     QPushButton* ExitDia;
  33.     ScribusDoc *Doc;
  34.     ScribusView *View;
  35.  
  36. private slots:
  37.     void slotAdd();
  38.     void slotEdit();
  39.     void slotDelete();
  40.  
  41. signals:
  42.     void docChanged(bool);
  43.  
  44. protected:
  45.     QHBoxLayout* JavaDocsLayout;
  46.     QVBoxLayout* Layout1;
  47. };
  48.  
  49. #endif // JAVADOCS_H
  50.