]> Creatis software - cpPlugins.git/blob - plugins/IO/ImageWriterQDialog.h
...
[cpPlugins.git] / plugins / IO / ImageWriterQDialog.h
1 #ifndef __CPPLUGINSIO__IMAGEWRITERQDIALOG__H__
2 #define __CPPLUGINSIO__IMAGEWRITERQDIALOG__H__
3
4 #include <cpPlugins/Config.h>
5
6 #ifdef cpPlugins_QT4
7
8 #include <QFileDialog>
9
10 namespace cpPlugins
11 {
12   class ProcessObject;
13 }
14
15 namespace cpPluginsIO
16 {
17   /**
18    */
19   class ImageWriterQDialog
20     : public QFileDialog
21   {
22     Q_OBJECT;
23   public:
24     ImageWriterQDialog( QWidget* parent = 0 );
25     virtual ~ImageWriterQDialog( );
26     void setProcessObject( cpPlugins::ProcessObject* obj );
27
28   protected slots:
29     void _dlg_Accepted( );
30
31   protected:
32     cpPlugins::ProcessObject* m_ProcessObject;
33   };
34
35 } // ecapseman
36
37 #endif // cpPlugins_QT4
38
39 #endif // __CPPLUGINS__IO__IMAGEWRITERQDIALOG__H__
40
41 // eof - $RCSfile$