src/gui/kernel/qevent_p.h
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
    41 
    41 
    42 #ifndef QEVENT_P_H
    42 #ifndef QEVENT_P_H
    43 #define QEVENT_P_H
    43 #define QEVENT_P_H
    44 
    44 
    45 #include <QtCore/qglobal.h>
    45 #include <QtCore/qglobal.h>
       
    46 #include <QtCore/qurl.h>
    46 #include <QtGui/qevent.h>
    47 #include <QtGui/qevent.h>
    47 
    48 
    48 QT_BEGIN_NAMESPACE
    49 QT_BEGIN_NAMESPACE
    49 
    50 
    50 //
    51 //
   162     QWidget *widget;
   163     QWidget *widget;
   163     QMap<Qt::GestureType, bool> accepted;
   164     QMap<Qt::GestureType, bool> accepted;
   164     QMap<Qt::GestureType, QWidget *> targetWidgets;
   165     QMap<Qt::GestureType, QWidget *> targetWidgets;
   165 };
   166 };
   166 
   167 
       
   168 
       
   169 class QFileOpenEventPrivate
       
   170 {
       
   171 public:
       
   172     inline QFileOpenEventPrivate(const QUrl &url)
       
   173         : url(url)
       
   174     {
       
   175     }
       
   176 
       
   177     QUrl url;
       
   178 };
       
   179 
   167 QT_END_NAMESPACE
   180 QT_END_NAMESPACE
   168 
   181 
   169 #endif // QEVENT_P_H
   182 #endif // QEVENT_P_H