Salome HOME
Merge from SKV_CCreator_from_HYDRO branch
[modules/gui.git] / src / OCCViewer / OCCViewer_Utilities.h
old mode 100644 (file)
new mode 100755 (executable)
index 8319bf7..fee7686
@@ -1,9 +1,33 @@
+// Copyright (C) 2014  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 #ifndef OCCVIEWER_UTILITIES_H
 #define OCCVIEWER_UTILITIES_H
 
+// internal includes
 #include "OCCViewer.h"
 #include "OCCViewer_ViewWindow.h"
 
+// OCC includes
+#include <Image_PixMap.hxx>
+
+class QImage;
 class OCCViewer_Viewer;
 
 #ifdef WIN32
@@ -14,6 +38,13 @@ class OCCVIEWER_EXPORT OCCViewer_Utilities
 {
 public:
 
+  /*!
+   * Convert Qt image to OCCT pixmap
+   * \param theImage Qt source image
+   * \return resulting OCCT pixmap
+   */
+  static Handle(Image_PixMap) imageToPixmap( const QImage& theImage );
+
   /*!
    * Set 2D mode for the viewer. Hide or show 3D actions.
    * \param theViewer an OCC viewer
@@ -26,4 +57,4 @@ public:
 
 };
 
-#endif
+#endif // OCCVIEWER_UTILITIES_H