summaryrefslogtreecommitdiffstats
path: root/digikam/digikam/dragobjects.h
blob: 35a70f7a2e1520a0b5e34fd1b194f7fe54472f8c (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* ============================================================
 *
 * This file is a part of digiKam project
 * http://www.digikam.org
 *
 * Date        : 2004-06-26
 * Description : Drag object info container.
 * 
 * Copyright (C) 2004-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
 * Copyright (C) 2004-2005 by Joern Ahrens <joern.ahrens@kdemail.net>
 * Copyright (C) 2006-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
 *
 * 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, or (at your option)
 * any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * ============================================================ */

#ifndef DRAGOBJECTS_H
#define DRAGOBJECTS_H

// TQt includes.

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

// KDE includes.

#include <kurldrag.h>

// Local includes.

#include "cameratype.h"

class TQWidget;

namespace Digikam
{

/**
 * Provides a drag object for a list of KURLs with its related database IDs.
 *
 * Images can be moved through ItemDrag. It is possible to move them on
 * another application which understands KURLDrag, like konqueror, to
 * copy the images. Digikam can use the IDs, if ItemDrag is dropped
 * on digikam itself.
 * The kioURLs are internally used with the digikamalbums tdeioslave.
 * The "normal" KURLDrag urls are used for external drops (k3b, gimp, ...)
 */
class ItemDrag : public KURLDrag
{
public:

    ItemDrag(const KURL::List& urls, const KURL::List& kioURLs,
             const TQValueList<int>& albumIDs,
             const TQValueList<int>& imageIDs,
             TQWidget* dragSource=0, const char* name=0);

    static bool canDecode(const TQMimeSource* e);
    static bool decode(const TQMimeSource* e,
                       KURL::List &urls,
                       KURL::List &kioURLs,
                       TQValueList<int>& albumIDs,
                       TQValueList<int>& imageIDs);

protected:

    virtual const char* format(int i) const;
    virtual TQByteArray encodedData(const char* mime) const;

private:

    KURL::List      m_kioURLs;
    TQValueList<int> m_albumIDs;
    TQValueList<int> m_imageIDs;
};


/**
 * Provides a drag object for a tag
 *
 * When a tag is moved through drag'n'drop an object of this class 
 * is created.
 */
class TagDrag : public TQDragObject
{
public:

    TagDrag(int albumid, TQWidget *dragSource = 0, const char *name = 0);
    static bool     canDecode(const TQMimeSource* e);

protected:

    TQByteArray      encodedData( const char* ) const;
    const char*     format(int i) const;

private:
    int     mAlbumID;
};

/**
 * Provides a drag object for an album
 *
 * When an album is moved through drag'n'drop an object of this class 
 * is created.
 */
class AlbumDrag : public KURLDrag
{
public:
    AlbumDrag(const KURL &url, int albumid, 
              TQWidget *dragSource = 0, const char *name = 0);
    static bool     canDecode(const TQMimeSource* e);
    static bool     decode(const TQMimeSource* e, KURL::List &urls, 
                           int &albumID);
protected:

    TQByteArray      encodedData(const char*) const;
    const char*     format(int i) const;

private:
    int     mAlbumID;
};

/**
 * Provides a drag object for a list of tags
 *
 * When a tag is moved through drag'n'drop an object of this class 
 * is created.
 */
class TagListDrag : public TQDragObject
{
public:

    TagListDrag(const TQValueList<int>& tagIDs, TQWidget *dragSource = 0,
                const char *name = 0);
    static bool canDecode(const TQMimeSource* e);

protected:

    TQByteArray  encodedData( const char* ) const;
    const char* format(int i) const;

private:

    TQValueList<int> m_tagIDs;
};

/**
 * Provides a drag object for a list of camera items
 *
 * When a camera item is moved through drag'n'drop an object of this class
 * is created.
 */
class CameraItemListDrag : public TQDragObject
{
public:

    CameraItemListDrag(const TQStringList& cameraItemPaths, TQWidget *dragSource = 0,
                       const char *name = 0);
    static bool canDecode(const TQMimeSource* e);

protected:

    TQByteArray  encodedData( const char* ) const;
    const char* format(int i) const;

private:

    TQStringList m_cameraItemPaths;
};

/**
 * Provides a drag object for a camera object
 *
 * When a camera object is moved through drag'n'drop an object of this class
 * is created.
 */
class CameraDragObject : public TQStoredDrag
{

public:

    CameraDragObject(const CameraType& ctype, TQWidget* dragSource=0);
    ~CameraDragObject();

    static bool canDecode(const TQMimeSource* e);
    static bool decode(const TQMimeSource* e, CameraType& ctype);

private:

    void setCameraType(const CameraType& ctype);

};

}  // namespace Digikam

#endif /* DRAGOBJECTS_H */