Salome HOME
This file is given from DESCARTES project
[modules/gui.git] / src / GLViewer / GLViewer_MimeSource.h
1 //  Copyright (C) 2005 OPEN CASCADE
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
18 //
19 //  Author : OPEN CASCADE
20 //
21
22 // File:      GLViewer_MimeSource.h
23 // Created:   November, 2004
24
25 #ifndef GLVIEWER_MIMESOURCE_H
26 #define GLVIEWER_MIMESOURCE_H
27
28 #ifdef WNT
29 #include <windows.h>
30 #endif
31
32 #include "GLViewer.h"
33
34 #include <qmime.h>
35 #include <qvaluelist.h>
36
37 #ifdef WNT
38 #pragma warning( disable:4251 )
39 #endif
40
41 class GLViewer_Object;
42
43 /*! Class GLViewer_MimeSource
44 * Needs for a work with QClipboard
45 */
46
47 class GLVIEWER_API GLViewer_MimeSource: public QMimeSource
48 {
49 public:
50   GLViewer_MimeSource():QMimeSource(){};
51   ~GLViewer_MimeSource();
52   
53   //! Translate objects to byte array
54   bool                                setObjects( QValueList<GLViewer_Object*> );
55   //! Gets objects from byte array
56   /*If you want to use new class, following two method must be redefined*/
57   static QValueList<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   // Redefined methods
63   virtual const char*                 format( int theIndex = 0 ) const;
64   virtual QByteArray                  encodedData( const char* ) const;
65   
66 private:
67   QByteArray                          myByteArray;
68 };
69
70 #ifdef WNT
71 #pragma warning ( default:4251 )
72 #endif
73
74 #endif