]> Creatis software - cpPlugins.git/blob - appli/PipelineEditor/PipelineEditorMainWindow.h
...
[cpPlugins.git] / appli / PipelineEditor / PipelineEditorMainWindow.h
1 #ifndef __PIPELINEEDITORMAINWINDOW__H__
2 #define __PIPELINEEDITORMAINWINDOW__H__
3
4 #include <cpBaseQtApplication/MainWindow.h>
5
6 // -------------------------------------------------------------------------
7 namespace Ui
8 {
9   class PipelineEditorMainWindow;
10 }
11
12 /**
13  */
14 class PipelineEditorMainWindow
15   : public cpBaseQtApplication::MainWindow
16 {
17   Q_OBJECT;
18 public:
19   typedef PipelineEditorMainWindow        Self;
20   typedef cpBaseQtApplication::MainWindow Superclass;
21
22 public:
23   explicit PipelineEditorMainWindow(
24     int argc, char* argv[],
25     QApplication* app,
26     QWidget* parent = NULL
27     );
28   virtual ~PipelineEditorMainWindow( );
29
30   /*
31     void _ActionBackgroundMPR( );
32     void _ActionBackground3D( );
33     void _ShowFilterOutput(
34     const std::string& filter_name, const std::string& output_name
35     );
36     void _HideFilterOutput(
37     const std::string& filter_name, const std::string& output_name
38     );
39     void _PropertiesFilterOutput(
40     const std::string& filter_name, const std::string& output_name
41     );
42   */
43
44 private:
45   Ui::PipelineEditorMainWindow* m_UI;
46 };
47
48 #endif // __PIPELINEEDITORMAINWINDOW__H__
49
50 // eof - $RCSfile$