flutter: instantiate DropArea_flutter
This commit is contained in:
@@ -27,6 +27,11 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1006
|
||||
Controller_wrapper::Controller_wrapper(KDDockWidgets::Type type, KDDockWidgets::View *arg__2)
|
||||
: ::KDDockWidgets::Controller(type, arg__2)
|
||||
{
|
||||
}
|
||||
bool Controller_wrapper::close()
|
||||
{
|
||||
// tag=1000
|
||||
@@ -197,6 +202,13 @@ QString Controller_wrapper::tr(const char *s, const char *c, int n)
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::Controller::tr(s, c, n);
|
||||
}
|
||||
KDDockWidgets::Type Controller_wrapper::type() const
|
||||
{
|
||||
// tag=1000
|
||||
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::Controller::type();
|
||||
}
|
||||
KDDockWidgets::View *Controller_wrapper::view() const
|
||||
{
|
||||
// tag=1000
|
||||
@@ -249,6 +261,14 @@ void c_KDDockWidgets__Controller_Finalizer(void *, void *cppObj, void *)
|
||||
{
|
||||
delete reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Controller_wrapper *>(cppObj);
|
||||
}
|
||||
void *c_KDDockWidgets__Controller__constructor_Type_View(int type, void *arg__2_)
|
||||
{
|
||||
auto arg__2 = reinterpret_cast<KDDockWidgets::View *>(arg__2_);
|
||||
// tag=1056
|
||||
auto ptr = new KDDockWidgetsBindings_wrappersNS::Controller_wrapper(static_cast<KDDockWidgets::Type>(type), arg__2);
|
||||
return reinterpret_cast<void *>(ptr);
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// close()
|
||||
bool c_KDDockWidgets__Controller__close(void *thisObj)
|
||||
@@ -429,6 +449,15 @@ void *c_static_KDDockWidgets__Controller__tr_char_char_int(const char *s, const
|
||||
new Dartagnan::ValueWrapper<QString> { KDDockWidgetsBindings_wrappersNS::Controller_wrapper::tr(s, c, n) };
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// type() const
|
||||
int c_KDDockWidgets__Controller__type(void *thisObj)
|
||||
{
|
||||
return
|
||||
// tag=1010
|
||||
fromPtr(thisObj)->type();
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// view() const
|
||||
void *c_KDDockWidgets__Controller__view(void *thisObj)
|
||||
@@ -475,16 +504,16 @@ void c_KDDockWidgets__Controller__registerVirtualMethodCallback(void *ptr, void
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Controller_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Controller_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Controller_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
case 692:
|
||||
case 695:
|
||||
wrapper->m_setParentView_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Controller_wrapper::Callback_setParentView_impl>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#include <qrect.h>
|
||||
#include <qpoint.h>
|
||||
#include <qsize.h>
|
||||
#include <qobject.h>
|
||||
#include <qcoreevent.h>
|
||||
#include <qobject.h>
|
||||
#include <qlist.h>
|
||||
#include <qbytearray.h>
|
||||
|
||||
@@ -29,6 +29,8 @@ class Controller_wrapper : public ::KDDockWidgets::Controller
|
||||
public:
|
||||
~Controller_wrapper();
|
||||
// tag=1041
|
||||
Controller_wrapper(KDDockWidgets::Type type, KDDockWidgets::View *arg__2);
|
||||
// tag=1041
|
||||
bool close();
|
||||
// tag=1041
|
||||
virtual void customEvent(QEvent *event);
|
||||
@@ -73,6 +75,8 @@ public:
|
||||
// tag=1041
|
||||
static QString tr(const char *s, const char *c, int n);
|
||||
// tag=1041
|
||||
KDDockWidgets::Type type() const;
|
||||
// tag=1041
|
||||
KDDockWidgets::View *view() const;
|
||||
// tag=1041
|
||||
int width() const;
|
||||
@@ -96,6 +100,10 @@ public:
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::Controller(KDDockWidgets::Type type, KDDockWidgets::View * arg__2)
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Controller__constructor_Type_View(int type, void *arg__2_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::close()
|
||||
KDDockWidgetsBindings_EXPORT bool c_KDDockWidgets__Controller__close(void *thisObj);
|
||||
@@ -170,6 +178,10 @@ KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Controller__size(void *thisO
|
||||
// KDDockWidgets::Controller::tr(const char * s, const char * c, int n)
|
||||
KDDockWidgetsBindings_EXPORT void *c_static_KDDockWidgets__Controller__tr_char_char_int(const char *s, const char *c, int n);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::type() const
|
||||
KDDockWidgetsBindings_EXPORT int c_KDDockWidgets__Controller__type(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::view() const
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Controller__view(void *thisObj);
|
||||
|
||||
@@ -286,16 +286,16 @@ void c_KDDockWidgets__Controllers__DropArea__registerVirtualMethodCallback(void
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::DropArea_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::DropArea_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::DropArea_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
case 692:
|
||||
case 695:
|
||||
wrapper->m_setParentView_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::DropArea_wrapper::Callback_setParentView_impl>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -27,14 +27,4 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1050
|
||||
// qt_getEnumName(QFlags<KDDockWidgets::MainWindowOption> arg__1)
|
||||
const char *c_static_KDDockWidgets__qt_getEnumName_MainWindowOptions(int arg__1_)
|
||||
{
|
||||
auto arg__1 = static_cast<QFlags<KDDockWidgets::MainWindowOption>>(arg__1_);
|
||||
return
|
||||
// tag=1068
|
||||
KDDockWidgets::qt_getEnumName(arg__1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,10 +15,6 @@
|
||||
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::qt_getEnumName(QFlags<KDDockWidgets::MainWindowOption> arg__1)
|
||||
KDDockWidgetsBindings_EXPORT const char *c_static_KDDockWidgets__qt_getEnumName_MainWindowOptions(int arg__1_);
|
||||
|
||||
// tag=1047
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets_Finalizer(void *, void *cppObj, void *);
|
||||
}
|
||||
|
||||
@@ -27,6 +27,11 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1006
|
||||
Layout_wrapper::Layout_wrapper(KDDockWidgets::Type arg__1, KDDockWidgets::View *arg__2)
|
||||
: ::KDDockWidgets::Controllers::Layout(arg__1, arg__2)
|
||||
{
|
||||
}
|
||||
KDDockWidgets::Controllers::DropArea *Layout_wrapper::asDropArea() const
|
||||
{
|
||||
// tag=1000
|
||||
@@ -242,6 +247,14 @@ void c_KDDockWidgets__Controllers__Layout_Finalizer(void *, void *cppObj, void *
|
||||
{
|
||||
delete reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Layout_wrapper *>(cppObj);
|
||||
}
|
||||
void *c_KDDockWidgets__Controllers__Layout__constructor_Type_View(int arg__1, void *arg__2_)
|
||||
{
|
||||
auto arg__2 = reinterpret_cast<KDDockWidgets::View *>(arg__2_);
|
||||
// tag=1056
|
||||
auto ptr = new KDDockWidgetsBindings_wrappersNS::Layout_wrapper(static_cast<KDDockWidgets::Type>(arg__1), arg__2);
|
||||
return reinterpret_cast<void *>(ptr);
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// asDropArea() const
|
||||
void *c_KDDockWidgets__Controllers__Layout__asDropArea(void *thisObj)
|
||||
@@ -452,16 +465,16 @@ void c_KDDockWidgets__Controllers__Layout__registerVirtualMethodCallback(void *p
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Layout_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Layout_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Layout_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
case 692:
|
||||
case 695:
|
||||
wrapper->m_setParentView_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Layout_wrapper::Callback_setParentView_impl>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -12,14 +12,14 @@
|
||||
// tag=1040
|
||||
#include "KDDockWidgetsBindings_exports.h"
|
||||
#include <controllers/Layout.h>
|
||||
#include <View.h>
|
||||
#include <qsize.h>
|
||||
#include <DropArea.h>
|
||||
#include <qcoreevent.h>
|
||||
#include <View.h>
|
||||
#include <qrect.h>
|
||||
#include <qpoint.h>
|
||||
#include <qstring.h>
|
||||
#include <qrect.h>
|
||||
#include <qobject.h>
|
||||
#include <qstring.h>
|
||||
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1017
|
||||
@@ -28,6 +28,8 @@ class Layout_wrapper : public ::KDDockWidgets::Controllers::Layout
|
||||
public:
|
||||
~Layout_wrapper();
|
||||
// tag=1041
|
||||
Layout_wrapper(KDDockWidgets::Type arg__1, KDDockWidgets::View *arg__2);
|
||||
// tag=1041
|
||||
KDDockWidgets::Controllers::DropArea *asDropArea() const;
|
||||
// tag=1041
|
||||
bool checkSanity() const;
|
||||
@@ -93,6 +95,10 @@ public:
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controllers::Layout::Layout(KDDockWidgets::Type arg__1, KDDockWidgets::View * arg__2)
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Controllers__Layout__constructor_Type_View(int arg__1, void *arg__2_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controllers::Layout::asDropArea() const
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Controllers__Layout__asDropArea(void *thisObj);
|
||||
|
||||
@@ -916,94 +916,94 @@ void c_KDDockWidgets__Platform_flutter__registerVirtualMethodCallback(void *ptr,
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 624:
|
||||
case 625:
|
||||
wrapper->m_applicationNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_applicationName>(callback);
|
||||
break;
|
||||
case 625:
|
||||
case 626:
|
||||
wrapper->m_createDefaultViewFactoryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_createDefaultViewFactory>(callback);
|
||||
break;
|
||||
case 626:
|
||||
case 627:
|
||||
wrapper->m_createViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_createView>(callback);
|
||||
break;
|
||||
case 627:
|
||||
case 628:
|
||||
wrapper->m_hasActivePopupCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_hasActivePopup>(callback);
|
||||
break;
|
||||
case 628:
|
||||
case 629:
|
||||
wrapper->m_inDisallowedDragViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_inDisallowedDragView>(callback);
|
||||
break;
|
||||
case 630:
|
||||
case 631:
|
||||
wrapper->m_installMessageHandlerCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_installMessageHandler>(callback);
|
||||
break;
|
||||
case 631:
|
||||
case 632:
|
||||
wrapper->m_isLeftMouseButtonPressedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_isLeftMouseButtonPressed>(callback);
|
||||
break;
|
||||
case 632:
|
||||
case 633:
|
||||
wrapper->m_isProcessingAppQuitEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_isProcessingAppQuitEvent>(callback);
|
||||
break;
|
||||
case 633:
|
||||
case 634:
|
||||
wrapper->m_nameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_name>(callback);
|
||||
break;
|
||||
case 634:
|
||||
case 635:
|
||||
wrapper->m_organizationNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_organizationName>(callback);
|
||||
break;
|
||||
case 635:
|
||||
case 636:
|
||||
wrapper->m_restoreMouseCursorCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_restoreMouseCursor>(callback);
|
||||
break;
|
||||
case 636:
|
||||
case 637:
|
||||
wrapper->m_screenNumberForCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_screenNumberFor>(callback);
|
||||
break;
|
||||
case 637:
|
||||
case 638:
|
||||
wrapper->m_screenSizeForCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_screenSizeFor>(callback);
|
||||
break;
|
||||
case 638:
|
||||
case 639:
|
||||
wrapper->m_sendEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_sendEvent>(callback);
|
||||
break;
|
||||
case 639:
|
||||
case 640:
|
||||
wrapper->m_setMouseCursorCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_setMouseCursor>(callback);
|
||||
break;
|
||||
case 640:
|
||||
case 641:
|
||||
wrapper->m_tests_createFocusableViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_createFocusableView>(callback);
|
||||
break;
|
||||
case 641:
|
||||
case 642:
|
||||
wrapper->m_tests_createNonClosableViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_createNonClosableView>(callback);
|
||||
break;
|
||||
case 642:
|
||||
case 643:
|
||||
wrapper->m_tests_createViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_createView>(callback);
|
||||
break;
|
||||
case 643:
|
||||
case 644:
|
||||
wrapper->m_tests_deinitPlatform_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_deinitPlatform_impl>(callback);
|
||||
break;
|
||||
case 644:
|
||||
case 645:
|
||||
wrapper->m_tests_initPlatform_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_initPlatform_impl>(callback);
|
||||
break;
|
||||
case 645:
|
||||
case 646:
|
||||
wrapper->m_tests_waitCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_wait>(callback);
|
||||
break;
|
||||
case 646:
|
||||
case 647:
|
||||
wrapper->m_tests_waitForDeletedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForDeleted>(callback);
|
||||
break;
|
||||
case 647:
|
||||
case 648:
|
||||
wrapper->m_tests_waitForDeleted_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForDeleted_2>(callback);
|
||||
break;
|
||||
case 648:
|
||||
case 649:
|
||||
wrapper->m_tests_waitForEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForEvent>(callback);
|
||||
break;
|
||||
case 649:
|
||||
case 650:
|
||||
wrapper->m_tests_waitForEvent_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForEvent_2>(callback);
|
||||
break;
|
||||
case 650:
|
||||
case 651:
|
||||
wrapper->m_tests_waitForResizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForResize>(callback);
|
||||
break;
|
||||
case 651:
|
||||
case 652:
|
||||
wrapper->m_tests_waitForResize_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_tests_waitForResize_2>(callback);
|
||||
break;
|
||||
case 652:
|
||||
case 653:
|
||||
wrapper->m_ungrabMouseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_ungrabMouse>(callback);
|
||||
break;
|
||||
case 653:
|
||||
case 654:
|
||||
wrapper->m_uninstallMessageHandlerCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_uninstallMessageHandler>(callback);
|
||||
break;
|
||||
case 654:
|
||||
case 655:
|
||||
wrapper->m_usesFallbackMouseGrabberCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::Platform_flutter_wrapper::Callback_usesFallbackMouseGrabber>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -590,13 +590,13 @@ void c_QObject__registerVirtualMethodCallback(void *ptr, void *callback, int met
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::QObject_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::QObject_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::QObject_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -27,13 +27,4 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1050
|
||||
// qt_getEnumName(Qt::CursorShape arg__1)
|
||||
const char *c_static_Qt__qt_getEnumName_CursorShape(int arg__1)
|
||||
{
|
||||
return
|
||||
// tag=1068
|
||||
Qt::qt_getEnumName(static_cast<Qt::CursorShape>(arg__1));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,10 +15,6 @@
|
||||
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// Qt::qt_getEnumName(Qt::CursorShape arg__1)
|
||||
KDDockWidgetsBindings_EXPORT const char *c_static_Qt__qt_getEnumName_CursorShape(int arg__1);
|
||||
|
||||
// tag=1047
|
||||
KDDockWidgetsBindings_EXPORT void c_Qt_Finalizer(void *, void *cppObj, void *);
|
||||
}
|
||||
|
||||
@@ -235,19 +235,19 @@ void c_KDDockWidgets__ViewFactory_flutter__registerVirtualMethodCallback(void *p
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
case 593:
|
||||
wrapper->m_createDropAreaCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_flutter_wrapper::Callback_createDropArea>(callback);
|
||||
break;
|
||||
case 593:
|
||||
case 594:
|
||||
wrapper->m_createRubberBandCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_flutter_wrapper::Callback_createRubberBand>(callback);
|
||||
break;
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_flutter_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_flutter_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_flutter_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -243,19 +243,19 @@ void c_KDDockWidgets__ViewFactory__registerVirtualMethodCallback(void *ptr, void
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
case 593:
|
||||
wrapper->m_createDropAreaCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_wrapper::Callback_createDropArea>(callback);
|
||||
break;
|
||||
case 593:
|
||||
case 594:
|
||||
wrapper->m_createRubberBandCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_wrapper::Callback_createRubberBand>(callback);
|
||||
break;
|
||||
case 294:
|
||||
case 295:
|
||||
wrapper->m_customEventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_wrapper::Callback_customEvent>(callback);
|
||||
break;
|
||||
case 305:
|
||||
case 306:
|
||||
wrapper->m_eventCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_wrapper::Callback_event>(callback);
|
||||
break;
|
||||
case 306:
|
||||
case 307:
|
||||
wrapper->m_eventFilterCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::ViewFactory_wrapper::Callback_eventFilter>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
#include <qstring.h>
|
||||
#include <View.h>
|
||||
#include <DropArea.h>
|
||||
#include <qobject.h>
|
||||
#include <qcoreevent.h>
|
||||
#include <qobject.h>
|
||||
#include <qlist.h>
|
||||
#include <qbytearray.h>
|
||||
|
||||
|
||||
@@ -27,6 +27,11 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1006
|
||||
View_flutter_wrapper::View_flutter_wrapper(KDDockWidgets::Controller *controller, KDDockWidgets::Type type, KDDockWidgets::Views::View_flutter *arg__3, Qt::WindowFlags windowFlags)
|
||||
: ::KDDockWidgets::Views::View_flutter(controller, type, arg__3, windowFlags)
|
||||
{
|
||||
}
|
||||
void View_flutter_wrapper::activateWindow()
|
||||
{
|
||||
// tag=1000
|
||||
@@ -81,6 +86,24 @@ void View_flutter_wrapper::createPlatformWindow_nocallback()
|
||||
// tag=1003
|
||||
::KDDockWidgets::Views::View_flutter::createPlatformWindow();
|
||||
}
|
||||
Qt::WindowFlags View_flutter_wrapper::flags() const
|
||||
{
|
||||
// tag=1000
|
||||
if (m_flagsCallback) {
|
||||
// tag=1001
|
||||
const void *thisPtr = this;
|
||||
return m_flagsCallback(const_cast<void *>(thisPtr));
|
||||
} else {
|
||||
// tag=1002
|
||||
return ::KDDockWidgets::Views::View_flutter::flags();
|
||||
}
|
||||
}
|
||||
// tag=1009
|
||||
Qt::WindowFlags View_flutter_wrapper::flags_nocallback() const
|
||||
{
|
||||
// tag=1003
|
||||
return ::KDDockWidgets::Views::View_flutter::flags();
|
||||
}
|
||||
void View_flutter_wrapper::free_impl()
|
||||
{
|
||||
// tag=1000
|
||||
@@ -1019,6 +1042,15 @@ void c_KDDockWidgets__Views__View_flutter_Finalizer(void *, void *cppObj, void *
|
||||
{
|
||||
delete reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper *>(cppObj);
|
||||
}
|
||||
void *c_KDDockWidgets__Views__View_flutter__constructor_Controller_Type_View_flutter_WindowFlags(void *controller_, int type, void *arg__3_, int windowFlags)
|
||||
{
|
||||
auto controller = reinterpret_cast<KDDockWidgets::Controller *>(controller_);
|
||||
auto arg__3 = reinterpret_cast<KDDockWidgets::Views::View_flutter *>(arg__3_);
|
||||
// tag=1056
|
||||
auto ptr = new KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper(controller, static_cast<KDDockWidgets::Type>(type), arg__3, static_cast<Qt::WindowFlags>(windowFlags));
|
||||
return reinterpret_cast<void *>(ptr);
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// activateWindow()
|
||||
void c_KDDockWidgets__Views__View_flutter__activateWindow(void *thisObj)
|
||||
@@ -1044,6 +1076,15 @@ void c_KDDockWidgets__Views__View_flutter__createPlatformWindow(void *thisObj)
|
||||
[&] {auto targetPtr = fromPtr(thisObj);auto wrapperPtr = dynamic_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper*>(targetPtr);if (wrapperPtr) { return wrapperPtr->createPlatformWindow_nocallback();} else { return targetPtr->createPlatformWindow();} }();
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// flags() const
|
||||
int c_KDDockWidgets__Views__View_flutter__flags(void *thisObj)
|
||||
{
|
||||
return
|
||||
// tag=1016
|
||||
[&] {auto targetPtr = fromPtr(thisObj);auto wrapperPtr = dynamic_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper*>(targetPtr);if (wrapperPtr) { return wrapperPtr->flags_nocallback();} else { return targetPtr->flags();} }();
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// free_impl()
|
||||
void c_KDDockWidgets__Views__View_flutter__free_impl(void *thisObj)
|
||||
@@ -1522,163 +1563,166 @@ void c_KDDockWidgets__Views__View_flutter__registerVirtualMethodCallback(void *p
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 704:
|
||||
case 709:
|
||||
wrapper->m_activateWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_activateWindow>(callback);
|
||||
break;
|
||||
case 708:
|
||||
case 713:
|
||||
wrapper->m_closeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_close>(callback);
|
||||
break;
|
||||
case 711:
|
||||
case 716:
|
||||
wrapper->m_createPlatformWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_createPlatformWindow>(callback);
|
||||
break;
|
||||
case 715:
|
||||
case 721:
|
||||
wrapper->m_flagsCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_flags>(callback);
|
||||
break;
|
||||
case 723:
|
||||
wrapper->m_free_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_free_impl>(callback);
|
||||
break;
|
||||
case 717:
|
||||
case 725:
|
||||
wrapper->m_geometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_geometry>(callback);
|
||||
break;
|
||||
case 719:
|
||||
case 727:
|
||||
wrapper->m_grabMouseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_grabMouse>(callback);
|
||||
break;
|
||||
case 722:
|
||||
case 730:
|
||||
wrapper->m_hasFocusCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_hasFocus>(callback);
|
||||
break;
|
||||
case 724:
|
||||
case 732:
|
||||
wrapper->m_hideCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_hide>(callback);
|
||||
break;
|
||||
case 727:
|
||||
case 735:
|
||||
wrapper->m_initCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_init>(callback);
|
||||
break;
|
||||
case 728:
|
||||
case 737:
|
||||
wrapper->m_isActiveWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isActiveWindow>(callback);
|
||||
break;
|
||||
case 729:
|
||||
case 738:
|
||||
wrapper->m_isMaximizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isMaximized>(callback);
|
||||
break;
|
||||
case 730:
|
||||
case 739:
|
||||
wrapper->m_isMinimizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isMinimized>(callback);
|
||||
break;
|
||||
case 731:
|
||||
case 740:
|
||||
wrapper->m_isNullCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isNull>(callback);
|
||||
break;
|
||||
case 732:
|
||||
case 741:
|
||||
wrapper->m_isRootViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isRootView>(callback);
|
||||
break;
|
||||
case 733:
|
||||
case 742:
|
||||
wrapper->m_isVisibleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_isVisible>(callback);
|
||||
break;
|
||||
case 734:
|
||||
case 743:
|
||||
wrapper->m_mapFromGlobalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_mapFromGlobal>(callback);
|
||||
break;
|
||||
case 735:
|
||||
case 744:
|
||||
wrapper->m_mapToCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_mapTo>(callback);
|
||||
break;
|
||||
case 736:
|
||||
case 745:
|
||||
wrapper->m_mapToGlobalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_mapToGlobal>(callback);
|
||||
break;
|
||||
case 737:
|
||||
case 746:
|
||||
wrapper->m_maxSizeHintCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_maxSizeHint>(callback);
|
||||
break;
|
||||
case 738:
|
||||
case 747:
|
||||
wrapper->m_maximumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_maximumSize>(callback);
|
||||
break;
|
||||
case 739:
|
||||
case 748:
|
||||
wrapper->m_minSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_minSize>(callback);
|
||||
break;
|
||||
case 740:
|
||||
case 749:
|
||||
wrapper->m_minimumHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_minimumHeight>(callback);
|
||||
break;
|
||||
case 741:
|
||||
case 750:
|
||||
wrapper->m_minimumWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_minimumWidth>(callback);
|
||||
break;
|
||||
case 743:
|
||||
case 752:
|
||||
wrapper->m_move_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_move_2>(callback);
|
||||
break;
|
||||
case 744:
|
||||
case 753:
|
||||
wrapper->m_normalGeometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_normalGeometry>(callback);
|
||||
break;
|
||||
case 745:
|
||||
case 754:
|
||||
wrapper->m_objectNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_objectName>(callback);
|
||||
break;
|
||||
case 746:
|
||||
case 755:
|
||||
wrapper->m_onResizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_onResize>(callback);
|
||||
break;
|
||||
case 749:
|
||||
case 758:
|
||||
wrapper->m_raiseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_raise>(callback);
|
||||
break;
|
||||
case 750:
|
||||
case 759:
|
||||
wrapper->m_raiseAndActivateCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_raiseAndActivate>(callback);
|
||||
break;
|
||||
case 752:
|
||||
case 761:
|
||||
wrapper->m_releaseKeyboardCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_releaseKeyboard>(callback);
|
||||
break;
|
||||
case 753:
|
||||
case 762:
|
||||
wrapper->m_releaseMouseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_releaseMouse>(callback);
|
||||
break;
|
||||
case 757:
|
||||
case 766:
|
||||
wrapper->m_setCursorCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setCursor>(callback);
|
||||
break;
|
||||
case 758:
|
||||
case 767:
|
||||
wrapper->m_setFixedHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setFixedHeight>(callback);
|
||||
break;
|
||||
case 759:
|
||||
case 768:
|
||||
wrapper->m_setFixedWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setFixedWidth>(callback);
|
||||
break;
|
||||
case 760:
|
||||
case 769:
|
||||
wrapper->m_setGeometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setGeometry>(callback);
|
||||
break;
|
||||
case 761:
|
||||
case 770:
|
||||
wrapper->m_setHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setHeight>(callback);
|
||||
break;
|
||||
case 762:
|
||||
case 771:
|
||||
wrapper->m_setMaximumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setMaximumSize>(callback);
|
||||
break;
|
||||
case 763:
|
||||
case 772:
|
||||
wrapper->m_setMinimumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setMinimumSize>(callback);
|
||||
break;
|
||||
case 764:
|
||||
case 773:
|
||||
wrapper->m_setMouseTrackingCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setMouseTracking>(callback);
|
||||
break;
|
||||
case 765:
|
||||
case 774:
|
||||
wrapper->m_setObjectNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setObjectName>(callback);
|
||||
break;
|
||||
case 766:
|
||||
case 775:
|
||||
wrapper->m_setParentCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setParent>(callback);
|
||||
break;
|
||||
case 768:
|
||||
case 777:
|
||||
wrapper->m_setSize_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setSize_2>(callback);
|
||||
break;
|
||||
case 769:
|
||||
case 778:
|
||||
wrapper->m_setVisibleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setVisible>(callback);
|
||||
break;
|
||||
case 770:
|
||||
case 779:
|
||||
wrapper->m_setWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setWidth>(callback);
|
||||
break;
|
||||
case 771:
|
||||
case 780:
|
||||
wrapper->m_setWindowOpacityCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setWindowOpacity>(callback);
|
||||
break;
|
||||
case 772:
|
||||
case 781:
|
||||
wrapper->m_setWindowTitleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setWindowTitle>(callback);
|
||||
break;
|
||||
case 773:
|
||||
case 782:
|
||||
wrapper->m_setZOrderCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_setZOrder>(callback);
|
||||
break;
|
||||
case 774:
|
||||
case 783:
|
||||
wrapper->m_showCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_show>(callback);
|
||||
break;
|
||||
case 775:
|
||||
case 784:
|
||||
wrapper->m_showMaximizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_showMaximized>(callback);
|
||||
break;
|
||||
case 776:
|
||||
case 785:
|
||||
wrapper->m_showMinimizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_showMinimized>(callback);
|
||||
break;
|
||||
case 777:
|
||||
case 786:
|
||||
wrapper->m_showNormalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_showNormal>(callback);
|
||||
break;
|
||||
case 779:
|
||||
case 788:
|
||||
wrapper->m_sizeHintCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_sizeHint>(callback);
|
||||
break;
|
||||
case 780:
|
||||
case 790:
|
||||
wrapper->m_updateCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_flutter_wrapper::Callback_update>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
// tag=1040
|
||||
#include "KDDockWidgetsBindings_exports.h"
|
||||
#include <View_flutter.h>
|
||||
#include <Controller.h>
|
||||
#include <qsize.h>
|
||||
#include <qrect.h>
|
||||
#include <View.h>
|
||||
@@ -19,7 +20,6 @@
|
||||
#include <qstring.h>
|
||||
#include <DropArea.h>
|
||||
#include <controllers/Layout.h>
|
||||
#include <Controller.h>
|
||||
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1017
|
||||
@@ -28,6 +28,8 @@ class View_flutter_wrapper : public ::KDDockWidgets::Views::View_flutter
|
||||
public:
|
||||
~View_flutter_wrapper();
|
||||
// tag=1041
|
||||
View_flutter_wrapper(KDDockWidgets::Controller *controller, KDDockWidgets::Type type, KDDockWidgets::Views::View_flutter *arg__3, Qt::WindowFlags windowFlags = {});
|
||||
// tag=1041
|
||||
virtual void activateWindow();
|
||||
// tag=1008
|
||||
virtual void activateWindow_nocallback();
|
||||
@@ -40,6 +42,10 @@ public:
|
||||
// tag=1008
|
||||
virtual void createPlatformWindow_nocallback();
|
||||
// tag=1041
|
||||
virtual Qt::WindowFlags flags() const;
|
||||
// tag=1008
|
||||
virtual Qt::WindowFlags flags_nocallback() const;
|
||||
// tag=1041
|
||||
virtual void free_impl();
|
||||
// tag=1008
|
||||
virtual void free_impl_nocallback();
|
||||
@@ -253,6 +259,9 @@ public:
|
||||
typedef void (*Callback_createPlatformWindow)(void *);
|
||||
Callback_createPlatformWindow m_createPlatformWindowCallback = nullptr;
|
||||
// tag=1042
|
||||
typedef Qt::WindowFlags (*Callback_flags)(void *);
|
||||
Callback_flags m_flagsCallback = nullptr;
|
||||
// tag=1042
|
||||
typedef void (*Callback_free_impl)(void *);
|
||||
Callback_free_impl m_free_implCallback = nullptr;
|
||||
// tag=1042
|
||||
@@ -406,6 +415,10 @@ public:
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::View_flutter(KDDockWidgets::Controller * controller, KDDockWidgets::Type type, KDDockWidgets::Views::View_flutter * arg__3, Qt::WindowFlags windowFlags)
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__Views__View_flutter__constructor_Controller_Type_View_flutter_WindowFlags(void *controller_, int type, void *arg__3_, int windowFlags);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::activateWindow()
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__Views__View_flutter__activateWindow(void *thisObj);
|
||||
@@ -418,6 +431,10 @@ KDDockWidgetsBindings_EXPORT bool c_KDDockWidgets__Views__View_flutter__close(vo
|
||||
// KDDockWidgets::Views::View_flutter::createPlatformWindow()
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__Views__View_flutter__createPlatformWindow(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::flags() const
|
||||
KDDockWidgetsBindings_EXPORT int c_KDDockWidgets__Views__View_flutter__flags(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::free_impl()
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__Views__View_flutter__free_impl(void *thisObj);
|
||||
|
||||
@@ -27,6 +27,11 @@ struct ValueWrapper
|
||||
|
||||
}
|
||||
namespace KDDockWidgetsBindings_wrappersNS {
|
||||
// tag=1006
|
||||
View_wrapper::View_wrapper(KDDockWidgets::Controller *controller, KDDockWidgets::Type arg__2)
|
||||
: ::KDDockWidgets::View(controller, arg__2)
|
||||
{
|
||||
}
|
||||
bool View_wrapper::aboutToBeDestroyed() const
|
||||
{
|
||||
// tag=1000
|
||||
@@ -145,6 +150,42 @@ bool View_wrapper::equals(const KDDockWidgets::View *other) const
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::View::equals(other);
|
||||
}
|
||||
KDDockWidgets::Controller *View_wrapper::firstParentOfType(KDDockWidgets::Type arg__1) const
|
||||
{
|
||||
// tag=1000
|
||||
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::View::firstParentOfType(arg__1);
|
||||
}
|
||||
KDDockWidgets::Controller *View_wrapper::firstParentOfType(KDDockWidgets::View *view, KDDockWidgets::Type arg__2)
|
||||
{
|
||||
// tag=1000
|
||||
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::View::firstParentOfType(view, arg__2);
|
||||
}
|
||||
Qt::WindowFlags View_wrapper::flags() const
|
||||
{
|
||||
// tag=1000
|
||||
if (m_flagsCallback) {
|
||||
// tag=1001
|
||||
const void *thisPtr = this;
|
||||
return m_flagsCallback(const_cast<void *>(thisPtr));
|
||||
} else {
|
||||
// tag=1015
|
||||
qWarning() << Q_FUNC_INFO << "Warning: Calling pure-virtual";
|
||||
return {};
|
||||
}
|
||||
}
|
||||
// tag=1009
|
||||
Qt::WindowFlags View_wrapper::flags_nocallback() const
|
||||
{
|
||||
// tag=1003
|
||||
|
||||
// tag=1007
|
||||
qWarning() << Q_FUNC_INFO << "Warning: Calling pure-virtual";
|
||||
return {};
|
||||
}
|
||||
void View_wrapper::free()
|
||||
{
|
||||
// tag=1000
|
||||
@@ -1303,6 +1344,13 @@ QSize View_wrapper::sizeHint_nocallback() const
|
||||
// tag=1003
|
||||
return ::KDDockWidgets::View::sizeHint();
|
||||
}
|
||||
KDDockWidgets::Type View_wrapper::type() const
|
||||
{
|
||||
// tag=1000
|
||||
|
||||
// tag=1004
|
||||
return ::KDDockWidgets::View::type();
|
||||
}
|
||||
void View_wrapper::update()
|
||||
{
|
||||
// tag=1000
|
||||
@@ -1377,6 +1425,14 @@ void c_KDDockWidgets__View_Finalizer(void *, void *cppObj, void *)
|
||||
{
|
||||
delete reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper *>(cppObj);
|
||||
}
|
||||
void *c_KDDockWidgets__View__constructor_Controller_Type(void *controller_, int arg__2)
|
||||
{
|
||||
auto controller = reinterpret_cast<KDDockWidgets::Controller *>(controller_);
|
||||
// tag=1056
|
||||
auto ptr = new KDDockWidgetsBindings_wrappersNS::View_wrapper(controller, static_cast<KDDockWidgets::Type>(arg__2));
|
||||
return reinterpret_cast<void *>(ptr);
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// aboutToBeDestroyed() const
|
||||
bool c_KDDockWidgets__View__aboutToBeDestroyed(void *thisObj)
|
||||
@@ -1480,6 +1536,34 @@ bool c_KDDockWidgets__View__equals_View(void *thisObj, void *other_)
|
||||
fromPtr(thisObj)->equals(other);
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// firstParentOfType(KDDockWidgets::Type arg__1) const
|
||||
void *c_KDDockWidgets__View__firstParentOfType_Type(void *thisObj, int arg__1)
|
||||
{
|
||||
return
|
||||
// tag=1010
|
||||
fromPtr(thisObj)->firstParentOfType(static_cast<KDDockWidgets::Type>(arg__1));
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// firstParentOfType(KDDockWidgets::View * view, KDDockWidgets::Type arg__2)
|
||||
void *c_static_KDDockWidgets__View__firstParentOfType_View_Type(void *view_, int arg__2)
|
||||
{
|
||||
auto view = reinterpret_cast<KDDockWidgets::View *>(view_);
|
||||
return
|
||||
// tag=1068
|
||||
KDDockWidgetsBindings_wrappersNS::View_wrapper::firstParentOfType(view, static_cast<KDDockWidgets::Type>(arg__2));
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// flags() const
|
||||
int c_KDDockWidgets__View__flags(void *thisObj)
|
||||
{
|
||||
return
|
||||
// tag=1016
|
||||
[&] {auto targetPtr = fromPtr(thisObj);auto wrapperPtr = dynamic_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper*>(targetPtr);if (wrapperPtr) { return wrapperPtr->flags_nocallback();} else { return targetPtr->flags();} }();
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// free()
|
||||
void c_KDDockWidgets__View__free(void *thisObj)
|
||||
@@ -2080,6 +2164,15 @@ void *c_KDDockWidgets__View__sizeHint(void *thisObj)
|
||||
new Dartagnan::ValueWrapper<QSize> { [&] {auto targetPtr = fromPtr(thisObj);auto wrapperPtr = dynamic_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper*>(targetPtr);if (wrapperPtr) { return wrapperPtr->sizeHint_nocallback();} else { return targetPtr->sizeHint();} }() };
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// type() const
|
||||
int c_KDDockWidgets__View__type(void *thisObj)
|
||||
{
|
||||
return
|
||||
// tag=1010
|
||||
fromPtr(thisObj)->type();
|
||||
}
|
||||
|
||||
// tag=1050
|
||||
// update()
|
||||
void c_KDDockWidgets__View__update(void *thisObj)
|
||||
@@ -2136,163 +2229,166 @@ void c_KDDockWidgets__View__registerVirtualMethodCallback(void *ptr, void *callb
|
||||
// tag=1048
|
||||
auto wrapper = fromWrapperPtr(ptr);
|
||||
switch (methodId) {
|
||||
case 704:
|
||||
case 709:
|
||||
wrapper->m_activateWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_activateWindow>(callback);
|
||||
break;
|
||||
case 708:
|
||||
case 713:
|
||||
wrapper->m_closeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_close>(callback);
|
||||
break;
|
||||
case 711:
|
||||
case 716:
|
||||
wrapper->m_createPlatformWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_createPlatformWindow>(callback);
|
||||
break;
|
||||
case 715:
|
||||
case 721:
|
||||
wrapper->m_flagsCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_flags>(callback);
|
||||
break;
|
||||
case 723:
|
||||
wrapper->m_free_implCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_free_impl>(callback);
|
||||
break;
|
||||
case 717:
|
||||
case 725:
|
||||
wrapper->m_geometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_geometry>(callback);
|
||||
break;
|
||||
case 719:
|
||||
case 727:
|
||||
wrapper->m_grabMouseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_grabMouse>(callback);
|
||||
break;
|
||||
case 722:
|
||||
case 730:
|
||||
wrapper->m_hasFocusCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_hasFocus>(callback);
|
||||
break;
|
||||
case 724:
|
||||
case 732:
|
||||
wrapper->m_hideCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_hide>(callback);
|
||||
break;
|
||||
case 727:
|
||||
case 735:
|
||||
wrapper->m_initCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_init>(callback);
|
||||
break;
|
||||
case 728:
|
||||
case 737:
|
||||
wrapper->m_isActiveWindowCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isActiveWindow>(callback);
|
||||
break;
|
||||
case 729:
|
||||
case 738:
|
||||
wrapper->m_isMaximizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isMaximized>(callback);
|
||||
break;
|
||||
case 730:
|
||||
case 739:
|
||||
wrapper->m_isMinimizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isMinimized>(callback);
|
||||
break;
|
||||
case 731:
|
||||
case 740:
|
||||
wrapper->m_isNullCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isNull>(callback);
|
||||
break;
|
||||
case 732:
|
||||
case 741:
|
||||
wrapper->m_isRootViewCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isRootView>(callback);
|
||||
break;
|
||||
case 733:
|
||||
case 742:
|
||||
wrapper->m_isVisibleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_isVisible>(callback);
|
||||
break;
|
||||
case 734:
|
||||
case 743:
|
||||
wrapper->m_mapFromGlobalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_mapFromGlobal>(callback);
|
||||
break;
|
||||
case 735:
|
||||
case 744:
|
||||
wrapper->m_mapToCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_mapTo>(callback);
|
||||
break;
|
||||
case 736:
|
||||
case 745:
|
||||
wrapper->m_mapToGlobalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_mapToGlobal>(callback);
|
||||
break;
|
||||
case 737:
|
||||
case 746:
|
||||
wrapper->m_maxSizeHintCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_maxSizeHint>(callback);
|
||||
break;
|
||||
case 738:
|
||||
case 747:
|
||||
wrapper->m_maximumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_maximumSize>(callback);
|
||||
break;
|
||||
case 739:
|
||||
case 748:
|
||||
wrapper->m_minSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_minSize>(callback);
|
||||
break;
|
||||
case 740:
|
||||
case 749:
|
||||
wrapper->m_minimumHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_minimumHeight>(callback);
|
||||
break;
|
||||
case 741:
|
||||
case 750:
|
||||
wrapper->m_minimumWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_minimumWidth>(callback);
|
||||
break;
|
||||
case 743:
|
||||
case 752:
|
||||
wrapper->m_move_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_move_2>(callback);
|
||||
break;
|
||||
case 744:
|
||||
case 753:
|
||||
wrapper->m_normalGeometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_normalGeometry>(callback);
|
||||
break;
|
||||
case 745:
|
||||
case 754:
|
||||
wrapper->m_objectNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_objectName>(callback);
|
||||
break;
|
||||
case 746:
|
||||
case 755:
|
||||
wrapper->m_onResizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_onResize>(callback);
|
||||
break;
|
||||
case 749:
|
||||
case 758:
|
||||
wrapper->m_raiseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_raise>(callback);
|
||||
break;
|
||||
case 750:
|
||||
case 759:
|
||||
wrapper->m_raiseAndActivateCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_raiseAndActivate>(callback);
|
||||
break;
|
||||
case 752:
|
||||
case 761:
|
||||
wrapper->m_releaseKeyboardCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_releaseKeyboard>(callback);
|
||||
break;
|
||||
case 753:
|
||||
case 762:
|
||||
wrapper->m_releaseMouseCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_releaseMouse>(callback);
|
||||
break;
|
||||
case 757:
|
||||
case 766:
|
||||
wrapper->m_setCursorCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setCursor>(callback);
|
||||
break;
|
||||
case 758:
|
||||
case 767:
|
||||
wrapper->m_setFixedHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setFixedHeight>(callback);
|
||||
break;
|
||||
case 759:
|
||||
case 768:
|
||||
wrapper->m_setFixedWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setFixedWidth>(callback);
|
||||
break;
|
||||
case 760:
|
||||
case 769:
|
||||
wrapper->m_setGeometryCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setGeometry>(callback);
|
||||
break;
|
||||
case 761:
|
||||
case 770:
|
||||
wrapper->m_setHeightCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setHeight>(callback);
|
||||
break;
|
||||
case 762:
|
||||
case 771:
|
||||
wrapper->m_setMaximumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setMaximumSize>(callback);
|
||||
break;
|
||||
case 763:
|
||||
case 772:
|
||||
wrapper->m_setMinimumSizeCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setMinimumSize>(callback);
|
||||
break;
|
||||
case 764:
|
||||
case 773:
|
||||
wrapper->m_setMouseTrackingCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setMouseTracking>(callback);
|
||||
break;
|
||||
case 765:
|
||||
case 774:
|
||||
wrapper->m_setObjectNameCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setObjectName>(callback);
|
||||
break;
|
||||
case 766:
|
||||
case 775:
|
||||
wrapper->m_setParentCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setParent>(callback);
|
||||
break;
|
||||
case 768:
|
||||
case 777:
|
||||
wrapper->m_setSize_2Callback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setSize_2>(callback);
|
||||
break;
|
||||
case 769:
|
||||
case 778:
|
||||
wrapper->m_setVisibleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setVisible>(callback);
|
||||
break;
|
||||
case 770:
|
||||
case 779:
|
||||
wrapper->m_setWidthCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setWidth>(callback);
|
||||
break;
|
||||
case 771:
|
||||
case 780:
|
||||
wrapper->m_setWindowOpacityCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setWindowOpacity>(callback);
|
||||
break;
|
||||
case 772:
|
||||
case 781:
|
||||
wrapper->m_setWindowTitleCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setWindowTitle>(callback);
|
||||
break;
|
||||
case 773:
|
||||
case 782:
|
||||
wrapper->m_setZOrderCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_setZOrder>(callback);
|
||||
break;
|
||||
case 774:
|
||||
case 783:
|
||||
wrapper->m_showCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_show>(callback);
|
||||
break;
|
||||
case 775:
|
||||
case 784:
|
||||
wrapper->m_showMaximizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_showMaximized>(callback);
|
||||
break;
|
||||
case 776:
|
||||
case 785:
|
||||
wrapper->m_showMinimizedCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_showMinimized>(callback);
|
||||
break;
|
||||
case 777:
|
||||
case 786:
|
||||
wrapper->m_showNormalCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_showNormal>(callback);
|
||||
break;
|
||||
case 779:
|
||||
case 788:
|
||||
wrapper->m_sizeHintCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_sizeHint>(callback);
|
||||
break;
|
||||
case 780:
|
||||
case 790:
|
||||
wrapper->m_updateCallback = reinterpret_cast<KDDockWidgetsBindings_wrappersNS::View_wrapper::Callback_update>(callback);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
// tag=1040
|
||||
#include "KDDockWidgetsBindings_exports.h"
|
||||
#include <View.h>
|
||||
#include <Controller.h>
|
||||
#include <qsize.h>
|
||||
#include <qrect.h>
|
||||
#include <qpoint.h>
|
||||
#include <qstring.h>
|
||||
#include <Controller.h>
|
||||
#include <DropArea.h>
|
||||
#include <controllers/Layout.h>
|
||||
|
||||
@@ -27,6 +27,8 @@ class View_wrapper : public ::KDDockWidgets::View
|
||||
public:
|
||||
~View_wrapper();
|
||||
// tag=1041
|
||||
View_wrapper(KDDockWidgets::Controller *controller, KDDockWidgets::Type arg__2);
|
||||
// tag=1041
|
||||
bool aboutToBeDestroyed() const;
|
||||
// tag=1041
|
||||
virtual void activateWindow();
|
||||
@@ -55,6 +57,14 @@ public:
|
||||
// tag=1041
|
||||
bool equals(const KDDockWidgets::View *other) const;
|
||||
// tag=1041
|
||||
KDDockWidgets::Controller *firstParentOfType(KDDockWidgets::Type arg__1) const;
|
||||
// tag=1041
|
||||
static KDDockWidgets::Controller *firstParentOfType(KDDockWidgets::View *view, KDDockWidgets::Type arg__2);
|
||||
// tag=1041
|
||||
virtual Qt::WindowFlags flags() const;
|
||||
// tag=1008
|
||||
virtual Qt::WindowFlags flags_nocallback() const;
|
||||
// tag=1041
|
||||
void free();
|
||||
// tag=1041
|
||||
virtual void free_impl();
|
||||
@@ -283,6 +293,8 @@ public:
|
||||
// tag=1008
|
||||
virtual QSize sizeHint_nocallback() const;
|
||||
// tag=1041
|
||||
KDDockWidgets::Type type() const;
|
||||
// tag=1041
|
||||
virtual void update();
|
||||
// tag=1008
|
||||
virtual void update_nocallback();
|
||||
@@ -304,6 +316,9 @@ public:
|
||||
typedef void (*Callback_createPlatformWindow)(void *);
|
||||
Callback_createPlatformWindow m_createPlatformWindowCallback = nullptr;
|
||||
// tag=1042
|
||||
typedef Qt::WindowFlags (*Callback_flags)(void *);
|
||||
Callback_flags m_flagsCallback = nullptr;
|
||||
// tag=1042
|
||||
typedef void (*Callback_free_impl)(void *);
|
||||
Callback_free_impl m_free_implCallback = nullptr;
|
||||
// tag=1042
|
||||
@@ -457,6 +472,10 @@ public:
|
||||
}
|
||||
extern "C" {
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::View(KDDockWidgets::Controller * controller, KDDockWidgets::Type arg__2)
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__View__constructor_Controller_Type(void *controller_, int arg__2);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::aboutToBeDestroyed() const
|
||||
KDDockWidgetsBindings_EXPORT bool c_KDDockWidgets__View__aboutToBeDestroyed(void *thisObj);
|
||||
@@ -501,6 +520,18 @@ KDDockWidgetsBindings_EXPORT bool c_static_KDDockWidgets__View__equals_View_View
|
||||
// KDDockWidgets::View::equals(const KDDockWidgets::View * other) const
|
||||
KDDockWidgetsBindings_EXPORT bool c_KDDockWidgets__View__equals_View(void *thisObj, void *other_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::firstParentOfType(KDDockWidgets::Type arg__1) const
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__View__firstParentOfType_Type(void *thisObj, int arg__1);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::firstParentOfType(KDDockWidgets::View * view, KDDockWidgets::Type arg__2)
|
||||
KDDockWidgetsBindings_EXPORT void *c_static_KDDockWidgets__View__firstParentOfType_View_Type(void *view_, int arg__2);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::flags() const
|
||||
KDDockWidgetsBindings_EXPORT int c_KDDockWidgets__View__flags(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::free()
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__View__free(void *thisObj);
|
||||
@@ -761,6 +792,10 @@ KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__View__size(void *thisObj);
|
||||
// KDDockWidgets::View::sizeHint() const
|
||||
KDDockWidgetsBindings_EXPORT void *c_KDDockWidgets__View__sizeHint(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::type() const
|
||||
KDDockWidgetsBindings_EXPORT int c_KDDockWidgets__View__type(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::update()
|
||||
KDDockWidgetsBindings_EXPORT void c_KDDockWidgets__View__update(void *thisObj);
|
||||
|
||||
@@ -12,10 +12,6 @@
|
||||
#include <QtCore/qglobal.h>
|
||||
|
||||
|
||||
// tag=1067
|
||||
// Qt::qt_getEnumName(Qt::CursorShape arg__1)
|
||||
const char *c_static_Qt__qt_getEnumName_CursorShape(int arg__1);
|
||||
|
||||
// tag=1047
|
||||
void c_Qt_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
@@ -1629,10 +1625,6 @@ void c_QByteArray__destructor(void *thisObj);
|
||||
|
||||
// tag=1047
|
||||
void c_QByteArray_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
// KDDockWidgets::qt_getEnumName(QFlags<KDDockWidgets::MainWindowOption> arg__1)
|
||||
const char *c_static_KDDockWidgets__qt_getEnumName_MainWindowOptions(int arg__1_);
|
||||
|
||||
// tag=1047
|
||||
void c_KDDockWidgets_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
@@ -1873,6 +1865,10 @@ void c_KDDockWidgets__CreateViewOptions___set_createWindow_bool(void *thisObj, b
|
||||
void c_KDDockWidgets__CreateViewOptions_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1047
|
||||
void c_KDDockWidgets__Controllers_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::Controller(KDDockWidgets::Type type, KDDockWidgets::View * arg__2)
|
||||
void *c_KDDockWidgets__Controller__constructor_Type_View(int type, void *arg__2_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::close()
|
||||
bool c_KDDockWidgets__Controller__close(void *thisObj);
|
||||
@@ -1947,6 +1943,10 @@ void *c_KDDockWidgets__Controller__size(void *thisObj);
|
||||
// KDDockWidgets::Controller::tr(const char * s, const char * c, int n)
|
||||
void *c_static_KDDockWidgets__Controller__tr_char_char_int(const char *s, const char *c, int n);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::type() const
|
||||
int c_KDDockWidgets__Controller__type(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controller::view() const
|
||||
void *c_KDDockWidgets__Controller__view(void *thisObj);
|
||||
@@ -1970,6 +1970,10 @@ void c_KDDockWidgets__Controller__destructor(void *thisObj);
|
||||
void c_KDDockWidgets__Controller__registerVirtualMethodCallback(void *ptr, void *callback, int methodId);
|
||||
// tag=1047
|
||||
void c_KDDockWidgets__Controller_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::View(KDDockWidgets::Controller * controller, KDDockWidgets::Type arg__2)
|
||||
void *c_KDDockWidgets__View__constructor_Controller_Type(void *controller_, int arg__2);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::aboutToBeDestroyed() const
|
||||
bool c_KDDockWidgets__View__aboutToBeDestroyed(void *thisObj);
|
||||
@@ -2014,6 +2018,18 @@ bool c_static_KDDockWidgets__View__equals_View_View(void *one_, void *two_);
|
||||
// KDDockWidgets::View::equals(const KDDockWidgets::View * other) const
|
||||
bool c_KDDockWidgets__View__equals_View(void *thisObj, void *other_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::firstParentOfType(KDDockWidgets::Type arg__1) const
|
||||
void *c_KDDockWidgets__View__firstParentOfType_Type(void *thisObj, int arg__1);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::firstParentOfType(KDDockWidgets::View * view, KDDockWidgets::Type arg__2)
|
||||
void *c_static_KDDockWidgets__View__firstParentOfType_View_Type(void *view_, int arg__2);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::flags() const
|
||||
int c_KDDockWidgets__View__flags(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::free()
|
||||
void c_KDDockWidgets__View__free(void *thisObj);
|
||||
@@ -2274,6 +2290,10 @@ void *c_KDDockWidgets__View__size(void *thisObj);
|
||||
// KDDockWidgets::View::sizeHint() const
|
||||
void *c_KDDockWidgets__View__sizeHint(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::type() const
|
||||
int c_KDDockWidgets__View__type(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::View::update()
|
||||
void c_KDDockWidgets__View__update(void *thisObj);
|
||||
@@ -2301,6 +2321,10 @@ void c_KDDockWidgets__View__destructor(void *thisObj);
|
||||
void c_KDDockWidgets__View__registerVirtualMethodCallback(void *ptr, void *callback, int methodId);
|
||||
// tag=1047
|
||||
void c_KDDockWidgets__View_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::View_flutter(KDDockWidgets::Controller * controller, KDDockWidgets::Type type, KDDockWidgets::Views::View_flutter * arg__3, Qt::WindowFlags windowFlags)
|
||||
void *c_KDDockWidgets__Views__View_flutter__constructor_Controller_Type_View_flutter_WindowFlags(void *controller_, int type, void *arg__3_, int windowFlags);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::activateWindow()
|
||||
void c_KDDockWidgets__Views__View_flutter__activateWindow(void *thisObj);
|
||||
@@ -2313,6 +2337,10 @@ bool c_KDDockWidgets__Views__View_flutter__close(void *thisObj);
|
||||
// KDDockWidgets::Views::View_flutter::createPlatformWindow()
|
||||
void c_KDDockWidgets__Views__View_flutter__createPlatformWindow(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::flags() const
|
||||
int c_KDDockWidgets__Views__View_flutter__flags(void *thisObj);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Views::View_flutter::free_impl()
|
||||
void c_KDDockWidgets__Views__View_flutter__free_impl(void *thisObj);
|
||||
@@ -2528,6 +2556,10 @@ void c_KDDockWidgets__Views__View_flutter__destructor(void *thisObj);
|
||||
void c_KDDockWidgets__Views__View_flutter__registerVirtualMethodCallback(void *ptr, void *callback, int methodId);
|
||||
// tag=1047
|
||||
void c_KDDockWidgets__Views__View_flutter_Finalizer(void *, void *cppObj, void *);
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controllers::Layout::Layout(KDDockWidgets::Type arg__1, KDDockWidgets::View * arg__2)
|
||||
void *c_KDDockWidgets__Controllers__Layout__constructor_Type_View(int arg__1, void *arg__2_);
|
||||
|
||||
// tag=1067
|
||||
// KDDockWidgets::Controllers::Layout::asDropArea() const
|
||||
void *c_KDDockWidgets__Controllers__Layout__asDropArea(void *thisObj);
|
||||
@@ -2742,4 +2774,4 @@ void *c_KDDockWidgets__Config__viewFactory(void *thisObj);
|
||||
void c_KDDockWidgets__Config__destructor(void *thisObj);
|
||||
|
||||
// tag=1047
|
||||
void c_KDDockWidgets__Config_Finalizer(void *, void *cppObj, void *);
|
||||
void c_KDDockWidgets__Config_Finalizer(void *, void *cppObj, void *);
|
||||
|
||||
@@ -20,7 +20,7 @@ export 'src/ViewFactory_flutter.dart' show ViewFactory_flutter;
|
||||
export 'src/ViewFactory.dart' show ViewFactory;
|
||||
export 'src/Views.dart' show asView_flutter, asView_flutter;
|
||||
export 'src/KDDockWidgets.dart'
|
||||
show qt_getEnumName, KDDockWidgets_MainWindowOption;
|
||||
show qt_getEnumName, KDDockWidgets_MainWindowOption, KDDockWidgets_Type;
|
||||
export 'src/QByteArray.dart' show QByteArray;
|
||||
export 'src/QEvent.dart' show QEvent, QEvent_Type;
|
||||
export 'src/QList.dart' show QList;
|
||||
@@ -29,7 +29,7 @@ export 'src/QPoint.dart' show QPoint;
|
||||
export 'src/QRect.dart' show QRect;
|
||||
export 'src/QSize.dart' show QSize;
|
||||
export 'src/QString.dart' show QString;
|
||||
export 'src/Qt.dart' show qt_getEnumName, Qt_CursorShape;
|
||||
export 'src/Qt.dart' show qt_getEnumName, qt_getEnumName, Qt_CursorShape;
|
||||
import 'dart:ffi' as ffi;
|
||||
import 'dart:io' show Platform;
|
||||
|
||||
|
||||
@@ -32,6 +32,18 @@ class Controller extends QObject {
|
||||
}
|
||||
return Controller.fromCppPointer(cppPointer, needsAutoDelete);
|
||||
}
|
||||
//tag=1023
|
||||
//Controller(KDDockWidgets::Type type, KDDockWidgets::View * arg__2)
|
||||
Controller(int type, View? arg__2) : super.init() {
|
||||
//tag=1075
|
||||
final voidstar_Func_int_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_ffi_Int32_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controller__constructor_Type_View')
|
||||
.asFunction();
|
||||
thisCpp = func(type, arg__2 == null ? ffi.nullptr : arg__2.thisCpp);
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] = this;
|
||||
registerCallbacks();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
@@ -252,7 +264,7 @@ class Controller extends QObject {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(692))
|
||||
cFunctionSymbolName(695))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, parent == null ? ffi.nullptr : parent.thisCpp);
|
||||
@@ -329,6 +341,19 @@ class Controller extends QObject {
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// type() const
|
||||
int type() {
|
||||
//tag=1028
|
||||
final int_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<int_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controller__type')
|
||||
.asFunction();
|
||||
//tag=1031
|
||||
return func(thisCpp);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// view() const
|
||||
View view() {
|
||||
@@ -393,13 +418,13 @@ class Controller extends QObject {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_KDDockWidgets__Controller__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_KDDockWidgets__Controller__event_QEvent";
|
||||
case 306:
|
||||
return "c_KDDockWidgets__Controller__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controller__eventFilter_QObject_QEvent";
|
||||
case 692:
|
||||
case 695:
|
||||
return "c_KDDockWidgets__Controller__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -407,13 +432,13 @@ class Controller extends QObject {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 692:
|
||||
case 695:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -428,26 +453,26 @@ class Controller extends QObject {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback692 =
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback692, 692);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -232,13 +232,13 @@ class DropArea extends Layout {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__event_QEvent";
|
||||
case 306:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__eventFilter_QObject_QEvent";
|
||||
case 692:
|
||||
case 695:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -246,13 +246,13 @@ class DropArea extends Layout {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 692:
|
||||
case 695:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -267,26 +267,26 @@ class DropArea extends Layout {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback692 =
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback692, 692);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,17 +26,26 @@ class KDDockWidgets_MainWindowOption {
|
||||
static const MainWindowOption_MDI = 2;
|
||||
static const MainWindowOption_HasCentralWidget = 5;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// qt_getEnumName(QFlags<KDDockWidgets::MainWindowOption> arg__1)
|
||||
String qt_getEnumName(int arg__1) {
|
||||
//tag=1028
|
||||
final string_Func_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<string_Func_ffi_Int32_FFI>>(
|
||||
'c_static_KDDockWidgets__qt_getEnumName_MainWindowOptions')
|
||||
.asFunction();
|
||||
//tag=1032
|
||||
ffi.Pointer<Utf8> result = func(arg__1);
|
||||
return result.toDartString();
|
||||
//tag=1038
|
||||
class KDDockWidgets_Type {
|
||||
static const FIRST = 1;
|
||||
static const None = 0;
|
||||
static const Frame = 1;
|
||||
static const TitleBar = 2;
|
||||
static const TabBar = 4;
|
||||
static const Stack = 8;
|
||||
static const FloatingWindow = 16;
|
||||
static const Separator = 32;
|
||||
static const DockWidget = 64;
|
||||
static const MDIArea = 128;
|
||||
static const LayoutItem = 256;
|
||||
static const SideBar = 512;
|
||||
static const MainWindow = 1024;
|
||||
static const ViewWrapper = 2048;
|
||||
static const DropArea = 4096;
|
||||
static const MDILayout = 8192;
|
||||
static const RubberBand = 16384;
|
||||
static const DropAreaIndicatorOverlay = 32768;
|
||||
static const LAST = 16384;
|
||||
}
|
||||
|
||||
@@ -32,6 +32,18 @@ class Layout extends Controller {
|
||||
}
|
||||
return Layout.fromCppPointer(cppPointer, needsAutoDelete);
|
||||
}
|
||||
//tag=1023
|
||||
//Layout(KDDockWidgets::Type arg__1, KDDockWidgets::View * arg__2)
|
||||
Layout(int arg__1, View? arg__2) : super.init() {
|
||||
//tag=1075
|
||||
final voidstar_Func_int_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_ffi_Int32_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__Layout__constructor_Type_View')
|
||||
.asFunction();
|
||||
thisCpp = func(arg__1, arg__2 == null ? ffi.nullptr : arg__2.thisCpp);
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] = this;
|
||||
registerCallbacks();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
@@ -346,13 +358,13 @@ class Layout extends Controller {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_KDDockWidgets__Controllers__Layout__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_KDDockWidgets__Controllers__Layout__event_QEvent";
|
||||
case 306:
|
||||
return "c_KDDockWidgets__Controllers__Layout__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controllers__Layout__eventFilter_QObject_QEvent";
|
||||
case 692:
|
||||
case 695:
|
||||
return "c_KDDockWidgets__Controllers__Layout__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -360,13 +372,13 @@ class Layout extends Controller {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 692:
|
||||
case 695:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -381,26 +393,26 @@ class Layout extends Controller {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback692 =
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback692, 692);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(624))
|
||||
cFunctionSymbolName(625))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(thisCpp);
|
||||
@@ -102,7 +102,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(625))
|
||||
cFunctionSymbolName(626))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(thisCpp);
|
||||
@@ -132,7 +132,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(626))
|
||||
cFunctionSymbolName(627))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
@@ -165,7 +165,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(627))
|
||||
cFunctionSymbolName(628))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
@@ -191,7 +191,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(628))
|
||||
cFunctionSymbolName(629))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, globalPos == null ? ffi.nullptr : globalPos.thisCpp) !=
|
||||
@@ -233,7 +233,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(630))
|
||||
cFunctionSymbolName(631))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -258,7 +258,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(631))
|
||||
cFunctionSymbolName(632))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
@@ -284,7 +284,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(632))
|
||||
cFunctionSymbolName(633))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
@@ -310,7 +310,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final string_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<string_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(633))
|
||||
cFunctionSymbolName(634))
|
||||
.asFunction();
|
||||
//tag=1032
|
||||
ffi.Pointer<Utf8> result = func(thisCpp);
|
||||
@@ -337,7 +337,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(634))
|
||||
cFunctionSymbolName(635))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(thisCpp);
|
||||
@@ -365,7 +365,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(635))
|
||||
cFunctionSymbolName(636))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -390,7 +390,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final int_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<int_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(636))
|
||||
cFunctionSymbolName(637))
|
||||
.asFunction();
|
||||
//tag=1031
|
||||
return func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
@@ -417,7 +417,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(637))
|
||||
cFunctionSymbolName(638))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
@@ -446,7 +446,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(638))
|
||||
cFunctionSymbolName(639))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp,
|
||||
@@ -474,7 +474,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(639))
|
||||
cFunctionSymbolName(640))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1);
|
||||
@@ -503,7 +503,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(640))
|
||||
cFunctionSymbolName(641))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
@@ -538,7 +538,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(641))
|
||||
cFunctionSymbolName(642))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
@@ -570,7 +570,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(642))
|
||||
cFunctionSymbolName(643))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
@@ -605,7 +605,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(643))
|
||||
cFunctionSymbolName(644))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -630,7 +630,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(644))
|
||||
cFunctionSymbolName(645))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -655,7 +655,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(645))
|
||||
cFunctionSymbolName(646))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, ms);
|
||||
@@ -680,7 +680,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(646))
|
||||
cFunctionSymbolName(647))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(
|
||||
@@ -710,7 +710,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(647))
|
||||
cFunctionSymbolName(648))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(
|
||||
@@ -742,7 +742,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(648))
|
||||
cFunctionSymbolName(649))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp, type,
|
||||
@@ -774,7 +774,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(649))
|
||||
cFunctionSymbolName(650))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, w == null ? ffi.nullptr : w.thisCpp, type, timeout) !=
|
||||
@@ -803,7 +803,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(650))
|
||||
cFunctionSymbolName(651))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(
|
||||
@@ -833,7 +833,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(651))
|
||||
cFunctionSymbolName(652))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(
|
||||
@@ -863,7 +863,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(652))
|
||||
cFunctionSymbolName(653))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -888,7 +888,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(653))
|
||||
cFunctionSymbolName(654))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
@@ -913,7 +913,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(654))
|
||||
cFunctionSymbolName(655))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
@@ -944,65 +944,65 @@ class Platform_flutter {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 624:
|
||||
return "c_KDDockWidgets__Platform_flutter__applicationName";
|
||||
case 625:
|
||||
return "c_KDDockWidgets__Platform_flutter__createDefaultViewFactory";
|
||||
return "c_KDDockWidgets__Platform_flutter__applicationName";
|
||||
case 626:
|
||||
return "c_KDDockWidgets__Platform_flutter__createView_Controller_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__createDefaultViewFactory";
|
||||
case 627:
|
||||
return "c_KDDockWidgets__Platform_flutter__hasActivePopup";
|
||||
return "c_KDDockWidgets__Platform_flutter__createView_Controller_View";
|
||||
case 628:
|
||||
return "c_KDDockWidgets__Platform_flutter__hasActivePopup";
|
||||
case 629:
|
||||
return "c_KDDockWidgets__Platform_flutter__inDisallowedDragView_QPoint";
|
||||
case 630:
|
||||
return "c_KDDockWidgets__Platform_flutter__installMessageHandler";
|
||||
case 631:
|
||||
return "c_KDDockWidgets__Platform_flutter__isLeftMouseButtonPressed";
|
||||
return "c_KDDockWidgets__Platform_flutter__installMessageHandler";
|
||||
case 632:
|
||||
return "c_KDDockWidgets__Platform_flutter__isProcessingAppQuitEvent";
|
||||
return "c_KDDockWidgets__Platform_flutter__isLeftMouseButtonPressed";
|
||||
case 633:
|
||||
return "c_KDDockWidgets__Platform_flutter__name";
|
||||
return "c_KDDockWidgets__Platform_flutter__isProcessingAppQuitEvent";
|
||||
case 634:
|
||||
return "c_KDDockWidgets__Platform_flutter__organizationName";
|
||||
return "c_KDDockWidgets__Platform_flutter__name";
|
||||
case 635:
|
||||
return "c_KDDockWidgets__Platform_flutter__restoreMouseCursor";
|
||||
return "c_KDDockWidgets__Platform_flutter__organizationName";
|
||||
case 636:
|
||||
return "c_KDDockWidgets__Platform_flutter__screenNumberFor_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__restoreMouseCursor";
|
||||
case 637:
|
||||
return "c_KDDockWidgets__Platform_flutter__screenSizeFor_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__screenNumberFor_View";
|
||||
case 638:
|
||||
return "c_KDDockWidgets__Platform_flutter__sendEvent_View_QEvent";
|
||||
return "c_KDDockWidgets__Platform_flutter__screenSizeFor_View";
|
||||
case 639:
|
||||
return "c_KDDockWidgets__Platform_flutter__setMouseCursor_CursorShape";
|
||||
return "c_KDDockWidgets__Platform_flutter__sendEvent_View_QEvent";
|
||||
case 640:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createFocusableView_CreateViewOptions_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__setMouseCursor_CursorShape";
|
||||
case 641:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createNonClosableView_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createFocusableView_CreateViewOptions_View";
|
||||
case 642:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createView_CreateViewOptions_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createNonClosableView_View";
|
||||
case 643:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_deinitPlatform_impl";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createView_CreateViewOptions_View";
|
||||
case 644:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_initPlatform_impl";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_deinitPlatform_impl";
|
||||
case 645:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_wait_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_initPlatform_impl";
|
||||
case 646:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_View_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_wait_int";
|
||||
case 647:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_QObject_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_View_int";
|
||||
case 648:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_View_Type_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_QObject_int";
|
||||
case 649:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_QObject_Type_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_View_Type_int";
|
||||
case 650:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_Controller_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_QObject_Type_int";
|
||||
case 651:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_View_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_Controller_int";
|
||||
case 652:
|
||||
return "c_KDDockWidgets__Platform_flutter__ungrabMouse";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_View_int";
|
||||
case 653:
|
||||
return "c_KDDockWidgets__Platform_flutter__uninstallMessageHandler";
|
||||
return "c_KDDockWidgets__Platform_flutter__ungrabMouse";
|
||||
case 654:
|
||||
return "c_KDDockWidgets__Platform_flutter__uninstallMessageHandler";
|
||||
case 655:
|
||||
return "c_KDDockWidgets__Platform_flutter__usesFallbackMouseGrabber";
|
||||
}
|
||||
return "";
|
||||
@@ -1010,65 +1010,65 @@ class Platform_flutter {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 624:
|
||||
return "applicationName";
|
||||
case 625:
|
||||
return "createDefaultViewFactory";
|
||||
return "applicationName";
|
||||
case 626:
|
||||
return "createView";
|
||||
return "createDefaultViewFactory";
|
||||
case 627:
|
||||
return "hasActivePopup";
|
||||
return "createView";
|
||||
case 628:
|
||||
return "hasActivePopup";
|
||||
case 629:
|
||||
return "inDisallowedDragView";
|
||||
case 630:
|
||||
return "installMessageHandler";
|
||||
case 631:
|
||||
return "isLeftMouseButtonPressed";
|
||||
return "installMessageHandler";
|
||||
case 632:
|
||||
return "isProcessingAppQuitEvent";
|
||||
return "isLeftMouseButtonPressed";
|
||||
case 633:
|
||||
return "name";
|
||||
return "isProcessingAppQuitEvent";
|
||||
case 634:
|
||||
return "organizationName";
|
||||
return "name";
|
||||
case 635:
|
||||
return "restoreMouseCursor";
|
||||
return "organizationName";
|
||||
case 636:
|
||||
return "screenNumberFor";
|
||||
return "restoreMouseCursor";
|
||||
case 637:
|
||||
return "screenSizeFor";
|
||||
return "screenNumberFor";
|
||||
case 638:
|
||||
return "sendEvent";
|
||||
return "screenSizeFor";
|
||||
case 639:
|
||||
return "setMouseCursor";
|
||||
return "sendEvent";
|
||||
case 640:
|
||||
return "tests_createFocusableView";
|
||||
return "setMouseCursor";
|
||||
case 641:
|
||||
return "tests_createNonClosableView";
|
||||
return "tests_createFocusableView";
|
||||
case 642:
|
||||
return "tests_createView";
|
||||
return "tests_createNonClosableView";
|
||||
case 643:
|
||||
return "tests_deinitPlatform_impl";
|
||||
return "tests_createView";
|
||||
case 644:
|
||||
return "tests_initPlatform_impl";
|
||||
return "tests_deinitPlatform_impl";
|
||||
case 645:
|
||||
return "tests_wait";
|
||||
return "tests_initPlatform_impl";
|
||||
case 646:
|
||||
return "tests_waitForDeleted";
|
||||
return "tests_wait";
|
||||
case 647:
|
||||
return "tests_waitForDeleted_2";
|
||||
return "tests_waitForDeleted";
|
||||
case 648:
|
||||
return "tests_waitForEvent";
|
||||
return "tests_waitForDeleted_2";
|
||||
case 649:
|
||||
return "tests_waitForEvent_2";
|
||||
return "tests_waitForEvent";
|
||||
case 650:
|
||||
return "tests_waitForResize";
|
||||
return "tests_waitForEvent_2";
|
||||
case 651:
|
||||
return "tests_waitForResize_2";
|
||||
return "tests_waitForResize";
|
||||
case 652:
|
||||
return "ungrabMouse";
|
||||
return "tests_waitForResize_2";
|
||||
case 653:
|
||||
return "uninstallMessageHandler";
|
||||
return "ungrabMouse";
|
||||
case 654:
|
||||
return "uninstallMessageHandler";
|
||||
case 655:
|
||||
return "usesFallbackMouseGrabber";
|
||||
}
|
||||
throw Error();
|
||||
@@ -1082,161 +1082,161 @@ class Platform_flutter {
|
||||
'c_KDDockWidgets__Platform_flutter__registerVirtualMethodCallback')
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback624 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.applicationName_calledFromC);
|
||||
registerCallback(thisCpp, callback624, 624);
|
||||
//tag=1021
|
||||
final callback625 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.createDefaultViewFactory_calledFromC);
|
||||
Platform_flutter.applicationName_calledFromC);
|
||||
registerCallback(thisCpp, callback625, 625);
|
||||
//tag=1021
|
||||
final callback626 =
|
||||
final callback626 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.createDefaultViewFactory_calledFromC);
|
||||
registerCallback(thisCpp, callback626, 626);
|
||||
//tag=1021
|
||||
final callback627 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.createView_calledFromC);
|
||||
registerCallback(thisCpp, callback626, 626);
|
||||
const callbackExcept627 = 0;
|
||||
//tag=1021
|
||||
final callback627 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.hasActivePopup_calledFromC, callbackExcept627);
|
||||
registerCallback(thisCpp, callback627, 627);
|
||||
const callbackExcept628 = 0;
|
||||
//tag=1021
|
||||
final callback628 =
|
||||
final callback628 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.hasActivePopup_calledFromC, callbackExcept628);
|
||||
registerCallback(thisCpp, callback628, 628);
|
||||
const callbackExcept629 = 0;
|
||||
//tag=1021
|
||||
final callback629 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.inDisallowedDragView_calledFromC,
|
||||
callbackExcept628);
|
||||
registerCallback(thisCpp, callback628, 628);
|
||||
callbackExcept629);
|
||||
registerCallback(thisCpp, callback629, 629);
|
||||
//tag=1021
|
||||
final callback630 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback631 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.installMessageHandler_calledFromC);
|
||||
registerCallback(thisCpp, callback630, 630);
|
||||
const callbackExcept631 = 0;
|
||||
//tag=1021
|
||||
final callback631 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isLeftMouseButtonPressed_calledFromC,
|
||||
callbackExcept631);
|
||||
registerCallback(thisCpp, callback631, 631);
|
||||
const callbackExcept632 = 0;
|
||||
//tag=1021
|
||||
final callback632 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isProcessingAppQuitEvent_calledFromC,
|
||||
Platform_flutter.isLeftMouseButtonPressed_calledFromC,
|
||||
callbackExcept632);
|
||||
registerCallback(thisCpp, callback632, 632);
|
||||
const callbackExcept633 = 0;
|
||||
//tag=1021
|
||||
final callback633 = ffi.Pointer.fromFunction<string_Func_voidstar_FFI>(
|
||||
Platform_flutter.name_calledFromC);
|
||||
final callback633 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isProcessingAppQuitEvent_calledFromC,
|
||||
callbackExcept633);
|
||||
registerCallback(thisCpp, callback633, 633);
|
||||
//tag=1021
|
||||
final callback634 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.organizationName_calledFromC);
|
||||
final callback634 = ffi.Pointer.fromFunction<string_Func_voidstar_FFI>(
|
||||
Platform_flutter.name_calledFromC);
|
||||
registerCallback(thisCpp, callback634, 634);
|
||||
//tag=1021
|
||||
final callback635 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.restoreMouseCursor_calledFromC);
|
||||
final callback635 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.organizationName_calledFromC);
|
||||
registerCallback(thisCpp, callback635, 635);
|
||||
const callbackExcept636 = 0;
|
||||
//tag=1021
|
||||
final callback636 =
|
||||
ffi.Pointer.fromFunction<int_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenNumberFor_calledFromC, callbackExcept636);
|
||||
final callback636 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.restoreMouseCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback636, 636);
|
||||
const callbackExcept637 = 0;
|
||||
//tag=1021
|
||||
final callback637 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenSizeFor_calledFromC);
|
||||
ffi.Pointer.fromFunction<int_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenNumberFor_calledFromC, callbackExcept637);
|
||||
registerCallback(thisCpp, callback637, 637);
|
||||
//tag=1021
|
||||
final callback638 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.sendEvent_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenSizeFor_calledFromC);
|
||||
registerCallback(thisCpp, callback638, 638);
|
||||
//tag=1021
|
||||
final callback639 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.setMouseCursor_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.sendEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback639, 639);
|
||||
//tag=1021
|
||||
final callback640 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createFocusableView_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.setMouseCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback640, 640);
|
||||
//tag=1021
|
||||
final callback641 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createNonClosableView_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createFocusableView_calledFromC);
|
||||
registerCallback(thisCpp, callback641, 641);
|
||||
//tag=1021
|
||||
final callback642 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createView_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createNonClosableView_calledFromC);
|
||||
registerCallback(thisCpp, callback642, 642);
|
||||
//tag=1021
|
||||
final callback643 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_deinitPlatform_impl_calledFromC);
|
||||
final callback643 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createView_calledFromC);
|
||||
registerCallback(thisCpp, callback643, 643);
|
||||
//tag=1021
|
||||
final callback644 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_initPlatform_impl_calledFromC);
|
||||
Platform_flutter.tests_deinitPlatform_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback644, 644);
|
||||
//tag=1021
|
||||
final callback645 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_wait_calledFromC);
|
||||
final callback645 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_initPlatform_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback645, 645);
|
||||
const callbackExcept646 = 0;
|
||||
//tag=1021
|
||||
final callback646 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_calledFromC,
|
||||
callbackExcept646);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_wait_calledFromC);
|
||||
registerCallback(thisCpp, callback646, 646);
|
||||
const callbackExcept647 = 0;
|
||||
//tag=1021
|
||||
final callback647 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_2_calledFromC,
|
||||
Platform_flutter.tests_waitForDeleted_calledFromC,
|
||||
callbackExcept647);
|
||||
registerCallback(thisCpp, callback647, 647);
|
||||
const callbackExcept648 = 0;
|
||||
//tag=1021
|
||||
final callback648 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_calledFromC, callbackExcept648);
|
||||
final callback648 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_2_calledFromC,
|
||||
callbackExcept648);
|
||||
registerCallback(thisCpp, callback648, 648);
|
||||
const callbackExcept649 = 0;
|
||||
//tag=1021
|
||||
final callback649 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_2_calledFromC, callbackExcept649);
|
||||
Platform_flutter.tests_waitForEvent_calledFromC, callbackExcept649);
|
||||
registerCallback(thisCpp, callback649, 649);
|
||||
const callbackExcept650 = 0;
|
||||
//tag=1021
|
||||
final callback650 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_calledFromC,
|
||||
callbackExcept650);
|
||||
final callback650 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_2_calledFromC, callbackExcept650);
|
||||
registerCallback(thisCpp, callback650, 650);
|
||||
const callbackExcept651 = 0;
|
||||
//tag=1021
|
||||
final callback651 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_2_calledFromC,
|
||||
Platform_flutter.tests_waitForResize_calledFromC,
|
||||
callbackExcept651);
|
||||
registerCallback(thisCpp, callback651, 651);
|
||||
const callbackExcept652 = 0;
|
||||
//tag=1021
|
||||
final callback652 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.ungrabMouse_calledFromC);
|
||||
final callback652 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_2_calledFromC,
|
||||
callbackExcept652);
|
||||
registerCallback(thisCpp, callback652, 652);
|
||||
//tag=1021
|
||||
final callback653 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.uninstallMessageHandler_calledFromC);
|
||||
Platform_flutter.ungrabMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback653, 653);
|
||||
const callbackExcept654 = 0;
|
||||
//tag=1021
|
||||
final callback654 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.usesFallbackMouseGrabber_calledFromC,
|
||||
callbackExcept654);
|
||||
final callback654 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.uninstallMessageHandler_calledFromC);
|
||||
registerCallback(thisCpp, callback654, 654);
|
||||
const callbackExcept655 = 0;
|
||||
//tag=1021
|
||||
final callback655 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.usesFallbackMouseGrabber_calledFromC,
|
||||
callbackExcept655);
|
||||
registerCallback(thisCpp, callback655, 655);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -100,7 +100,7 @@ class QObject {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(294))
|
||||
cFunctionSymbolName(295))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, event == null ? ffi.nullptr : event.thisCpp);
|
||||
@@ -278,7 +278,7 @@ class QObject {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(305))
|
||||
cFunctionSymbolName(306))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, event == null ? ffi.nullptr : event.thisCpp) != 0;
|
||||
@@ -305,7 +305,7 @@ class QObject {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(306))
|
||||
cFunctionSymbolName(307))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, watched == null ? ffi.nullptr : watched.thisCpp,
|
||||
@@ -554,11 +554,11 @@ class QObject {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_QObject__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_QObject__event_QEvent";
|
||||
case 306:
|
||||
return "c_QObject__event_QEvent";
|
||||
case 307:
|
||||
return "c_QObject__eventFilter_QObject_QEvent";
|
||||
}
|
||||
return "";
|
||||
@@ -566,11 +566,11 @@ class QObject {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
}
|
||||
throw Error();
|
||||
@@ -585,21 +585,21 @@ class QObject {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,17 +47,3 @@ class Qt_CursorShape {
|
||||
static const BitmapCursor = 24;
|
||||
static const CustomCursor = 25;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// qt_getEnumName(Qt::CursorShape arg__1)
|
||||
String qt_getEnumName(int arg__1) {
|
||||
//tag=1028
|
||||
final string_Func_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<string_Func_ffi_Int32_FFI>>(
|
||||
'c_static_Qt__qt_getEnumName_CursorShape')
|
||||
.asFunction();
|
||||
//tag=1032
|
||||
ffi.Pointer<Utf8> result = func(arg__1);
|
||||
return result.toDartString();
|
||||
}
|
||||
|
||||
@@ -22,8 +22,6 @@ typedef SignalHandler = void Function(
|
||||
ffi.Pointer<void>, ffi.Pointer<void>, ffi.Pointer<void>);
|
||||
typedef SignalHandler_FFI = ffi.Void Function(
|
||||
ffi.Pointer<void>, ffi.Pointer<void>, ffi.Pointer<void>);
|
||||
typedef string_Func_int = ffi.Pointer<Utf8> Function(int);
|
||||
typedef string_Func_ffi_Int32_FFI = ffi.Pointer<Utf8> Function(ffi.Int32);
|
||||
typedef voidstar_Func_void = ffi.Pointer<void> Function();
|
||||
typedef voidstar_Func_void_FFI = ffi.Pointer<void> Function();
|
||||
typedef voidstar_Func_voidstar_voidstar = ffi.Pointer<void> Function(
|
||||
@@ -354,9 +352,18 @@ typedef bool_Func_voidstar_voidstar_int_int = int Function(
|
||||
ffi.Pointer<void>, ffi.Pointer<void>, int, int);
|
||||
typedef bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI = ffi.Int8 Function(
|
||||
ffi.Pointer<void>, ffi.Pointer<void>, ffi.Int32, ffi.Int32);
|
||||
typedef voidstar_Func_int_voidstar = ffi.Pointer<void> Function(
|
||||
int, ffi.Pointer<void>);
|
||||
typedef voidstar_Func_ffi_Int32_voidstar_FFI = ffi.Pointer<void> Function(
|
||||
ffi.Int32, ffi.Pointer<void>);
|
||||
typedef void_Func_voidstar_double = void Function(ffi.Pointer<void>, double);
|
||||
typedef void_Func_voidstar_ffi_Double_FFI = ffi.Void Function(
|
||||
ffi.Pointer<void>, ffi.Double);
|
||||
typedef voidstar_Func_voidstar_int_voidstar_int = ffi.Pointer<void> Function(
|
||||
ffi.Pointer<void>, int, ffi.Pointer<void>, int);
|
||||
typedef voidstar_Func_voidstar_ffi_Int32_voidstar_ffi_Int32_FFI
|
||||
= ffi.Pointer<void> Function(
|
||||
ffi.Pointer<void>, ffi.Int32, ffi.Pointer<void>, ffi.Int32);
|
||||
typedef voidstar_Func_voidstar_int_bool = ffi.Pointer<void> Function(
|
||||
ffi.Pointer<void>, int, int);
|
||||
typedef voidstar_Func_voidstar_ffi_Int32_ffi_Int8_FFI = ffi.Pointer<void>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -54,7 +54,7 @@ class ViewFactory extends QObject {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(592))
|
||||
cFunctionSymbolName(593))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
@@ -87,7 +87,7 @@ class ViewFactory extends QObject {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(593))
|
||||
cFunctionSymbolName(594))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
@@ -186,15 +186,15 @@ class ViewFactory extends QObject {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "c_KDDockWidgets__ViewFactory__createDropArea_DropArea_View";
|
||||
case 593:
|
||||
return "c_KDDockWidgets__ViewFactory__createDropArea_DropArea_View";
|
||||
case 594:
|
||||
return "c_KDDockWidgets__ViewFactory__createRubberBand_View";
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_KDDockWidgets__ViewFactory__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_KDDockWidgets__ViewFactory__event_QEvent";
|
||||
case 306:
|
||||
return "c_KDDockWidgets__ViewFactory__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__ViewFactory__eventFilter_QObject_QEvent";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -202,15 +202,15 @@ class ViewFactory extends QObject {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "createDropArea";
|
||||
case 593:
|
||||
return "createDropArea";
|
||||
case 594:
|
||||
return "createRubberBand";
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
}
|
||||
throw Error();
|
||||
@@ -225,31 +225,31 @@ class ViewFactory extends QObject {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback592 =
|
||||
final callback593 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createDropArea_calledFromC);
|
||||
registerCallback(thisCpp, callback592, 592);
|
||||
//tag=1021
|
||||
final callback593 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback593, 593);
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback594 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback594, 594);
|
||||
//tag=1021
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -156,15 +156,15 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createDropArea_DropArea_View";
|
||||
case 593:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createDropArea_DropArea_View";
|
||||
case 594:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createRubberBand_View";
|
||||
case 294:
|
||||
case 295:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__customEvent_QEvent";
|
||||
case 305:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__event_QEvent";
|
||||
case 306:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__eventFilter_QObject_QEvent";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -172,15 +172,15 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "createDropArea";
|
||||
case 593:
|
||||
return "createDropArea";
|
||||
case 594:
|
||||
return "createRubberBand";
|
||||
case 294:
|
||||
case 295:
|
||||
return "customEvent";
|
||||
case 305:
|
||||
return "event";
|
||||
case 306:
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
}
|
||||
throw Error();
|
||||
@@ -195,31 +195,31 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback592 =
|
||||
final callback593 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createDropArea_calledFromC);
|
||||
registerCallback(thisCpp, callback592, 592);
|
||||
//tag=1021
|
||||
final callback593 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback593, 593);
|
||||
//tag=1021
|
||||
final callback294 =
|
||||
final callback594 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback594, 594);
|
||||
//tag=1021
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
QObject.customEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback294, 294);
|
||||
const callbackExcept305 = 0;
|
||||
//tag=1021
|
||||
final callback305 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept305);
|
||||
registerCallback(thisCpp, callback305, 305);
|
||||
registerCallback(thisCpp, callback295, 295);
|
||||
const callbackExcept306 = 0;
|
||||
//tag=1021
|
||||
final callback306 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept306);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
QObject.event_calledFromC, callbackExcept306);
|
||||
registerCallback(thisCpp, callback306, 306);
|
||||
const callbackExcept307 = 0;
|
||||
//tag=1021
|
||||
final callback307 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,6 +32,23 @@ class View_flutter extends View {
|
||||
}
|
||||
return View_flutter.fromCppPointer(cppPointer, needsAutoDelete);
|
||||
}
|
||||
//tag=1023
|
||||
//View_flutter(KDDockWidgets::Controller * controller, KDDockWidgets::Type type, KDDockWidgets::Views::View_flutter * arg__3, Qt::WindowFlags windowFlags)
|
||||
View_flutter(Controller? controller, int type, View_flutter? arg__3,
|
||||
{int windowFlags = 0})
|
||||
: super.init() {
|
||||
//tag=1075
|
||||
final voidstar_Func_voidstar_int_voidstar_int func = _dylib
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_ffi_Int32_voidstar_ffi_Int32_FFI>>(
|
||||
'c_KDDockWidgets__Views__View_flutter__constructor_Controller_Type_View_flutter_WindowFlags')
|
||||
.asFunction();
|
||||
thisCpp = func(controller == null ? ffi.nullptr : controller.thisCpp, type,
|
||||
arg__3 == null ? ffi.nullptr : arg__3.thisCpp, windowFlags);
|
||||
View.s_dartInstanceByCppPtr[thisCpp.address] = this;
|
||||
registerCallbacks();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1035
|
||||
@@ -77,6 +94,21 @@ class View_flutter extends View {
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1035
|
||||
static int flags_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance =
|
||||
View.s_dartInstanceByCppPtr[thisCpp.address] as View_flutter;
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for View_flutter::flags() const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.flags();
|
||||
return result;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1035
|
||||
static void free_impl_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance =
|
||||
@@ -848,111 +880,113 @@ class View_flutter extends View {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 704:
|
||||
case 709:
|
||||
return "c_KDDockWidgets__Views__View_flutter__activateWindow";
|
||||
case 708:
|
||||
case 713:
|
||||
return "c_KDDockWidgets__Views__View_flutter__close";
|
||||
case 711:
|
||||
case 716:
|
||||
return "c_KDDockWidgets__Views__View_flutter__createPlatformWindow";
|
||||
case 715:
|
||||
case 721:
|
||||
return "c_KDDockWidgets__Views__View_flutter__flags";
|
||||
case 723:
|
||||
return "c_KDDockWidgets__Views__View_flutter__free_impl";
|
||||
case 717:
|
||||
case 725:
|
||||
return "c_KDDockWidgets__Views__View_flutter__geometry";
|
||||
case 719:
|
||||
return "c_KDDockWidgets__Views__View_flutter__grabMouse";
|
||||
case 722:
|
||||
return "c_KDDockWidgets__Views__View_flutter__hasFocus";
|
||||
case 724:
|
||||
return "c_KDDockWidgets__Views__View_flutter__hide";
|
||||
case 727:
|
||||
return "c_KDDockWidgets__Views__View_flutter__init";
|
||||
case 728:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isActiveWindow";
|
||||
case 729:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMaximized";
|
||||
return "c_KDDockWidgets__Views__View_flutter__grabMouse";
|
||||
case 730:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMinimized";
|
||||
case 731:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isNull";
|
||||
return "c_KDDockWidgets__Views__View_flutter__hasFocus";
|
||||
case 732:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isRootView";
|
||||
case 733:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isVisible";
|
||||
case 734:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapFromGlobal_QPoint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__hide";
|
||||
case 735:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapTo_View_QPoint";
|
||||
case 736:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapToGlobal_QPoint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__init";
|
||||
case 737:
|
||||
return "c_KDDockWidgets__Views__View_flutter__maxSizeHint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isActiveWindow";
|
||||
case 738:
|
||||
return "c_KDDockWidgets__Views__View_flutter__maximumSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMaximized";
|
||||
case 739:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMinimized";
|
||||
case 740:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumHeight";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isNull";
|
||||
case 741:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumWidth";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isRootView";
|
||||
case 742:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isVisible";
|
||||
case 743:
|
||||
return "c_KDDockWidgets__Views__View_flutter__move_int_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapFromGlobal_QPoint";
|
||||
case 744:
|
||||
return "c_KDDockWidgets__Views__View_flutter__normalGeometry";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapTo_View_QPoint";
|
||||
case 745:
|
||||
return "c_KDDockWidgets__Views__View_flutter__objectName";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapToGlobal_QPoint";
|
||||
case 746:
|
||||
return "c_KDDockWidgets__Views__View_flutter__onResize_QSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__maxSizeHint";
|
||||
case 747:
|
||||
return "c_KDDockWidgets__Views__View_flutter__maximumSize";
|
||||
case 748:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minSize";
|
||||
case 749:
|
||||
return "c_KDDockWidgets__Views__View_flutter__raise";
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumHeight";
|
||||
case 750:
|
||||
return "c_KDDockWidgets__Views__View_flutter__raiseAndActivate";
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumWidth";
|
||||
case 752:
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseKeyboard";
|
||||
return "c_KDDockWidgets__Views__View_flutter__move_int_int";
|
||||
case 753:
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseMouse";
|
||||
case 757:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setCursor_CursorShape";
|
||||
return "c_KDDockWidgets__Views__View_flutter__normalGeometry";
|
||||
case 754:
|
||||
return "c_KDDockWidgets__Views__View_flutter__objectName";
|
||||
case 755:
|
||||
return "c_KDDockWidgets__Views__View_flutter__onResize_QSize";
|
||||
case 758:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedHeight_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__raise";
|
||||
case 759:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedWidth_int";
|
||||
case 760:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setGeometry_QRect";
|
||||
return "c_KDDockWidgets__Views__View_flutter__raiseAndActivate";
|
||||
case 761:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setHeight_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseKeyboard";
|
||||
case 762:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMaximumSize_QSize";
|
||||
case 763:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMinimumSize_QSize";
|
||||
case 764:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMouseTracking_bool";
|
||||
case 765:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setObjectName_QString";
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseMouse";
|
||||
case 766:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setParent_View";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setCursor_CursorShape";
|
||||
case 767:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedHeight_int";
|
||||
case 768:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setSize_int_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedWidth_int";
|
||||
case 769:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setVisible_bool";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setGeometry_QRect";
|
||||
case 770:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWidth_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setHeight_int";
|
||||
case 771:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowOpacity_double";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMaximumSize_QSize";
|
||||
case 772:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowTitle_QString";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMinimumSize_QSize";
|
||||
case 773:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setZOrder_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMouseTracking_bool";
|
||||
case 774:
|
||||
return "c_KDDockWidgets__Views__View_flutter__show";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setObjectName_QString";
|
||||
case 775:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMaximized";
|
||||
case 776:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMinimized";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setParent_View";
|
||||
case 777:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showNormal";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setSize_int_int";
|
||||
case 778:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setVisible_bool";
|
||||
case 779:
|
||||
return "c_KDDockWidgets__Views__View_flutter__sizeHint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWidth_int";
|
||||
case 780:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowOpacity_double";
|
||||
case 781:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowTitle_QString";
|
||||
case 782:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setZOrder_int";
|
||||
case 783:
|
||||
return "c_KDDockWidgets__Views__View_flutter__show";
|
||||
case 784:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMaximized";
|
||||
case 785:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMinimized";
|
||||
case 786:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showNormal";
|
||||
case 788:
|
||||
return "c_KDDockWidgets__Views__View_flutter__sizeHint";
|
||||
case 790:
|
||||
return "c_KDDockWidgets__Views__View_flutter__update";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -960,111 +994,113 @@ class View_flutter extends View {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 704:
|
||||
case 709:
|
||||
return "activateWindow";
|
||||
case 708:
|
||||
case 713:
|
||||
return "close";
|
||||
case 711:
|
||||
case 716:
|
||||
return "createPlatformWindow";
|
||||
case 715:
|
||||
case 721:
|
||||
return "flags";
|
||||
case 723:
|
||||
return "free_impl";
|
||||
case 717:
|
||||
case 725:
|
||||
return "geometry";
|
||||
case 719:
|
||||
return "grabMouse";
|
||||
case 722:
|
||||
return "hasFocus";
|
||||
case 724:
|
||||
return "hide";
|
||||
case 727:
|
||||
return "init";
|
||||
case 728:
|
||||
return "isActiveWindow";
|
||||
case 729:
|
||||
return "isMaximized";
|
||||
return "grabMouse";
|
||||
case 730:
|
||||
return "isMinimized";
|
||||
case 731:
|
||||
return "isNull";
|
||||
return "hasFocus";
|
||||
case 732:
|
||||
return "isRootView";
|
||||
case 733:
|
||||
return "isVisible";
|
||||
case 734:
|
||||
return "mapFromGlobal";
|
||||
return "hide";
|
||||
case 735:
|
||||
return "mapTo";
|
||||
case 736:
|
||||
return "mapToGlobal";
|
||||
return "init";
|
||||
case 737:
|
||||
return "maxSizeHint";
|
||||
return "isActiveWindow";
|
||||
case 738:
|
||||
return "maximumSize";
|
||||
return "isMaximized";
|
||||
case 739:
|
||||
return "minSize";
|
||||
return "isMinimized";
|
||||
case 740:
|
||||
return "minimumHeight";
|
||||
return "isNull";
|
||||
case 741:
|
||||
return "minimumWidth";
|
||||
return "isRootView";
|
||||
case 742:
|
||||
return "isVisible";
|
||||
case 743:
|
||||
return "move_2";
|
||||
return "mapFromGlobal";
|
||||
case 744:
|
||||
return "normalGeometry";
|
||||
return "mapTo";
|
||||
case 745:
|
||||
return "objectName";
|
||||
return "mapToGlobal";
|
||||
case 746:
|
||||
return "onResize";
|
||||
return "maxSizeHint";
|
||||
case 747:
|
||||
return "maximumSize";
|
||||
case 748:
|
||||
return "minSize";
|
||||
case 749:
|
||||
return "raise";
|
||||
return "minimumHeight";
|
||||
case 750:
|
||||
return "raiseAndActivate";
|
||||
return "minimumWidth";
|
||||
case 752:
|
||||
return "releaseKeyboard";
|
||||
return "move_2";
|
||||
case 753:
|
||||
return "releaseMouse";
|
||||
case 757:
|
||||
return "setCursor";
|
||||
return "normalGeometry";
|
||||
case 754:
|
||||
return "objectName";
|
||||
case 755:
|
||||
return "onResize";
|
||||
case 758:
|
||||
return "setFixedHeight";
|
||||
return "raise";
|
||||
case 759:
|
||||
return "setFixedWidth";
|
||||
case 760:
|
||||
return "setGeometry";
|
||||
return "raiseAndActivate";
|
||||
case 761:
|
||||
return "setHeight";
|
||||
return "releaseKeyboard";
|
||||
case 762:
|
||||
return "setMaximumSize";
|
||||
case 763:
|
||||
return "setMinimumSize";
|
||||
case 764:
|
||||
return "setMouseTracking";
|
||||
case 765:
|
||||
return "setObjectName";
|
||||
return "releaseMouse";
|
||||
case 766:
|
||||
return "setParent";
|
||||
return "setCursor";
|
||||
case 767:
|
||||
return "setFixedHeight";
|
||||
case 768:
|
||||
return "setSize_2";
|
||||
return "setFixedWidth";
|
||||
case 769:
|
||||
return "setVisible";
|
||||
return "setGeometry";
|
||||
case 770:
|
||||
return "setWidth";
|
||||
return "setHeight";
|
||||
case 771:
|
||||
return "setWindowOpacity";
|
||||
return "setMaximumSize";
|
||||
case 772:
|
||||
return "setWindowTitle";
|
||||
return "setMinimumSize";
|
||||
case 773:
|
||||
return "setZOrder";
|
||||
return "setMouseTracking";
|
||||
case 774:
|
||||
return "show";
|
||||
return "setObjectName";
|
||||
case 775:
|
||||
return "showMaximized";
|
||||
case 776:
|
||||
return "showMinimized";
|
||||
return "setParent";
|
||||
case 777:
|
||||
return "showNormal";
|
||||
return "setSize_2";
|
||||
case 778:
|
||||
return "setVisible";
|
||||
case 779:
|
||||
return "sizeHint";
|
||||
return "setWidth";
|
||||
case 780:
|
||||
return "setWindowOpacity";
|
||||
case 781:
|
||||
return "setWindowTitle";
|
||||
case 782:
|
||||
return "setZOrder";
|
||||
case 783:
|
||||
return "show";
|
||||
case 784:
|
||||
return "showMaximized";
|
||||
case 785:
|
||||
return "showMinimized";
|
||||
case 786:
|
||||
return "showNormal";
|
||||
case 788:
|
||||
return "sizeHint";
|
||||
case 790:
|
||||
return "update";
|
||||
}
|
||||
throw Error();
|
||||
@@ -1079,248 +1115,253 @@ class View_flutter extends View {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback704 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback709 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.activateWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback704, 704);
|
||||
const callbackExcept708 = 0;
|
||||
registerCallback(thisCpp, callback709, 709);
|
||||
const callbackExcept713 = 0;
|
||||
//tag=1021
|
||||
final callback708 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.close_calledFromC, callbackExcept708);
|
||||
registerCallback(thisCpp, callback708, 708);
|
||||
final callback713 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.close_calledFromC, callbackExcept713);
|
||||
registerCallback(thisCpp, callback713, 713);
|
||||
//tag=1021
|
||||
final callback711 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback716 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View.createPlatformWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback711, 711);
|
||||
registerCallback(thisCpp, callback716, 716);
|
||||
const callbackExcept721 = 0;
|
||||
//tag=1021
|
||||
final callback715 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback721 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View_flutter.flags_calledFromC, callbackExcept721);
|
||||
registerCallback(thisCpp, callback721, 721);
|
||||
//tag=1021
|
||||
final callback723 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.free_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback715, 715);
|
||||
registerCallback(thisCpp, callback723, 723);
|
||||
//tag=1021
|
||||
final callback717 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
final callback725 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.geometry_calledFromC);
|
||||
registerCallback(thisCpp, callback717, 717);
|
||||
registerCallback(thisCpp, callback725, 725);
|
||||
//tag=1021
|
||||
final callback719 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback727 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.grabMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback719, 719);
|
||||
const callbackExcept722 = 0;
|
||||
//tag=1021
|
||||
final callback722 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.hasFocus_calledFromC, callbackExcept722);
|
||||
registerCallback(thisCpp, callback722, 722);
|
||||
//tag=1021
|
||||
final callback724 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.hide_calledFromC);
|
||||
registerCallback(thisCpp, callback724, 724);
|
||||
//tag=1021
|
||||
final callback727 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(View.init_calledFromC);
|
||||
registerCallback(thisCpp, callback727, 727);
|
||||
const callbackExcept728 = 0;
|
||||
//tag=1021
|
||||
final callback728 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isActiveWindow_calledFromC, callbackExcept728);
|
||||
registerCallback(thisCpp, callback728, 728);
|
||||
const callbackExcept729 = 0;
|
||||
//tag=1021
|
||||
final callback729 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMaximized_calledFromC, callbackExcept729);
|
||||
registerCallback(thisCpp, callback729, 729);
|
||||
const callbackExcept730 = 0;
|
||||
//tag=1021
|
||||
final callback730 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMinimized_calledFromC, callbackExcept730);
|
||||
View_flutter.hasFocus_calledFromC, callbackExcept730);
|
||||
registerCallback(thisCpp, callback730, 730);
|
||||
const callbackExcept731 = 0;
|
||||
//tag=1021
|
||||
final callback731 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View.isNull_calledFromC, callbackExcept731);
|
||||
registerCallback(thisCpp, callback731, 731);
|
||||
const callbackExcept732 = 0;
|
||||
//tag=1021
|
||||
final callback732 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isRootView_calledFromC, callbackExcept732);
|
||||
final callback732 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.hide_calledFromC);
|
||||
registerCallback(thisCpp, callback732, 732);
|
||||
const callbackExcept733 = 0;
|
||||
//tag=1021
|
||||
final callback733 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isVisible_calledFromC, callbackExcept733);
|
||||
registerCallback(thisCpp, callback733, 733);
|
||||
//tag=1021
|
||||
final callback734 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapFromGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback734, 734);
|
||||
//tag=1021
|
||||
final callback735 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapTo_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(View.init_calledFromC);
|
||||
registerCallback(thisCpp, callback735, 735);
|
||||
const callbackExcept737 = 0;
|
||||
//tag=1021
|
||||
final callback736 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapToGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback736, 736);
|
||||
//tag=1021
|
||||
final callback737 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maxSizeHint_calledFromC);
|
||||
final callback737 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isActiveWindow_calledFromC, callbackExcept737);
|
||||
registerCallback(thisCpp, callback737, 737);
|
||||
const callbackExcept738 = 0;
|
||||
//tag=1021
|
||||
final callback738 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maximumSize_calledFromC);
|
||||
final callback738 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMaximized_calledFromC, callbackExcept738);
|
||||
registerCallback(thisCpp, callback738, 738);
|
||||
const callbackExcept739 = 0;
|
||||
//tag=1021
|
||||
final callback739 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.minSize_calledFromC);
|
||||
final callback739 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMinimized_calledFromC, callbackExcept739);
|
||||
registerCallback(thisCpp, callback739, 739);
|
||||
const callbackExcept740 = 0;
|
||||
//tag=1021
|
||||
final callback740 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumHeight_calledFromC, callbackExcept740);
|
||||
final callback740 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View.isNull_calledFromC, callbackExcept740);
|
||||
registerCallback(thisCpp, callback740, 740);
|
||||
const callbackExcept741 = 0;
|
||||
//tag=1021
|
||||
final callback741 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumWidth_calledFromC, callbackExcept741);
|
||||
final callback741 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isRootView_calledFromC, callbackExcept741);
|
||||
registerCallback(thisCpp, callback741, 741);
|
||||
const callbackExcept742 = 0;
|
||||
//tag=1021
|
||||
final callback742 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isVisible_calledFromC, callbackExcept742);
|
||||
registerCallback(thisCpp, callback742, 742);
|
||||
//tag=1021
|
||||
final callback743 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.move_2_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapFromGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback743, 743);
|
||||
//tag=1021
|
||||
final callback744 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.normalGeometry_calledFromC);
|
||||
final callback744 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapTo_calledFromC);
|
||||
registerCallback(thisCpp, callback744, 744);
|
||||
//tag=1021
|
||||
final callback745 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.objectName_calledFromC);
|
||||
final callback745 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapToGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback745, 745);
|
||||
const callbackExcept746 = 0;
|
||||
//tag=1021
|
||||
final callback746 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
View.onResize_calledFromC, callbackExcept746);
|
||||
final callback746 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maxSizeHint_calledFromC);
|
||||
registerCallback(thisCpp, callback746, 746);
|
||||
//tag=1021
|
||||
final callback749 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.raise_calledFromC);
|
||||
registerCallback(thisCpp, callback749, 749);
|
||||
final callback747 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maximumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback747, 747);
|
||||
//tag=1021
|
||||
final callback750 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.raiseAndActivate_calledFromC);
|
||||
final callback748 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.minSize_calledFromC);
|
||||
registerCallback(thisCpp, callback748, 748);
|
||||
const callbackExcept749 = 0;
|
||||
//tag=1021
|
||||
final callback749 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumHeight_calledFromC, callbackExcept749);
|
||||
registerCallback(thisCpp, callback749, 749);
|
||||
const callbackExcept750 = 0;
|
||||
//tag=1021
|
||||
final callback750 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumWidth_calledFromC, callbackExcept750);
|
||||
registerCallback(thisCpp, callback750, 750);
|
||||
//tag=1021
|
||||
final callback752 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseKeyboard_calledFromC);
|
||||
final callback752 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.move_2_calledFromC);
|
||||
registerCallback(thisCpp, callback752, 752);
|
||||
//tag=1021
|
||||
final callback753 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseMouse_calledFromC);
|
||||
final callback753 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.normalGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback753, 753);
|
||||
//tag=1021
|
||||
final callback757 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback757, 757);
|
||||
final callback754 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.objectName_calledFromC);
|
||||
registerCallback(thisCpp, callback754, 754);
|
||||
const callbackExcept755 = 0;
|
||||
//tag=1021
|
||||
final callback758 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedHeight_calledFromC);
|
||||
final callback755 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
View.onResize_calledFromC, callbackExcept755);
|
||||
registerCallback(thisCpp, callback755, 755);
|
||||
//tag=1021
|
||||
final callback758 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.raise_calledFromC);
|
||||
registerCallback(thisCpp, callback758, 758);
|
||||
//tag=1021
|
||||
final callback759 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedWidth_calledFromC);
|
||||
final callback759 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.raiseAndActivate_calledFromC);
|
||||
registerCallback(thisCpp, callback759, 759);
|
||||
//tag=1021
|
||||
final callback760 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback760, 760);
|
||||
//tag=1021
|
||||
final callback761 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setHeight_calledFromC);
|
||||
final callback761 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseKeyboard_calledFromC);
|
||||
registerCallback(thisCpp, callback761, 761);
|
||||
//tag=1021
|
||||
final callback762 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMaximumSize_calledFromC);
|
||||
final callback762 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback762, 762);
|
||||
//tag=1021
|
||||
final callback763 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMinimumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback763, 763);
|
||||
//tag=1021
|
||||
final callback764 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setMouseTracking_calledFromC);
|
||||
registerCallback(thisCpp, callback764, 764);
|
||||
//tag=1021
|
||||
final callback765 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setObjectName_calledFromC);
|
||||
registerCallback(thisCpp, callback765, 765);
|
||||
//tag=1021
|
||||
final callback766 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setParent_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback766, 766);
|
||||
//tag=1021
|
||||
final callback767 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedHeight_calledFromC);
|
||||
registerCallback(thisCpp, callback767, 767);
|
||||
//tag=1021
|
||||
final callback768 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.setSize_2_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedWidth_calledFromC);
|
||||
registerCallback(thisCpp, callback768, 768);
|
||||
//tag=1021
|
||||
final callback769 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setVisible_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback769, 769);
|
||||
//tag=1021
|
||||
final callback770 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setWidth_calledFromC);
|
||||
View_flutter.setHeight_calledFromC);
|
||||
registerCallback(thisCpp, callback770, 770);
|
||||
//tag=1021
|
||||
final callback771 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Double_FFI>(
|
||||
View_flutter.setWindowOpacity_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMaximumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback771, 771);
|
||||
//tag=1021
|
||||
final callback772 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setWindowTitle_calledFromC);
|
||||
View_flutter.setMinimumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback772, 772);
|
||||
//tag=1021
|
||||
final callback773 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setZOrder_calledFromC);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setMouseTracking_calledFromC);
|
||||
registerCallback(thisCpp, callback773, 773);
|
||||
//tag=1021
|
||||
final callback774 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.show_calledFromC);
|
||||
final callback774 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setObjectName_calledFromC);
|
||||
registerCallback(thisCpp, callback774, 774);
|
||||
//tag=1021
|
||||
final callback775 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMaximized_calledFromC);
|
||||
final callback775 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setParent_calledFromC);
|
||||
registerCallback(thisCpp, callback775, 775);
|
||||
//tag=1021
|
||||
final callback776 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMinimized_calledFromC);
|
||||
registerCallback(thisCpp, callback776, 776);
|
||||
//tag=1021
|
||||
final callback777 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showNormal_calledFromC);
|
||||
final callback777 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.setSize_2_calledFromC);
|
||||
registerCallback(thisCpp, callback777, 777);
|
||||
//tag=1021
|
||||
final callback779 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.sizeHint_calledFromC);
|
||||
final callback778 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setVisible_calledFromC);
|
||||
registerCallback(thisCpp, callback778, 778);
|
||||
//tag=1021
|
||||
final callback779 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setWidth_calledFromC);
|
||||
registerCallback(thisCpp, callback779, 779);
|
||||
//tag=1021
|
||||
final callback780 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.update_calledFromC);
|
||||
final callback780 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Double_FFI>(
|
||||
View_flutter.setWindowOpacity_calledFromC);
|
||||
registerCallback(thisCpp, callback780, 780);
|
||||
//tag=1021
|
||||
final callback781 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setWindowTitle_calledFromC);
|
||||
registerCallback(thisCpp, callback781, 781);
|
||||
//tag=1021
|
||||
final callback782 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setZOrder_calledFromC);
|
||||
registerCallback(thisCpp, callback782, 782);
|
||||
//tag=1021
|
||||
final callback783 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.show_calledFromC);
|
||||
registerCallback(thisCpp, callback783, 783);
|
||||
//tag=1021
|
||||
final callback784 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMaximized_calledFromC);
|
||||
registerCallback(thisCpp, callback784, 784);
|
||||
//tag=1021
|
||||
final callback785 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMinimized_calledFromC);
|
||||
registerCallback(thisCpp, callback785, 785);
|
||||
//tag=1021
|
||||
final callback786 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showNormal_calledFromC);
|
||||
registerCallback(thisCpp, callback786, 786);
|
||||
//tag=1021
|
||||
final callback788 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.sizeHint_calledFromC);
|
||||
registerCallback(thisCpp, callback788, 788);
|
||||
//tag=1021
|
||||
final callback790 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.update_calledFromC);
|
||||
registerCallback(thisCpp, callback790, 790);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user