blob: 7772d190f95850ebc98e6fef825c75495523d380 (
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
|
/***************************************************************************
begin : Sun Oct 3 1999
copyright : (C) 1997-99 by Peter Putzer
email : putzer@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; version 2. *
* *
***************************************************************************/
#ifndef KSV_TRASH_H
#define KSV_TRASH_H
#include <qframe.h>
#include <qpixmap.h>
#include <qstring.h>
// forward declarations
class QLabel;
class KIconLoader;
class KSVItem;
class KSVAction;
class KSVTrash : public QFrame
{
Q_OBJECT
public:
KSVTrash (QWidget* parent = 0, const char* name = 0);
virtual ~KSVTrash();
virtual QSize sizeHint() const;
protected:
/**
* Overridden from @ref QDropSite
*/
virtual void dragMoveEvent ( QDragMoveEvent* );
/**
* Overridden from @ref QDropSite
*/
virtual void dragLeaveEvent ( QDragLeaveEvent* );
/**
* Overridden from @ref QDropSite
*/
virtual void dropEvent ( QDropEvent* );
virtual bool eventFilter ( QObject*, QEvent* );
private:
KIconLoader* mKIL;
QLabel* mLabel;
bool mOpen;
int mPixmapWidth;
signals:
void undoAction (KSVAction*);
};
#endif
|