Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef IMAGEDROPWIDGET_H_
00009 #define IMAGEDROPWIDGET_H_
00010
00011 #include <QtGui/QWidget>
00012
00013 namespace find_object {
00014
00015 class ImageDropWidget : public QWidget {
00016
00017 Q_OBJECT;
00018
00019 public:
00020 ImageDropWidget(QWidget *parent = 0, Qt::WindowFlags flags = 0);
00021 virtual ~ImageDropWidget();
00022
00023 Q_SIGNALS:
00024 void imagesReceived(const QStringList &);
00025
00026
00027 protected:
00028 virtual void dragEnterEvent(QDragEnterEvent *event);
00029 virtual void dropEvent(QDropEvent *event);
00030 };
00031
00032 }
00033
00034 #endif