Scribus
Open source desktop publishing at your fingertips
prefs_printer.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 
8 #ifndef PREFS_PRINTER_H
9 #define PREFS_PRINTER_H
10 
11 #include "ui_prefs_printerbase.h"
12 #include "prefs_pane.h"
13 #include "scribusapi.h"
14 
15 class SCRIBUS_API Prefs_Printer : public Prefs_Pane, Ui::Prefs_Printer
16 {
17  Q_OBJECT
18 
19  public:
20  Prefs_Printer(QWidget* parent, ScribusDoc* doc=NULL);
21  ~Prefs_Printer();
22  virtual void restoreDefaults(struct ApplicationPrefs *prefsData);
23  virtual void saveGuiToPrefs(struct ApplicationPrefs *prefsData) const;
24  public slots:
25  void languageChange();
26  void unitChange(int newIndex);
27  private slots:
28  void selOtherComm();
29 };
30 
31 #endif // PREFS_PRINTER_H
Definition: prefsstructs.h:453
Definition: prefs_printer.h:15
the Document Class
Definition: scribusdoc.h:90
Definition: prefs_pane.h:14