summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmobjectdrag.h
blob: 4a6db4b91fd1dc5e2a9aa4116cfc964294ee4af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//-*-C++-*-
/*
**************************************************************************
                                 description
                             --------------------
    copyright            : (C) 2000-2003 by Andreas Zehender
    email                : zehender@kde.org
**************************************************************************

**************************************************************************
*                                                                        *
*  This program is free software; you can redistribute it and/or modify  *
*  it under the terms of the GNU General Public License as published by  *
*  the Free Software Foundation; either version 2 of the License, or     *
*  (at your option) any later version.                                   *
*                                                                        *
**************************************************************************/


#ifndef PMOBJECTDRAG_H
#define PMOBJECTDRAG_H

#include <tqdragobject.h>
#include <tqstringlist.h>

#include "pmobject.h"
class PMParser;
class PMPart;

/**
 * Supports drag/drop and copy/paste of kpovmodeler objects
 */

class PMObjectDrag : public TQDragObject
{
public:
   /**
    * Creates a drag object for one object
    *
    * The object drag will contain all formats that are supported
    * by the part.
    * @see PMIOManager
    */
   PMObjectDrag( PMPart* part, PMObject* object, TQWidget* dragSource = 0,
                 const char* name = 0 );
   /**
    * Creates a drag object for all objects in objList
    */
   PMObjectDrag( PMPart* part, const PMObjectList& objList, TQWidget* dragSource = 0,
                 const char* name = 0 );
   /**
    * Deletes the drag object
    */
   ~PMObjectDrag( );
   /**
    * Returns the encoded payload of this object, in the
    * specified MIME format.
    */
   virtual TQByteArray encodedData( const char* ) const;
   /**
    * Returns the ith format, or NULL.
    */
   virtual const char* format( int i = 0 ) const;
   /**
    * Returns true if the information in e can be decoded
    */
   static bool canDecode( const TQMimeSource* e, PMPart* part );
   /**
    * Returns a pointer to a parser for this drag object or 0, if the data
    * can't be decoded.
    *
    * The caller is responsible to delete the parser.
    */
   static PMParser* newParser( const TQMimeSource* e, PMPart* part );

private:
   TQValueList<TQByteArray> m_data;
   TQStringList m_mimeTypes;
};

#endif