]> 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 { namespace BaseObjects { class ProcessObject; } }
11
12 namespace cpPluginsIO
13 {
14   /**
15    */
16   class ImageWriterQDialog
17     : public QFileDialog
18   {
19     Q_OBJECT;
20   public:
21     ImageWriterQDialog( QWidget* parent = 0 );
22     virtual ~ImageWriterQDialog( );
23     void setProcessObject( cpPlugins::BaseObjects::ProcessObject* obj );
24
25   protected slots:
26     void _dlg_Accepted( );
27
28   protected:
29     cpPlugins::BaseObjects::ProcessObject* m_ProcessObject;
30   };
31
32 } // ecapseman
33
34 #endif // cpPlugins_QT4
35
36 #endif // __cpPluginsIO__ImageWriterQDialog__h__
37
38 // eof - $RCSfile$