Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / GLViewer / GLViewer_MimeData.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  Author : OPEN CASCADE
23 // File:      GLViewer_MimeData.h
24 // Created:   November, 2004
25 //
26 #ifndef GLVIEWER_MIMEDATA_H
27 #define GLVIEWER_MIMEDATA_H
28
29 #ifdef WIN32
30 #include <windows.h>
31 #endif
32
33 #include "GLViewer.h"
34
35 #include <QMimeData>
36
37 #ifdef WIN32
38 #pragma warning( disable:4251 )
39 #endif
40
41 class GLViewer_Object;
42
43 /*! 
44   \class GLViewer_MimeData
45   Needs for a work with QClipboard
46 */
47 class GLVIEWER_API GLViewer_MimeData: public QMimeData
48 {
49 public:
50   GLViewer_MimeData():QMimeData(){};
51   ~GLViewer_MimeData();
52   
53   //! Translate objects to byte array
54   bool                                setObjects( QList<GLViewer_Object*> );
55   //! Gets objects from byte array
56   /*If you want to use new class, following two method must be redefined*/
57   static QList<GLViewer_Object*>      getObjects( QByteArray, QString theType);
58   //! Get object from byte array
59   /*If you want to use new class, following two method must be redefined*/
60   static GLViewer_Object*             getObject( QByteArray, QString theType);
61   
62   const char*                         format( int theIndex = 0 ) const;
63   QByteArray                          encodedData( const char* ) const;
64   
65 private:
66   QByteArray                          myByteArray;
67 };
68
69 #ifdef WIN32
70 #pragma warning ( default:4251 )
71 #endif
72
73 #endif