Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
previewctl.h
Go to the documentation of this file.
1 
8 #ifndef _PREVIEW_CTL_H_
9 #define _PREVIEW_CTL_H_
10 
11 // Includes
12 #include <QObject>
13 #include <QVariant>
14 #include <QVector>
15 #include <QStringList>
16 #include <QFile>
17 
18 // Forward declarations
19 class CAMainWin;
20 class CAPDFExport;
21 
22 class CAPreviewCtl : public QObject
23 {
24  Q_OBJECT
25 
26 public:
27  CAPreviewCtl( CAMainWin *poMainWin );
28  ~CAPreviewCtl();
29 
30 public slots:
32 
33 protected slots:
34  void showPDF( int iExitCode );
35 
36 protected:
39  QString _oOutputPDFName;
40 };
41 
42 #endif // _PREVIEW_CTL_H
43