Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/paravis.git] / src / PVGUI / PVGUI_OutputWindowAdapter.h
1 // Copyright (C) 2010-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _PVGUI_OutputWindowAdapter_h
21 #define _PVGUI_OutputWindowAdapter_h
22
23 #include <vtkOutputWindow.h>
24
25 /*!
26 vtkOutputWindow implementation that puts VTK output messages to SALOME log window.
27
28 To use, create an instance of PVGUI_OutputWindowAdapter and pass it to the
29 vtkOutputWindow::setInstance() static method.
30
31 This class is based on pqOutputWindow ParaView class.
32 */
33 class PVGUI_OutputWindowAdapter : public vtkOutputWindow
34 {
35 public:
36   static PVGUI_OutputWindowAdapter *New();
37   vtkTypeRevisionMacro(PVGUI_OutputWindowAdapter, vtkOutputWindow);
38
39   //! Returns the number of text messages received
40   const unsigned int getTextCount();
41   //! Returns the number of error messages received
42   const unsigned int getErrorCount();
43   //! Returns the number of warning messages received
44   const unsigned int getWarningCount();
45   //! Returns the number of generic warning messages received
46   const unsigned int getGenericWarningCount();
47
48 private:
49   PVGUI_OutputWindowAdapter();
50   PVGUI_OutputWindowAdapter(const PVGUI_OutputWindowAdapter&);
51   PVGUI_OutputWindowAdapter& operator=(const PVGUI_OutputWindowAdapter&);
52   ~PVGUI_OutputWindowAdapter();
53
54   unsigned int TextCount;
55   unsigned int ErrorCount;
56   unsigned int WarningCount;
57   unsigned int GenericWarningCount;
58
59   virtual void DisplayText(const char*);
60   virtual void DisplayErrorText(const char*);
61   virtual void DisplayWarningText(const char*);
62   virtual void DisplayGenericWarningText(const char*);
63 };
64
65 #endif // !_PVGUI_OutputWindowAdapter_h