Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
/home/iurt/rpm/BUILD/canorus-0.7.R1002/src/control/previewctl.h
Go to the documentation of this file.
00001 
00008 #ifndef _PREVIEW_CTL_H_
00009 #define _PREVIEW_CTL_H_
00010 
00011 // Includes
00012 #include <QObject>
00013 #include <QVariant>
00014 #include <QVector>
00015 #include <QStringList>
00016 #include <QFile>
00017 
00018 // Forward declarations
00019 class CAMainWin;
00020 class CAPDFExport;
00021 
00022 class CAPreviewCtl : public QObject
00023 {
00024         Q_OBJECT
00025 
00026 public:
00027         CAPreviewCtl( CAMainWin *poMainWin );
00028         ~CAPreviewCtl();
00029 
00030 public slots:
00031         void on_uiPrintPreview_triggered();
00032  
00033 protected slots:
00034         void showPDF( int iExitCode );
00035         
00036 protected:
00037         CAMainWin    *_poMainWin;
00038         CAPDFExport *_poPDFExport;
00039         QString           _oOutputPDFName;
00040 };
00041 
00042 #endif // _PREVIEW_CTL_H
00043