* Added QWheelEvent * removed x y * Added QNativeGestureEvent * Changed wrong type of QNativeGestureEventWrap value * Added QTabletEvent * Fixing build error for QTabletEvent * adding dropaction * fix typos * Added more functions to QPainterPath * Added more functions to QPainterPath * Fixed multiple typos * Fixed multiple typos * Got QPainterPath additions working. * Modified QPainterPath to use qreal instead * Added QPointF, added a few missing methods to QPoint * Added QRectF * implemented QRectF * Added acceptDrops and setAcceptDrops to QWidget, will be useful for addon implementation of Drag and Drop * Added more methods to QUrl * Added QMimeData, additional methods to QUrl, and Dropping should now be supported * refactored * Fixed more merge conflicts * Is this my final merge conflict?? * All merge conflicts resolved * All merge conflicts resolved * Adds guide for drag and drop * lint fix Co-authored-by: Switt Kongdachalert <switt1995@yahoo.com> Co-authored-by: Atul R <atulanand94@gmail.com>
28 lines
715 B
C++
28 lines
715 B
C++
#pragma once
|
|
|
|
#include <napi.h>
|
|
|
|
#include <QDragLeaveEvent>
|
|
|
|
#include "Extras/Export/export.h"
|
|
#include "QtGui/QEvent/QEvent/qevent_macro.h"
|
|
#include "core/Component/component_macro.h"
|
|
|
|
class DLL_EXPORT QDragLeaveEventWrap
|
|
: public Napi::ObjectWrap<QDragLeaveEventWrap> {
|
|
COMPONENT_WRAPPED_METHODS_DECLARATION
|
|
|
|
private:
|
|
QDragLeaveEvent* instance;
|
|
|
|
public:
|
|
static Napi::Object init(Napi::Env env, Napi::Object exports);
|
|
QDragLeaveEventWrap(const Napi::CallbackInfo& info);
|
|
~QDragLeaveEventWrap();
|
|
QDragLeaveEvent* getInternalInstance();
|
|
// class constructor
|
|
static Napi::FunctionReference constructor;
|
|
// wrapped methods (none)
|
|
// Methods from QEvent
|
|
QEVENT_WRAPPED_METHODS_DECLARATION
|
|
}; |