summaryrefslogtreecommitdiffstats
path: root/ksysv/trash.h
blob: d848790c93af9f2b889b0c8a39c27cdeb82d66d4 (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
/***************************************************************************
    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 <tqframe.h>
#include <tqpixmap.h>
#include <tqstring.h>

// forward declarations
class TQLabel;
class TDEIconLoader;
class KSVItem;
class KSVAction;

class KSVTrash : public TQFrame
{
  Q_OBJECT
  
  
public:
  KSVTrash (TQWidget* parent = 0, const char* name = 0);
  virtual ~KSVTrash();
  
  virtual TQSize sizeHint() const;

protected:
  /**
   * Overridden from @ref TQDropSite
   */
  virtual void dragMoveEvent ( TQDragMoveEvent* );
  
  /**
   * Overridden from @ref TQDropSite
   */
  virtual void dragLeaveEvent ( TQDragLeaveEvent* );

  /**
   * Overridden from @ref TQDropSite
   */
  virtual void dropEvent ( TQDropEvent* );

  virtual bool eventFilter ( TQObject*, TQEvent* );

private:
  TDEIconLoader* mKIL;
  TQLabel* mLabel;
  bool mOpen;
  int mPixmapWidth;
  
signals:
  void undoAction (KSVAction*);
};

#endif