flutter: generate more bindings
This commit is contained in:
@@ -14,13 +14,21 @@ export 'src/Layout.dart' show Layout;
|
||||
export 'src/View_flutter.dart' show View_flutter;
|
||||
export 'src/View.dart' show View;
|
||||
export 'src/Controller.dart' show Controller;
|
||||
export 'src/ClassicIndicators.dart' show ClassicIndicators;
|
||||
export 'src/CreateViewOptions.dart' show CreateViewOptions;
|
||||
export 'src/Platform_flutter.dart' show Platform_flutter;
|
||||
export 'src/ViewFactory_flutter.dart' show ViewFactory_flutter;
|
||||
export 'src/ViewFactory.dart' show ViewFactory;
|
||||
export 'src/ClassicIndicatorWindowViewInterface.dart'
|
||||
show ClassicIndicatorWindowViewInterface;
|
||||
export 'src/Views.dart' show asView_flutter, asView_flutter;
|
||||
export 'src/KDDockWidgets.dart'
|
||||
show qt_getEnumName, KDDockWidgets_MainWindowOption, KDDockWidgets_Type;
|
||||
show
|
||||
qt_getEnumName,
|
||||
qt_getEnumName,
|
||||
KDDockWidgets_MainWindowOption,
|
||||
KDDockWidgets_DropLocation,
|
||||
KDDockWidgets_Type;
|
||||
export 'src/QByteArray.dart' show QByteArray;
|
||||
export 'src/QEvent.dart' show QEvent, QEvent_Type;
|
||||
export 'src/QList.dart' show QList;
|
||||
|
||||
@@ -0,0 +1,428 @@
|
||||
/*
|
||||
This file is part of KDDockWidgets.
|
||||
|
||||
SPDX-FileCopyrightText: 2019-2022 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
||||
Author: Sérgio Martins <sergio.martins@kdab.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
||||
*/
|
||||
|
||||
//tag=1052
|
||||
import 'dart:ffi' as ffi;
|
||||
import 'package:ffi/ffi.dart';
|
||||
import 'TypeHelpers.dart';
|
||||
import '../Bindings.dart';
|
||||
import '../FinalizerHelpers.dart';
|
||||
|
||||
//tag=1051
|
||||
var _dylib = Library.instance().dylib;
|
||||
final _finalizer = _dylib.lookup<
|
||||
ffi.NativeFunction<Dart_WeakPersistentHandleFinalizer_Type>>(
|
||||
'c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface_Finalizer');
|
||||
|
||||
class ClassicIndicatorWindowViewInterface {
|
||||
//tag=1060
|
||||
static var s_dartInstanceByCppPtr =
|
||||
Map<int, ClassicIndicatorWindowViewInterface>();
|
||||
var _thisCpp = null;
|
||||
bool _needsAutoDelete = false;
|
||||
get thisCpp => _thisCpp;
|
||||
set thisCpp(var ptr) {
|
||||
_thisCpp = ptr;
|
||||
ffi.Pointer<ffi.Void> ptrvoid = ptr.cast<ffi.Void>();
|
||||
if (_needsAutoDelete)
|
||||
newWeakPersistentHandle?.call(this, ptrvoid, 0, _finalizer);
|
||||
}
|
||||
|
||||
static bool isCached(var cppPointer) {
|
||||
//tag=1024
|
||||
return s_dartInstanceByCppPtr.containsKey(cppPointer.address);
|
||||
}
|
||||
|
||||
//tag=1061
|
||||
factory ClassicIndicatorWindowViewInterface.fromCache(var cppPointer,
|
||||
[needsAutoDelete = false]) {
|
||||
return (s_dartInstanceByCppPtr[cppPointer.address] ??
|
||||
ClassicIndicatorWindowViewInterface.fromCppPointer(
|
||||
cppPointer, needsAutoDelete))
|
||||
as ClassicIndicatorWindowViewInterface;
|
||||
}
|
||||
ClassicIndicatorWindowViewInterface.fromCppPointer(var cppPointer,
|
||||
[this._needsAutoDelete = false]) {
|
||||
//tag=1024
|
||||
thisCpp = cppPointer;
|
||||
}
|
||||
//tag=1025
|
||||
ClassicIndicatorWindowViewInterface.init() {}
|
||||
//tag=1023
|
||||
//ClassicIndicatorWindowViewInterface()
|
||||
ClassicIndicatorWindowViewInterface() {
|
||||
//tag=1075
|
||||
final voidstar_Func_void func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_void_FFI>>(
|
||||
'c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__constructor')
|
||||
.asFunction();
|
||||
thisCpp = func();
|
||||
ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address] = this;
|
||||
registerCallbacks();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// hover(QPoint arg__1)
|
||||
int hover(QPoint arg__1) {
|
||||
//tag=1028
|
||||
final int_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<int_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(592))
|
||||
.asFunction();
|
||||
//tag=1031
|
||||
return func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static int hover_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void> arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::hover(QPoint arg__1)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.hover(QPoint.fromCppPointer(arg__1));
|
||||
return result;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// isWindow() const
|
||||
bool isWindow() {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(593))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static int isWindow_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::isWindow() const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.isWindow();
|
||||
return result ? 1 : 0;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// posForIndicator(KDDockWidgets::DropLocation arg__1) const
|
||||
QPoint posForIndicator(int arg__1) {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(594))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(thisCpp, arg__1);
|
||||
return QPoint.fromCppPointer(result, true);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static ffi.Pointer<void> posForIndicator_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, int arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::posForIndicator(KDDockWidgets::DropLocation arg__1) const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.posForIndicator(arg__1);
|
||||
return result.thisCpp;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// raise()
|
||||
raise() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(595))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void raise_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::raise()! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.raise();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// resize(QSize arg__1)
|
||||
resize(QSize arg__1) {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(596))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void resize_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void> arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::resize(QSize arg__1)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.resize(QSize.fromCppPointer(arg__1));
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// setGeometry(QRect arg__1)
|
||||
setGeometry(QRect arg__1) {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(597))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void setGeometry_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void> arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::setGeometry(QRect arg__1)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.setGeometry(QRect.fromCppPointer(arg__1));
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// setObjectName(const QString & arg__1)
|
||||
setObjectName(String? arg__1) {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(598))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1?.toNativeUtf8() ?? ffi.nullptr);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void setObjectName_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void>? arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::setObjectName(const QString & arg__1)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.setObjectName(QString.fromCppPointer(arg__1).toDartString());
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// setVisible(bool arg__1)
|
||||
setVisible(bool arg__1) {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_bool func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_ffi_Int8_FFI>>(
|
||||
cFunctionSymbolName(599))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1 ? 1 : 0);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void setVisible_calledFromC(ffi.Pointer<void> thisCpp, int arg__1) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::setVisible(bool arg__1)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.setVisible(arg__1 != 0);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// updatePositions()
|
||||
updatePositions() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(600))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void updatePositions_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance = ClassicIndicatorWindowViewInterface
|
||||
.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicatorWindowViewInterface::updatePositions()! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.updatePositions();
|
||||
}
|
||||
|
||||
//tag=1022
|
||||
void release() {
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__destructor')
|
||||
.asFunction();
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__hover_QPoint";
|
||||
case 593:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__isWindow";
|
||||
case 594:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__posForIndicator_DropLocation";
|
||||
case 595:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__raise";
|
||||
case 596:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__resize_QSize";
|
||||
case 597:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__setGeometry_QRect";
|
||||
case 598:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__setObjectName_QString";
|
||||
case 599:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__setVisible_bool";
|
||||
case 600:
|
||||
return "c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__updatePositions";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 592:
|
||||
return "hover";
|
||||
case 593:
|
||||
return "isWindow";
|
||||
case 594:
|
||||
return "posForIndicator";
|
||||
case 595:
|
||||
return "raise";
|
||||
case 596:
|
||||
return "resize";
|
||||
case 597:
|
||||
return "setGeometry";
|
||||
case 598:
|
||||
return "setObjectName";
|
||||
case 599:
|
||||
return "setVisible";
|
||||
case 600:
|
||||
return "updatePositions";
|
||||
}
|
||||
throw Error();
|
||||
}
|
||||
|
||||
//tag=1020
|
||||
void registerCallbacks() {
|
||||
assert(thisCpp != null);
|
||||
final RegisterMethodIsReimplementedCallback registerCallback = _dylib
|
||||
.lookup<ffi.NativeFunction<RegisterMethodIsReimplementedCallback_FFI>>(
|
||||
'c_KDDockWidgets__Views__ClassicIndicatorWindowViewInterface__registerVirtualMethodCallback')
|
||||
.asFunction();
|
||||
const callbackExcept592 = 0;
|
||||
//tag=1021
|
||||
final callback592 =
|
||||
ffi.Pointer.fromFunction<int_Func_voidstar_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.hover_calledFromC,
|
||||
callbackExcept592);
|
||||
registerCallback(thisCpp, callback592, 592);
|
||||
const callbackExcept593 = 0;
|
||||
//tag=1021
|
||||
final callback593 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.isWindow_calledFromC,
|
||||
callbackExcept593);
|
||||
registerCallback(thisCpp, callback593, 593);
|
||||
//tag=1021
|
||||
final callback594 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_ffi_Int32_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.posForIndicator_calledFromC);
|
||||
registerCallback(thisCpp, callback594, 594);
|
||||
//tag=1021
|
||||
final callback595 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.raise_calledFromC);
|
||||
registerCallback(thisCpp, callback595, 595);
|
||||
//tag=1021
|
||||
final callback596 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.resize_calledFromC);
|
||||
registerCallback(thisCpp, callback596, 596);
|
||||
//tag=1021
|
||||
final callback597 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.setGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback597, 597);
|
||||
//tag=1021
|
||||
final callback598 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.setObjectName_calledFromC);
|
||||
registerCallback(thisCpp, callback598, 598);
|
||||
//tag=1021
|
||||
final callback599 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.setVisible_calledFromC);
|
||||
registerCallback(thisCpp, callback599, 599);
|
||||
//tag=1021
|
||||
final callback600 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
ClassicIndicatorWindowViewInterface.updatePositions_calledFromC);
|
||||
registerCallback(thisCpp, callback600, 600);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,319 @@
|
||||
/*
|
||||
This file is part of KDDockWidgets.
|
||||
|
||||
SPDX-FileCopyrightText: 2019-2022 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
||||
Author: Sérgio Martins <sergio.martins@kdab.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
||||
*/
|
||||
|
||||
//tag=1052
|
||||
import 'dart:ffi' as ffi;
|
||||
import 'package:ffi/ffi.dart';
|
||||
import 'TypeHelpers.dart';
|
||||
import '../Bindings.dart';
|
||||
import '../FinalizerHelpers.dart';
|
||||
|
||||
//tag=1051
|
||||
var _dylib = Library.instance().dylib;
|
||||
final _finalizer =
|
||||
_dylib.lookup<ffi.NativeFunction<Dart_WeakPersistentHandleFinalizer_Type>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators_Finalizer');
|
||||
|
||||
class ClassicIndicators {
|
||||
//tag=1060
|
||||
static var s_dartInstanceByCppPtr = Map<int, ClassicIndicators>();
|
||||
var _thisCpp = null;
|
||||
bool _needsAutoDelete = false;
|
||||
get thisCpp => _thisCpp;
|
||||
set thisCpp(var ptr) {
|
||||
_thisCpp = ptr;
|
||||
ffi.Pointer<ffi.Void> ptrvoid = ptr.cast<ffi.Void>();
|
||||
if (_needsAutoDelete)
|
||||
newWeakPersistentHandle?.call(this, ptrvoid, 0, _finalizer);
|
||||
}
|
||||
|
||||
static bool isCached(var cppPointer) {
|
||||
//tag=1024
|
||||
return s_dartInstanceByCppPtr.containsKey(cppPointer.address);
|
||||
}
|
||||
|
||||
//tag=1061
|
||||
factory ClassicIndicators.fromCache(var cppPointer,
|
||||
[needsAutoDelete = false]) {
|
||||
return (s_dartInstanceByCppPtr[cppPointer.address] ??
|
||||
ClassicIndicators.fromCppPointer(cppPointer, needsAutoDelete))
|
||||
as ClassicIndicators;
|
||||
}
|
||||
ClassicIndicators.fromCppPointer(var cppPointer,
|
||||
[this._needsAutoDelete = false]) {
|
||||
//tag=1024
|
||||
thisCpp = cppPointer;
|
||||
}
|
||||
//tag=1025
|
||||
ClassicIndicators.init() {}
|
||||
//tag=1023
|
||||
//ClassicIndicators(KDDockWidgets::Controllers::DropArea * dropArea)
|
||||
ClassicIndicators(DropArea? dropArea) {
|
||||
//tag=1075
|
||||
final voidstar_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__constructor_DropArea')
|
||||
.asFunction();
|
||||
thisCpp = func(dropArea == null ? ffi.nullptr : dropArea.thisCpp);
|
||||
ClassicIndicators.s_dartInstanceByCppPtr[thisCpp.address] = this;
|
||||
registerCallbacks();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// geometryForRubberband(QRect localRect) const
|
||||
QRect geometryForRubberband(QRect localRect) {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__geometryForRubberband_QRect')
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
func(thisCpp, localRect == null ? ffi.nullptr : localRect.thisCpp);
|
||||
return QRect.fromCppPointer(result, true);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// hover_impl(QPoint globalPos)
|
||||
int hover_impl(QPoint globalPos) {
|
||||
//tag=1028
|
||||
final int_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<int_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(672))
|
||||
.asFunction();
|
||||
//tag=1031
|
||||
return func(thisCpp, globalPos == null ? ffi.nullptr : globalPos.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static int hover_impl_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void> globalPos) {
|
||||
var dartInstance =
|
||||
ClassicIndicators.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicators::hover_impl(QPoint globalPos)! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.hover_impl(QPoint.fromCppPointer(globalPos));
|
||||
return result;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// indicatorsVisibleChanged()
|
||||
indicatorsVisibleChanged() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__indicatorsVisibleChanged')
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// onResize(QSize newSize)
|
||||
bool onResize(QSize newSize) {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__onResize_QSize')
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp, newSize == null ? ffi.nullptr : newSize.thisCpp) != 0;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// posForIndicator(KDDockWidgets::DropLocation arg__1) const
|
||||
QPoint posForIndicator(int arg__1) {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_ffi_Int32_FFI>>(
|
||||
cFunctionSymbolName(675))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(thisCpp, arg__1);
|
||||
return QPoint.fromCppPointer(result, true);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static ffi.Pointer<void> posForIndicator_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, int arg__1) {
|
||||
var dartInstance =
|
||||
ClassicIndicators.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicators::posForIndicator(KDDockWidgets::DropLocation arg__1) const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance.posForIndicator(arg__1);
|
||||
return result.thisCpp;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// raiseIndicators()
|
||||
raiseIndicators() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__raiseIndicators')
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// rubberBandIsTopLevel() const
|
||||
bool rubberBandIsTopLevel() {
|
||||
//tag=1028
|
||||
final bool_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<bool_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__rubberBandIsTopLevel')
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// setDropLocation(KDDockWidgets::DropLocation arg__1)
|
||||
setDropLocation(int arg__1) {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_ffi_Int32_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__setDropLocation_DropLocation')
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1);
|
||||
}
|
||||
|
||||
//tag=1024
|
||||
static
|
||||
//tag=1027
|
||||
// tr(const char * s, const char * c, int n)
|
||||
QString tr(String? s, String? c, int n) {
|
||||
//tag=1028
|
||||
final voidstar_Func_string_string_int func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_string_string_ffi_Int32_FFI>>(
|
||||
'c_static_KDDockWidgets__Controllers__ClassicIndicators__tr_char_char_int')
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
s?.toNativeUtf8() ?? ffi.nullptr, c?.toNativeUtf8() ?? ffi.nullptr, n);
|
||||
return QString.fromCppPointer(result, true);
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// updateVisibility()
|
||||
updateVisibility() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(680))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static void updateVisibility_calledFromC(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance =
|
||||
ClassicIndicators.s_dartInstanceByCppPtr[thisCpp.address];
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ClassicIndicators::updateVisibility()! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1036
|
||||
dartInstance.updateVisibility();
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// updateWindowPosition()
|
||||
updateWindowPosition() {
|
||||
//tag=1028
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__updateWindowPosition')
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1022
|
||||
void release() {
|
||||
final void_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__destructor')
|
||||
.asFunction();
|
||||
func(thisCpp);
|
||||
}
|
||||
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 672:
|
||||
return "c_KDDockWidgets__Controllers__ClassicIndicators__hover_impl_QPoint";
|
||||
case 675:
|
||||
return "c_KDDockWidgets__Controllers__ClassicIndicators__posForIndicator_DropLocation";
|
||||
case 680:
|
||||
return "c_KDDockWidgets__Controllers__ClassicIndicators__updateVisibility";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 672:
|
||||
return "hover_impl";
|
||||
case 675:
|
||||
return "posForIndicator";
|
||||
case 680:
|
||||
return "updateVisibility";
|
||||
}
|
||||
throw Error();
|
||||
}
|
||||
|
||||
//tag=1020
|
||||
void registerCallbacks() {
|
||||
assert(thisCpp != null);
|
||||
final RegisterMethodIsReimplementedCallback registerCallback = _dylib
|
||||
.lookup<ffi.NativeFunction<RegisterMethodIsReimplementedCallback_FFI>>(
|
||||
'c_KDDockWidgets__Controllers__ClassicIndicators__registerVirtualMethodCallback')
|
||||
.asFunction();
|
||||
const callbackExcept672 = 0;
|
||||
//tag=1021
|
||||
final callback672 =
|
||||
ffi.Pointer.fromFunction<int_Func_voidstar_voidstar_FFI>(
|
||||
ClassicIndicators.hover_impl_calledFromC, callbackExcept672);
|
||||
registerCallback(thisCpp, callback672, 672);
|
||||
//tag=1021
|
||||
final callback675 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_ffi_Int32_FFI>(
|
||||
ClassicIndicators.posForIndicator_calledFromC);
|
||||
registerCallback(thisCpp, callback675, 675);
|
||||
//tag=1021
|
||||
final callback680 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
ClassicIndicators.updateVisibility_calledFromC);
|
||||
registerCallback(thisCpp, callback680, 680);
|
||||
}
|
||||
}
|
||||
@@ -186,35 +186,6 @@ class Controller extends QObject {
|
||||
//tag=1030
|
||||
func(thisCpp, parent == null ? ffi.nullptr : parent.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1077
|
||||
void onParentViewChanged(Function callback, {QObject? context}) {
|
||||
final SignalHandler func = _dylib
|
||||
.lookup<ffi.NativeFunction<SignalHandler_FFI>>(
|
||||
'c_KDDockWidgets__Controller__onParentViewChanged_View')
|
||||
.asFunction();
|
||||
final dartCallback =
|
||||
ffi.Pointer.fromFunction<ffi.Void Function(ffi.Pointer<void>)>(
|
||||
onParentViewChanged_callback);
|
||||
final callbackMethod = onParentViewChanged_callback;
|
||||
var handlers = signalHandlerersBySignal[callbackMethod] ?? [];
|
||||
handlers.add(callback);
|
||||
signalHandlerersBySignal[callbackMethod] = handlers;
|
||||
ffi.Pointer<void> contextPtr =
|
||||
context == null ? ffi.nullptr : context.thisCpp;
|
||||
func(thisCpp, contextPtr, dartCallback);
|
||||
}
|
||||
|
||||
static void onParentViewChanged_callback(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance =
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] as Controller;
|
||||
final signalHandlers =
|
||||
dartInstance.signalHandlerersBySignal[onParentViewChanged_callback] ??
|
||||
[];
|
||||
for (var signalHandler in signalHandlers) {
|
||||
signalHandler();
|
||||
}
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
@@ -264,7 +235,7 @@ class Controller extends QObject {
|
||||
//tag=1028
|
||||
final void_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<void_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(695))
|
||||
cFunctionSymbolName(719))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, parent == null ? ffi.nullptr : parent.thisCpp);
|
||||
@@ -424,7 +395,7 @@ class Controller extends QObject {
|
||||
return "c_KDDockWidgets__Controller__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controller__eventFilter_QObject_QEvent";
|
||||
case 695:
|
||||
case 719:
|
||||
return "c_KDDockWidgets__Controller__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -438,7 +409,7 @@ class Controller extends QObject {
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 695:
|
||||
case 719:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -470,9 +441,9 @@ class Controller extends QObject {
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
final callback719 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
registerCallback(thisCpp, callback719, 719);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -238,7 +238,7 @@ class DropArea extends Layout {
|
||||
return "c_KDDockWidgets__Controllers__DropArea__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__eventFilter_QObject_QEvent";
|
||||
case 695:
|
||||
case 719:
|
||||
return "c_KDDockWidgets__Controllers__DropArea__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -252,7 +252,7 @@ class DropArea extends Layout {
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 695:
|
||||
case 719:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -284,9 +284,9 @@ class DropArea extends Layout {
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
final callback719 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
registerCallback(thisCpp, callback719, 719);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,6 +27,24 @@ class KDDockWidgets_MainWindowOption {
|
||||
static const MainWindowOption_HasCentralWidget = 5;
|
||||
}
|
||||
|
||||
//tag=1038
|
||||
class KDDockWidgets_DropLocation {
|
||||
static const DropLocation_None = 0;
|
||||
static const DropLocation_Left = 1;
|
||||
static const DropLocation_Top = 2;
|
||||
static const DropLocation_Right = 4;
|
||||
static const DropLocation_Bottom = 8;
|
||||
static const DropLocation_Center = 16;
|
||||
static const DropLocation_OutterLeft = 32;
|
||||
static const DropLocation_OutterTop = 64;
|
||||
static const DropLocation_OutterRight = 128;
|
||||
static const DropLocation_OutterBottom = 256;
|
||||
static const DropLocation_Inner = 15;
|
||||
static const DropLocation_Outter = 480;
|
||||
static const DropLocation_Horizontal = 165;
|
||||
static const DropLocation_Vertical = 330;
|
||||
}
|
||||
|
||||
//tag=1038
|
||||
class KDDockWidgets_Type {
|
||||
static const FIRST = 1;
|
||||
|
||||
@@ -364,7 +364,7 @@ class Layout extends Controller {
|
||||
return "c_KDDockWidgets__Controllers__Layout__event_QEvent";
|
||||
case 307:
|
||||
return "c_KDDockWidgets__Controllers__Layout__eventFilter_QObject_QEvent";
|
||||
case 695:
|
||||
case 719:
|
||||
return "c_KDDockWidgets__Controllers__Layout__setParentView_impl_View";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -378,7 +378,7 @@ class Layout extends Controller {
|
||||
return "event";
|
||||
case 307:
|
||||
return "eventFilter";
|
||||
case 695:
|
||||
case 719:
|
||||
return "setParentView_impl";
|
||||
}
|
||||
throw Error();
|
||||
@@ -410,9 +410,9 @@ class Layout extends Controller {
|
||||
QObject.eventFilter_calledFromC, callbackExcept307);
|
||||
registerCallback(thisCpp, callback307, 307);
|
||||
//tag=1021
|
||||
final callback695 =
|
||||
final callback719 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
Controller.setParentView_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback695, 695);
|
||||
registerCallback(thisCpp, callback719, 719);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ class Platform_flutter {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_FFI>>(
|
||||
cFunctionSymbolName(625))
|
||||
cFunctionSymbolName(637))
|
||||
.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(626))
|
||||
cFunctionSymbolName(638))
|
||||
.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(627))
|
||||
cFunctionSymbolName(639))
|
||||
.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(628))
|
||||
cFunctionSymbolName(640))
|
||||
.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(629))
|
||||
cFunctionSymbolName(641))
|
||||
.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(631))
|
||||
cFunctionSymbolName(643))
|
||||
.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(632))
|
||||
cFunctionSymbolName(644))
|
||||
.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(633))
|
||||
cFunctionSymbolName(645))
|
||||
.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(634))
|
||||
cFunctionSymbolName(646))
|
||||
.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(635))
|
||||
cFunctionSymbolName(647))
|
||||
.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(636))
|
||||
cFunctionSymbolName(648))
|
||||
.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(637))
|
||||
cFunctionSymbolName(649))
|
||||
.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(638))
|
||||
cFunctionSymbolName(650))
|
||||
.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(639))
|
||||
cFunctionSymbolName(651))
|
||||
.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(640))
|
||||
cFunctionSymbolName(652))
|
||||
.asFunction();
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1);
|
||||
@@ -503,7 +503,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(641))
|
||||
cFunctionSymbolName(653))
|
||||
.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(642))
|
||||
cFunctionSymbolName(654))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
@@ -570,7 +570,7 @@ class Platform_flutter {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(643))
|
||||
cFunctionSymbolName(655))
|
||||
.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(644))
|
||||
cFunctionSymbolName(656))
|
||||
.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(645))
|
||||
cFunctionSymbolName(657))
|
||||
.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(646))
|
||||
cFunctionSymbolName(658))
|
||||
.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(647))
|
||||
cFunctionSymbolName(659))
|
||||
.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(648))
|
||||
cFunctionSymbolName(660))
|
||||
.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(649))
|
||||
cFunctionSymbolName(661))
|
||||
.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(650))
|
||||
cFunctionSymbolName(662))
|
||||
.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(651))
|
||||
cFunctionSymbolName(663))
|
||||
.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(652))
|
||||
cFunctionSymbolName(664))
|
||||
.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(653))
|
||||
cFunctionSymbolName(665))
|
||||
.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(654))
|
||||
cFunctionSymbolName(666))
|
||||
.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(655))
|
||||
cFunctionSymbolName(667))
|
||||
.asFunction();
|
||||
//tag=1029
|
||||
return func(thisCpp) != 0;
|
||||
@@ -944,65 +944,65 @@ class Platform_flutter {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 625:
|
||||
return "c_KDDockWidgets__Platform_flutter__applicationName";
|
||||
case 626:
|
||||
return "c_KDDockWidgets__Platform_flutter__createDefaultViewFactory";
|
||||
case 627:
|
||||
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 631:
|
||||
return "c_KDDockWidgets__Platform_flutter__installMessageHandler";
|
||||
case 632:
|
||||
return "c_KDDockWidgets__Platform_flutter__isLeftMouseButtonPressed";
|
||||
case 633:
|
||||
return "c_KDDockWidgets__Platform_flutter__isProcessingAppQuitEvent";
|
||||
case 634:
|
||||
return "c_KDDockWidgets__Platform_flutter__name";
|
||||
case 635:
|
||||
return "c_KDDockWidgets__Platform_flutter__organizationName";
|
||||
case 636:
|
||||
return "c_KDDockWidgets__Platform_flutter__restoreMouseCursor";
|
||||
case 637:
|
||||
return "c_KDDockWidgets__Platform_flutter__screenNumberFor_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__applicationName";
|
||||
case 638:
|
||||
return "c_KDDockWidgets__Platform_flutter__screenSizeFor_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__createDefaultViewFactory";
|
||||
case 639:
|
||||
return "c_KDDockWidgets__Platform_flutter__sendEvent_View_QEvent";
|
||||
return "c_KDDockWidgets__Platform_flutter__createView_Controller_View";
|
||||
case 640:
|
||||
return "c_KDDockWidgets__Platform_flutter__setMouseCursor_CursorShape";
|
||||
return "c_KDDockWidgets__Platform_flutter__hasActivePopup";
|
||||
case 641:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createFocusableView_CreateViewOptions_View";
|
||||
case 642:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createNonClosableView_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__inDisallowedDragView_QPoint";
|
||||
case 643:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createView_CreateViewOptions_View";
|
||||
return "c_KDDockWidgets__Platform_flutter__installMessageHandler";
|
||||
case 644:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_deinitPlatform_impl";
|
||||
return "c_KDDockWidgets__Platform_flutter__isLeftMouseButtonPressed";
|
||||
case 645:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_initPlatform_impl";
|
||||
return "c_KDDockWidgets__Platform_flutter__isProcessingAppQuitEvent";
|
||||
case 646:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_wait_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__name";
|
||||
case 647:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_View_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__organizationName";
|
||||
case 648:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_QObject_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__restoreMouseCursor";
|
||||
case 649:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_View_Type_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__screenNumberFor_View";
|
||||
case 650:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_QObject_Type_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__screenSizeFor_View";
|
||||
case 651:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_Controller_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__sendEvent_View_QEvent";
|
||||
case 652:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_View_int";
|
||||
return "c_KDDockWidgets__Platform_flutter__setMouseCursor_CursorShape";
|
||||
case 653:
|
||||
return "c_KDDockWidgets__Platform_flutter__ungrabMouse";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createFocusableView_CreateViewOptions_View";
|
||||
case 654:
|
||||
return "c_KDDockWidgets__Platform_flutter__uninstallMessageHandler";
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createNonClosableView_View";
|
||||
case 655:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_createView_CreateViewOptions_View";
|
||||
case 656:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_deinitPlatform_impl";
|
||||
case 657:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_initPlatform_impl";
|
||||
case 658:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_wait_int";
|
||||
case 659:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_View_int";
|
||||
case 660:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForDeleted_QObject_int";
|
||||
case 661:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_View_Type_int";
|
||||
case 662:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForEvent_QObject_Type_int";
|
||||
case 663:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_Controller_int";
|
||||
case 664:
|
||||
return "c_KDDockWidgets__Platform_flutter__tests_waitForResize_View_int";
|
||||
case 665:
|
||||
return "c_KDDockWidgets__Platform_flutter__ungrabMouse";
|
||||
case 666:
|
||||
return "c_KDDockWidgets__Platform_flutter__uninstallMessageHandler";
|
||||
case 667:
|
||||
return "c_KDDockWidgets__Platform_flutter__usesFallbackMouseGrabber";
|
||||
}
|
||||
return "";
|
||||
@@ -1010,65 +1010,65 @@ class Platform_flutter {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 625:
|
||||
return "applicationName";
|
||||
case 626:
|
||||
return "createDefaultViewFactory";
|
||||
case 627:
|
||||
return "createView";
|
||||
case 628:
|
||||
return "hasActivePopup";
|
||||
case 629:
|
||||
return "inDisallowedDragView";
|
||||
case 631:
|
||||
return "installMessageHandler";
|
||||
case 632:
|
||||
return "isLeftMouseButtonPressed";
|
||||
case 633:
|
||||
return "isProcessingAppQuitEvent";
|
||||
case 634:
|
||||
return "name";
|
||||
case 635:
|
||||
return "organizationName";
|
||||
case 636:
|
||||
return "restoreMouseCursor";
|
||||
case 637:
|
||||
return "screenNumberFor";
|
||||
return "applicationName";
|
||||
case 638:
|
||||
return "screenSizeFor";
|
||||
return "createDefaultViewFactory";
|
||||
case 639:
|
||||
return "sendEvent";
|
||||
return "createView";
|
||||
case 640:
|
||||
return "setMouseCursor";
|
||||
return "hasActivePopup";
|
||||
case 641:
|
||||
return "tests_createFocusableView";
|
||||
case 642:
|
||||
return "tests_createNonClosableView";
|
||||
return "inDisallowedDragView";
|
||||
case 643:
|
||||
return "tests_createView";
|
||||
return "installMessageHandler";
|
||||
case 644:
|
||||
return "tests_deinitPlatform_impl";
|
||||
return "isLeftMouseButtonPressed";
|
||||
case 645:
|
||||
return "tests_initPlatform_impl";
|
||||
return "isProcessingAppQuitEvent";
|
||||
case 646:
|
||||
return "tests_wait";
|
||||
return "name";
|
||||
case 647:
|
||||
return "tests_waitForDeleted";
|
||||
return "organizationName";
|
||||
case 648:
|
||||
return "tests_waitForDeleted_2";
|
||||
return "restoreMouseCursor";
|
||||
case 649:
|
||||
return "tests_waitForEvent";
|
||||
return "screenNumberFor";
|
||||
case 650:
|
||||
return "tests_waitForEvent_2";
|
||||
return "screenSizeFor";
|
||||
case 651:
|
||||
return "tests_waitForResize";
|
||||
return "sendEvent";
|
||||
case 652:
|
||||
return "tests_waitForResize_2";
|
||||
return "setMouseCursor";
|
||||
case 653:
|
||||
return "ungrabMouse";
|
||||
return "tests_createFocusableView";
|
||||
case 654:
|
||||
return "uninstallMessageHandler";
|
||||
return "tests_createNonClosableView";
|
||||
case 655:
|
||||
return "tests_createView";
|
||||
case 656:
|
||||
return "tests_deinitPlatform_impl";
|
||||
case 657:
|
||||
return "tests_initPlatform_impl";
|
||||
case 658:
|
||||
return "tests_wait";
|
||||
case 659:
|
||||
return "tests_waitForDeleted";
|
||||
case 660:
|
||||
return "tests_waitForDeleted_2";
|
||||
case 661:
|
||||
return "tests_waitForEvent";
|
||||
case 662:
|
||||
return "tests_waitForEvent_2";
|
||||
case 663:
|
||||
return "tests_waitForResize";
|
||||
case 664:
|
||||
return "tests_waitForResize_2";
|
||||
case 665:
|
||||
return "ungrabMouse";
|
||||
case 666:
|
||||
return "uninstallMessageHandler";
|
||||
case 667:
|
||||
return "usesFallbackMouseGrabber";
|
||||
}
|
||||
throw Error();
|
||||
@@ -1083,160 +1083,160 @@ class Platform_flutter {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback625 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
final callback637 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.applicationName_calledFromC);
|
||||
registerCallback(thisCpp, callback625, 625);
|
||||
//tag=1021
|
||||
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, callback627, 627);
|
||||
const callbackExcept628 = 0;
|
||||
//tag=1021
|
||||
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,
|
||||
callbackExcept629);
|
||||
registerCallback(thisCpp, callback629, 629);
|
||||
//tag=1021
|
||||
final callback631 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.installMessageHandler_calledFromC);
|
||||
registerCallback(thisCpp, callback631, 631);
|
||||
const callbackExcept632 = 0;
|
||||
//tag=1021
|
||||
final callback632 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isLeftMouseButtonPressed_calledFromC,
|
||||
callbackExcept632);
|
||||
registerCallback(thisCpp, callback632, 632);
|
||||
const callbackExcept633 = 0;
|
||||
//tag=1021
|
||||
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<string_Func_voidstar_FFI>(
|
||||
Platform_flutter.name_calledFromC);
|
||||
registerCallback(thisCpp, callback634, 634);
|
||||
//tag=1021
|
||||
final callback635 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.organizationName_calledFromC);
|
||||
registerCallback(thisCpp, callback635, 635);
|
||||
//tag=1021
|
||||
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<int_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenNumberFor_calledFromC, callbackExcept637);
|
||||
registerCallback(thisCpp, callback637, 637);
|
||||
//tag=1021
|
||||
final callback638 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenSizeFor_calledFromC);
|
||||
final callback638 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.createDefaultViewFactory_calledFromC);
|
||||
registerCallback(thisCpp, callback638, 638);
|
||||
//tag=1021
|
||||
final callback639 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.sendEvent_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.createView_calledFromC);
|
||||
registerCallback(thisCpp, callback639, 639);
|
||||
const callbackExcept640 = 0;
|
||||
//tag=1021
|
||||
final callback640 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.setMouseCursor_calledFromC);
|
||||
final callback640 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.hasActivePopup_calledFromC, callbackExcept640);
|
||||
registerCallback(thisCpp, callback640, 640);
|
||||
const callbackExcept641 = 0;
|
||||
//tag=1021
|
||||
final callback641 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createFocusableView_calledFromC);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.inDisallowedDragView_calledFromC,
|
||||
callbackExcept641);
|
||||
registerCallback(thisCpp, callback641, 641);
|
||||
//tag=1021
|
||||
final callback642 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createNonClosableView_calledFromC);
|
||||
registerCallback(thisCpp, callback642, 642);
|
||||
//tag=1021
|
||||
final callback643 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createView_calledFromC);
|
||||
final callback643 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.installMessageHandler_calledFromC);
|
||||
registerCallback(thisCpp, callback643, 643);
|
||||
const callbackExcept644 = 0;
|
||||
//tag=1021
|
||||
final callback644 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_deinitPlatform_impl_calledFromC);
|
||||
final callback644 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isLeftMouseButtonPressed_calledFromC,
|
||||
callbackExcept644);
|
||||
registerCallback(thisCpp, callback644, 644);
|
||||
const callbackExcept645 = 0;
|
||||
//tag=1021
|
||||
final callback645 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_initPlatform_impl_calledFromC);
|
||||
final callback645 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.isProcessingAppQuitEvent_calledFromC,
|
||||
callbackExcept645);
|
||||
registerCallback(thisCpp, callback645, 645);
|
||||
//tag=1021
|
||||
final callback646 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_wait_calledFromC);
|
||||
final callback646 = ffi.Pointer.fromFunction<string_Func_voidstar_FFI>(
|
||||
Platform_flutter.name_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_calledFromC,
|
||||
callbackExcept647);
|
||||
final callback647 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
Platform_flutter.organizationName_calledFromC);
|
||||
registerCallback(thisCpp, callback647, 647);
|
||||
const callbackExcept648 = 0;
|
||||
//tag=1021
|
||||
final callback648 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_2_calledFromC,
|
||||
callbackExcept648);
|
||||
final callback648 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.restoreMouseCursor_calledFromC);
|
||||
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_calledFromC, callbackExcept649);
|
||||
final callback649 =
|
||||
ffi.Pointer.fromFunction<int_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenNumberFor_calledFromC, callbackExcept649);
|
||||
registerCallback(thisCpp, callback649, 649);
|
||||
const callbackExcept650 = 0;
|
||||
//tag=1021
|
||||
final callback650 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_2_calledFromC, callbackExcept650);
|
||||
final callback650 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.screenSizeFor_calledFromC);
|
||||
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_calledFromC,
|
||||
callbackExcept651);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.sendEvent_calledFromC);
|
||||
registerCallback(thisCpp, callback651, 651);
|
||||
const callbackExcept652 = 0;
|
||||
//tag=1021
|
||||
final callback652 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_2_calledFromC,
|
||||
callbackExcept652);
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.setMouseCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback652, 652);
|
||||
//tag=1021
|
||||
final callback653 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.ungrabMouse_calledFromC);
|
||||
final callback653 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createFocusableView_calledFromC);
|
||||
registerCallback(thisCpp, callback653, 653);
|
||||
//tag=1021
|
||||
final callback654 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.uninstallMessageHandler_calledFromC);
|
||||
final callback654 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createNonClosableView_calledFromC);
|
||||
registerCallback(thisCpp, callback654, 654);
|
||||
const callbackExcept655 = 0;
|
||||
//tag=1021
|
||||
final callback655 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.usesFallbackMouseGrabber_calledFromC,
|
||||
callbackExcept655);
|
||||
final callback655 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
Platform_flutter.tests_createView_calledFromC);
|
||||
registerCallback(thisCpp, callback655, 655);
|
||||
//tag=1021
|
||||
final callback656 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_deinitPlatform_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback656, 656);
|
||||
//tag=1021
|
||||
final callback657 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.tests_initPlatform_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback657, 657);
|
||||
//tag=1021
|
||||
final callback658 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_wait_calledFromC);
|
||||
registerCallback(thisCpp, callback658, 658);
|
||||
const callbackExcept659 = 0;
|
||||
//tag=1021
|
||||
final callback659 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_calledFromC,
|
||||
callbackExcept659);
|
||||
registerCallback(thisCpp, callback659, 659);
|
||||
const callbackExcept660 = 0;
|
||||
//tag=1021
|
||||
final callback660 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForDeleted_2_calledFromC,
|
||||
callbackExcept660);
|
||||
registerCallback(thisCpp, callback660, 660);
|
||||
const callbackExcept661 = 0;
|
||||
//tag=1021
|
||||
final callback661 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_calledFromC, callbackExcept661);
|
||||
registerCallback(thisCpp, callback661, 661);
|
||||
const callbackExcept662 = 0;
|
||||
//tag=1021
|
||||
final callback662 = ffi.Pointer.fromFunction<
|
||||
bool_Func_voidstar_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForEvent_2_calledFromC, callbackExcept662);
|
||||
registerCallback(thisCpp, callback662, 662);
|
||||
const callbackExcept663 = 0;
|
||||
//tag=1021
|
||||
final callback663 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_calledFromC,
|
||||
callbackExcept663);
|
||||
registerCallback(thisCpp, callback663, 663);
|
||||
const callbackExcept664 = 0;
|
||||
//tag=1021
|
||||
final callback664 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_ffi_Int32_FFI>(
|
||||
Platform_flutter.tests_waitForResize_2_calledFromC,
|
||||
callbackExcept664);
|
||||
registerCallback(thisCpp, callback664, 664);
|
||||
//tag=1021
|
||||
final callback665 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.ungrabMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback665, 665);
|
||||
//tag=1021
|
||||
final callback666 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
Platform_flutter.uninstallMessageHandler_calledFromC);
|
||||
registerCallback(thisCpp, callback666, 666);
|
||||
const callbackExcept667 = 0;
|
||||
//tag=1021
|
||||
final callback667 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
Platform_flutter.usesFallbackMouseGrabber_calledFromC,
|
||||
callbackExcept667);
|
||||
registerCallback(thisCpp, callback667, 667);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -144,34 +144,6 @@ class QObject {
|
||||
//tag=1030
|
||||
func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
}
|
||||
|
||||
//tag=1077
|
||||
void onDestroyed(Function callback, {QObject? context}) {
|
||||
final SignalHandler func = _dylib
|
||||
.lookup<ffi.NativeFunction<SignalHandler_FFI>>(
|
||||
'c_QObject__onDestroyed_QObject')
|
||||
.asFunction();
|
||||
final dartCallback =
|
||||
ffi.Pointer.fromFunction<ffi.Void Function(ffi.Pointer<void>)>(
|
||||
onDestroyed_callback);
|
||||
final callbackMethod = onDestroyed_callback;
|
||||
var handlers = signalHandlerersBySignal[callbackMethod] ?? [];
|
||||
handlers.add(callback);
|
||||
signalHandlerersBySignal[callbackMethod] = handlers;
|
||||
ffi.Pointer<void> contextPtr =
|
||||
context == null ? ffi.nullptr : context.thisCpp;
|
||||
func(thisCpp, contextPtr, dartCallback);
|
||||
}
|
||||
|
||||
static void onDestroyed_callback(ffi.Pointer<void> thisCpp) {
|
||||
var dartInstance =
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] as QObject;
|
||||
final signalHandlers =
|
||||
dartInstance.signalHandlerersBySignal[onDestroyed_callback] ?? [];
|
||||
for (var signalHandler in signalHandlers) {
|
||||
signalHandler();
|
||||
}
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -46,6 +46,38 @@ class ViewFactory extends QObject {
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// createClassicIndicatorWindow(KDDockWidgets::Controllers::ClassicIndicators * arg__1) const
|
||||
ClassicIndicatorWindowViewInterface createClassicIndicatorWindow(
|
||||
ClassicIndicators? arg__1) {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(604))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
func(thisCpp, arg__1 == null ? ffi.nullptr : arg__1.thisCpp);
|
||||
return ClassicIndicatorWindowViewInterface.fromCppPointer(result, false);
|
||||
}
|
||||
|
||||
//tag=1035
|
||||
static ffi.Pointer<void> createClassicIndicatorWindow_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void>? arg__1) {
|
||||
var dartInstance =
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] as ViewFactory;
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ViewFactory::createClassicIndicatorWindow(KDDockWidgets::Controllers::ClassicIndicators * arg__1) const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance
|
||||
.createClassicIndicatorWindow(ClassicIndicators.fromCppPointer(arg__1));
|
||||
return result.thisCpp;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1027
|
||||
// createDropArea(KDDockWidgets::Controllers::DropArea * arg__1, KDDockWidgets::View * parent) const
|
||||
View createDropArea(DropArea? arg__1, View? parent) {
|
||||
@@ -54,7 +86,7 @@ class ViewFactory extends QObject {
|
||||
.lookup<
|
||||
ffi.NativeFunction<
|
||||
voidstar_Func_voidstar_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(593))
|
||||
cFunctionSymbolName(605))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result = func(
|
||||
@@ -87,7 +119,7 @@ class ViewFactory extends QObject {
|
||||
//tag=1028
|
||||
final voidstar_Func_voidstar_voidstar func = _dylib
|
||||
.lookup<ffi.NativeFunction<voidstar_Func_voidstar_voidstar_FFI>>(
|
||||
cFunctionSymbolName(594))
|
||||
cFunctionSymbolName(606))
|
||||
.asFunction();
|
||||
//tag=1033
|
||||
ffi.Pointer<void> result =
|
||||
@@ -186,9 +218,11 @@ class ViewFactory extends QObject {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 593:
|
||||
case 604:
|
||||
return "c_KDDockWidgets__ViewFactory__createClassicIndicatorWindow_ClassicIndicators";
|
||||
case 605:
|
||||
return "c_KDDockWidgets__ViewFactory__createDropArea_DropArea_View";
|
||||
case 594:
|
||||
case 606:
|
||||
return "c_KDDockWidgets__ViewFactory__createRubberBand_View";
|
||||
case 295:
|
||||
return "c_KDDockWidgets__ViewFactory__customEvent_QEvent";
|
||||
@@ -202,9 +236,11 @@ class ViewFactory extends QObject {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 593:
|
||||
case 604:
|
||||
return "createClassicIndicatorWindow";
|
||||
case 605:
|
||||
return "createDropArea";
|
||||
case 594:
|
||||
case 606:
|
||||
return "createRubberBand";
|
||||
case 295:
|
||||
return "customEvent";
|
||||
@@ -225,15 +261,20 @@ class ViewFactory extends QObject {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback593 =
|
||||
final callback604 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createClassicIndicatorWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback604, 604);
|
||||
//tag=1021
|
||||
final callback605 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createDropArea_calledFromC);
|
||||
registerCallback(thisCpp, callback593, 593);
|
||||
registerCallback(thisCpp, callback605, 605);
|
||||
//tag=1021
|
||||
final callback594 =
|
||||
final callback606 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback594, 594);
|
||||
registerCallback(thisCpp, callback606, 606);
|
||||
//tag=1021
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
|
||||
@@ -48,6 +48,23 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1035
|
||||
static ffi.Pointer<void> createClassicIndicatorWindow_calledFromC(
|
||||
ffi.Pointer<void> thisCpp, ffi.Pointer<void>? arg__1) {
|
||||
var dartInstance =
|
||||
QObject.s_dartInstanceByCppPtr[thisCpp.address] as ViewFactory_flutter;
|
||||
if (dartInstance == null) {
|
||||
print(
|
||||
"Dart instance not found for ViewFactory_flutter::createClassicIndicatorWindow(KDDockWidgets::Controllers::ClassicIndicators * arg__1) const! (${thisCpp.address})");
|
||||
throw Error();
|
||||
}
|
||||
//tag=1037
|
||||
final result = dartInstance
|
||||
.createClassicIndicatorWindow(ClassicIndicators.fromCppPointer(arg__1));
|
||||
return result.thisCpp;
|
||||
}
|
||||
//tag=1024
|
||||
|
||||
//tag=1035
|
||||
static ffi.Pointer<void> createDropArea_calledFromC(ffi.Pointer<void> thisCpp,
|
||||
ffi.Pointer<void>? arg__1, ffi.Pointer<void>? parent) {
|
||||
@@ -156,9 +173,11 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 593:
|
||||
case 604:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createClassicIndicatorWindow_ClassicIndicators";
|
||||
case 605:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createDropArea_DropArea_View";
|
||||
case 594:
|
||||
case 606:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__createRubberBand_View";
|
||||
case 295:
|
||||
return "c_KDDockWidgets__ViewFactory_flutter__customEvent_QEvent";
|
||||
@@ -172,9 +191,11 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 593:
|
||||
case 604:
|
||||
return "createClassicIndicatorWindow";
|
||||
case 605:
|
||||
return "createDropArea";
|
||||
case 594:
|
||||
case 606:
|
||||
return "createRubberBand";
|
||||
case 295:
|
||||
return "customEvent";
|
||||
@@ -195,15 +216,20 @@ class ViewFactory_flutter extends ViewFactory {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback593 =
|
||||
final callback604 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createClassicIndicatorWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback604, 604);
|
||||
//tag=1021
|
||||
final callback605 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createDropArea_calledFromC);
|
||||
registerCallback(thisCpp, callback593, 593);
|
||||
registerCallback(thisCpp, callback605, 605);
|
||||
//tag=1021
|
||||
final callback594 =
|
||||
final callback606 =
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
ViewFactory_flutter.createRubberBand_calledFromC);
|
||||
registerCallback(thisCpp, callback594, 594);
|
||||
registerCallback(thisCpp, callback606, 606);
|
||||
//tag=1021
|
||||
final callback295 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
|
||||
@@ -880,113 +880,113 @@ class View_flutter extends View {
|
||||
//tag=1019
|
||||
String cFunctionSymbolName(int methodId) {
|
||||
switch (methodId) {
|
||||
case 709:
|
||||
case 733:
|
||||
return "c_KDDockWidgets__Views__View_flutter__activateWindow";
|
||||
case 713:
|
||||
return "c_KDDockWidgets__Views__View_flutter__close";
|
||||
case 716:
|
||||
return "c_KDDockWidgets__Views__View_flutter__createPlatformWindow";
|
||||
case 721:
|
||||
return "c_KDDockWidgets__Views__View_flutter__flags";
|
||||
case 723:
|
||||
return "c_KDDockWidgets__Views__View_flutter__free_impl";
|
||||
case 725:
|
||||
return "c_KDDockWidgets__Views__View_flutter__geometry";
|
||||
case 727:
|
||||
return "c_KDDockWidgets__Views__View_flutter__grabMouse";
|
||||
case 730:
|
||||
return "c_KDDockWidgets__Views__View_flutter__hasFocus";
|
||||
case 732:
|
||||
return "c_KDDockWidgets__Views__View_flutter__hide";
|
||||
case 735:
|
||||
return "c_KDDockWidgets__Views__View_flutter__init";
|
||||
case 737:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isActiveWindow";
|
||||
case 738:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMaximized";
|
||||
case 739:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMinimized";
|
||||
return "c_KDDockWidgets__Views__View_flutter__close";
|
||||
case 740:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isNull";
|
||||
case 741:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isRootView";
|
||||
case 742:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isVisible";
|
||||
case 743:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapFromGlobal_QPoint";
|
||||
case 744:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapTo_View_QPoint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__createPlatformWindow";
|
||||
case 745:
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapToGlobal_QPoint";
|
||||
case 746:
|
||||
return "c_KDDockWidgets__Views__View_flutter__maxSizeHint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__flags";
|
||||
case 747:
|
||||
return "c_KDDockWidgets__Views__View_flutter__maximumSize";
|
||||
case 748:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__free_impl";
|
||||
case 749:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumHeight";
|
||||
case 750:
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumWidth";
|
||||
case 752:
|
||||
return "c_KDDockWidgets__Views__View_flutter__move_int_int";
|
||||
case 753:
|
||||
return "c_KDDockWidgets__Views__View_flutter__normalGeometry";
|
||||
return "c_KDDockWidgets__Views__View_flutter__geometry";
|
||||
case 751:
|
||||
return "c_KDDockWidgets__Views__View_flutter__grabMouse";
|
||||
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__raise";
|
||||
return "c_KDDockWidgets__Views__View_flutter__hasFocus";
|
||||
case 756:
|
||||
return "c_KDDockWidgets__Views__View_flutter__hide";
|
||||
case 759:
|
||||
return "c_KDDockWidgets__Views__View_flutter__raiseAndActivate";
|
||||
return "c_KDDockWidgets__Views__View_flutter__init";
|
||||
case 761:
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseKeyboard";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isActiveWindow";
|
||||
case 762:
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseMouse";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMaximized";
|
||||
case 763:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isMinimized";
|
||||
case 764:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isNull";
|
||||
case 765:
|
||||
return "c_KDDockWidgets__Views__View_flutter__isRootView";
|
||||
case 766:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setCursor_CursorShape";
|
||||
return "c_KDDockWidgets__Views__View_flutter__isVisible";
|
||||
case 767:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedHeight_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapFromGlobal_QPoint";
|
||||
case 768:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedWidth_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapTo_View_QPoint";
|
||||
case 769:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setGeometry_QRect";
|
||||
return "c_KDDockWidgets__Views__View_flutter__mapToGlobal_QPoint";
|
||||
case 770:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setHeight_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__maxSizeHint";
|
||||
case 771:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMaximumSize_QSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__maximumSize";
|
||||
case 772:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMinimumSize_QSize";
|
||||
return "c_KDDockWidgets__Views__View_flutter__minSize";
|
||||
case 773:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMouseTracking_bool";
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumHeight";
|
||||
case 774:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setObjectName_QString";
|
||||
case 775:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setParent_View";
|
||||
return "c_KDDockWidgets__Views__View_flutter__minimumWidth";
|
||||
case 776:
|
||||
return "c_KDDockWidgets__Views__View_flutter__move_int_int";
|
||||
case 777:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setSize_int_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__normalGeometry";
|
||||
case 778:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setVisible_bool";
|
||||
return "c_KDDockWidgets__Views__View_flutter__objectName";
|
||||
case 779:
|
||||
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";
|
||||
return "c_KDDockWidgets__Views__View_flutter__onResize_QSize";
|
||||
case 782:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setZOrder_int";
|
||||
return "c_KDDockWidgets__Views__View_flutter__raise";
|
||||
case 783:
|
||||
return "c_KDDockWidgets__Views__View_flutter__show";
|
||||
case 784:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMaximized";
|
||||
return "c_KDDockWidgets__Views__View_flutter__raiseAndActivate";
|
||||
case 785:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMinimized";
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseKeyboard";
|
||||
case 786:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showNormal";
|
||||
case 788:
|
||||
return "c_KDDockWidgets__Views__View_flutter__sizeHint";
|
||||
return "c_KDDockWidgets__Views__View_flutter__releaseMouse";
|
||||
case 790:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setCursor_CursorShape";
|
||||
case 791:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedHeight_int";
|
||||
case 792:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setFixedWidth_int";
|
||||
case 793:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setGeometry_QRect";
|
||||
case 794:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setHeight_int";
|
||||
case 795:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMaximumSize_QSize";
|
||||
case 796:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMinimumSize_QSize";
|
||||
case 797:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setMouseTracking_bool";
|
||||
case 798:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setObjectName_QString";
|
||||
case 799:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setParent_View";
|
||||
case 801:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setSize_int_int";
|
||||
case 802:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setVisible_bool";
|
||||
case 803:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWidth_int";
|
||||
case 804:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowOpacity_double";
|
||||
case 805:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setWindowTitle_QString";
|
||||
case 806:
|
||||
return "c_KDDockWidgets__Views__View_flutter__setZOrder_int";
|
||||
case 807:
|
||||
return "c_KDDockWidgets__Views__View_flutter__show";
|
||||
case 808:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMaximized";
|
||||
case 809:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showMinimized";
|
||||
case 810:
|
||||
return "c_KDDockWidgets__Views__View_flutter__showNormal";
|
||||
case 812:
|
||||
return "c_KDDockWidgets__Views__View_flutter__sizeHint";
|
||||
case 814:
|
||||
return "c_KDDockWidgets__Views__View_flutter__update";
|
||||
}
|
||||
return super.cFunctionSymbolName(methodId);
|
||||
@@ -994,113 +994,113 @@ class View_flutter extends View {
|
||||
|
||||
static String methodNameFromId(int methodId) {
|
||||
switch (methodId) {
|
||||
case 709:
|
||||
case 733:
|
||||
return "activateWindow";
|
||||
case 713:
|
||||
return "close";
|
||||
case 716:
|
||||
return "createPlatformWindow";
|
||||
case 721:
|
||||
return "flags";
|
||||
case 723:
|
||||
return "free_impl";
|
||||
case 725:
|
||||
return "geometry";
|
||||
case 727:
|
||||
return "grabMouse";
|
||||
case 730:
|
||||
return "hasFocus";
|
||||
case 732:
|
||||
return "hide";
|
||||
case 735:
|
||||
return "init";
|
||||
case 737:
|
||||
return "isActiveWindow";
|
||||
case 738:
|
||||
return "isMaximized";
|
||||
case 739:
|
||||
return "isMinimized";
|
||||
return "close";
|
||||
case 740:
|
||||
return "isNull";
|
||||
case 741:
|
||||
return "isRootView";
|
||||
case 742:
|
||||
return "isVisible";
|
||||
case 743:
|
||||
return "mapFromGlobal";
|
||||
case 744:
|
||||
return "mapTo";
|
||||
return "createPlatformWindow";
|
||||
case 745:
|
||||
return "mapToGlobal";
|
||||
case 746:
|
||||
return "maxSizeHint";
|
||||
return "flags";
|
||||
case 747:
|
||||
return "maximumSize";
|
||||
case 748:
|
||||
return "minSize";
|
||||
return "free_impl";
|
||||
case 749:
|
||||
return "minimumHeight";
|
||||
case 750:
|
||||
return "minimumWidth";
|
||||
case 752:
|
||||
return "move_2";
|
||||
case 753:
|
||||
return "normalGeometry";
|
||||
return "geometry";
|
||||
case 751:
|
||||
return "grabMouse";
|
||||
case 754:
|
||||
return "objectName";
|
||||
case 755:
|
||||
return "onResize";
|
||||
case 758:
|
||||
return "raise";
|
||||
return "hasFocus";
|
||||
case 756:
|
||||
return "hide";
|
||||
case 759:
|
||||
return "raiseAndActivate";
|
||||
return "init";
|
||||
case 761:
|
||||
return "releaseKeyboard";
|
||||
return "isActiveWindow";
|
||||
case 762:
|
||||
return "releaseMouse";
|
||||
return "isMaximized";
|
||||
case 763:
|
||||
return "isMinimized";
|
||||
case 764:
|
||||
return "isNull";
|
||||
case 765:
|
||||
return "isRootView";
|
||||
case 766:
|
||||
return "setCursor";
|
||||
return "isVisible";
|
||||
case 767:
|
||||
return "setFixedHeight";
|
||||
return "mapFromGlobal";
|
||||
case 768:
|
||||
return "setFixedWidth";
|
||||
return "mapTo";
|
||||
case 769:
|
||||
return "setGeometry";
|
||||
return "mapToGlobal";
|
||||
case 770:
|
||||
return "setHeight";
|
||||
return "maxSizeHint";
|
||||
case 771:
|
||||
return "setMaximumSize";
|
||||
return "maximumSize";
|
||||
case 772:
|
||||
return "setMinimumSize";
|
||||
return "minSize";
|
||||
case 773:
|
||||
return "setMouseTracking";
|
||||
return "minimumHeight";
|
||||
case 774:
|
||||
return "setObjectName";
|
||||
case 775:
|
||||
return "setParent";
|
||||
return "minimumWidth";
|
||||
case 776:
|
||||
return "move_2";
|
||||
case 777:
|
||||
return "setSize_2";
|
||||
return "normalGeometry";
|
||||
case 778:
|
||||
return "setVisible";
|
||||
return "objectName";
|
||||
case 779:
|
||||
return "setWidth";
|
||||
case 780:
|
||||
return "setWindowOpacity";
|
||||
case 781:
|
||||
return "setWindowTitle";
|
||||
return "onResize";
|
||||
case 782:
|
||||
return "setZOrder";
|
||||
return "raise";
|
||||
case 783:
|
||||
return "show";
|
||||
case 784:
|
||||
return "showMaximized";
|
||||
return "raiseAndActivate";
|
||||
case 785:
|
||||
return "showMinimized";
|
||||
return "releaseKeyboard";
|
||||
case 786:
|
||||
return "showNormal";
|
||||
case 788:
|
||||
return "sizeHint";
|
||||
return "releaseMouse";
|
||||
case 790:
|
||||
return "setCursor";
|
||||
case 791:
|
||||
return "setFixedHeight";
|
||||
case 792:
|
||||
return "setFixedWidth";
|
||||
case 793:
|
||||
return "setGeometry";
|
||||
case 794:
|
||||
return "setHeight";
|
||||
case 795:
|
||||
return "setMaximumSize";
|
||||
case 796:
|
||||
return "setMinimumSize";
|
||||
case 797:
|
||||
return "setMouseTracking";
|
||||
case 798:
|
||||
return "setObjectName";
|
||||
case 799:
|
||||
return "setParent";
|
||||
case 801:
|
||||
return "setSize_2";
|
||||
case 802:
|
||||
return "setVisible";
|
||||
case 803:
|
||||
return "setWidth";
|
||||
case 804:
|
||||
return "setWindowOpacity";
|
||||
case 805:
|
||||
return "setWindowTitle";
|
||||
case 806:
|
||||
return "setZOrder";
|
||||
case 807:
|
||||
return "show";
|
||||
case 808:
|
||||
return "showMaximized";
|
||||
case 809:
|
||||
return "showMinimized";
|
||||
case 810:
|
||||
return "showNormal";
|
||||
case 812:
|
||||
return "sizeHint";
|
||||
case 814:
|
||||
return "update";
|
||||
}
|
||||
throw Error();
|
||||
@@ -1115,253 +1115,253 @@ class View_flutter extends View {
|
||||
.asFunction();
|
||||
|
||||
//tag=1021
|
||||
final callback709 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
final callback733 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.activateWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback709, 709);
|
||||
const callbackExcept713 = 0;
|
||||
//tag=1021
|
||||
final callback713 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.close_calledFromC, callbackExcept713);
|
||||
registerCallback(thisCpp, callback713, 713);
|
||||
//tag=1021
|
||||
final callback716 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View.createPlatformWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback716, 716);
|
||||
const callbackExcept721 = 0;
|
||||
//tag=1021
|
||||
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, callback723, 723);
|
||||
//tag=1021
|
||||
final callback725 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.geometry_calledFromC);
|
||||
registerCallback(thisCpp, callback725, 725);
|
||||
//tag=1021
|
||||
final callback727 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.grabMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback727, 727);
|
||||
const callbackExcept730 = 0;
|
||||
//tag=1021
|
||||
final callback730 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.hasFocus_calledFromC, callbackExcept730);
|
||||
registerCallback(thisCpp, callback730, 730);
|
||||
//tag=1021
|
||||
final callback732 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.hide_calledFromC);
|
||||
registerCallback(thisCpp, callback732, 732);
|
||||
//tag=1021
|
||||
final callback735 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(View.init_calledFromC);
|
||||
registerCallback(thisCpp, callback735, 735);
|
||||
registerCallback(thisCpp, callback733, 733);
|
||||
const callbackExcept737 = 0;
|
||||
//tag=1021
|
||||
final callback737 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isActiveWindow_calledFromC, callbackExcept737);
|
||||
View_flutter.close_calledFromC, callbackExcept737);
|
||||
registerCallback(thisCpp, callback737, 737);
|
||||
const callbackExcept738 = 0;
|
||||
//tag=1021
|
||||
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<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMinimized_calledFromC, callbackExcept739);
|
||||
registerCallback(thisCpp, callback739, 739);
|
||||
const callbackExcept740 = 0;
|
||||
//tag=1021
|
||||
final callback740 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View.isNull_calledFromC, callbackExcept740);
|
||||
final callback740 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View.createPlatformWindow_calledFromC);
|
||||
registerCallback(thisCpp, callback740, 740);
|
||||
const callbackExcept741 = 0;
|
||||
const callbackExcept745 = 0;
|
||||
//tag=1021
|
||||
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<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapFromGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback743, 743);
|
||||
//tag=1021
|
||||
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_voidstar_FFI>(
|
||||
View_flutter.mapToGlobal_calledFromC);
|
||||
final callback745 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View_flutter.flags_calledFromC, callbackExcept745);
|
||||
registerCallback(thisCpp, callback745, 745);
|
||||
//tag=1021
|
||||
final callback746 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maxSizeHint_calledFromC);
|
||||
registerCallback(thisCpp, callback746, 746);
|
||||
//tag=1021
|
||||
final callback747 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maximumSize_calledFromC);
|
||||
final callback747 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.free_impl_calledFromC);
|
||||
registerCallback(thisCpp, callback747, 747);
|
||||
//tag=1021
|
||||
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);
|
||||
final callback749 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.geometry_calledFromC);
|
||||
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);
|
||||
final callback751 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.grabMouse_calledFromC);
|
||||
registerCallback(thisCpp, callback751, 751);
|
||||
const callbackExcept754 = 0;
|
||||
//tag=1021
|
||||
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<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.normalGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback753, 753);
|
||||
//tag=1021
|
||||
final callback754 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.objectName_calledFromC);
|
||||
final callback754 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.hasFocus_calledFromC, callbackExcept754);
|
||||
registerCallback(thisCpp, callback754, 754);
|
||||
const callbackExcept755 = 0;
|
||||
//tag=1021
|
||||
final callback755 =
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
View.onResize_calledFromC, callbackExcept755);
|
||||
registerCallback(thisCpp, callback755, 755);
|
||||
final callback756 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.hide_calledFromC);
|
||||
registerCallback(thisCpp, callback756, 756);
|
||||
//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>(
|
||||
View_flutter.raiseAndActivate_calledFromC);
|
||||
final callback759 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(View.init_calledFromC);
|
||||
registerCallback(thisCpp, callback759, 759);
|
||||
const callbackExcept761 = 0;
|
||||
//tag=1021
|
||||
final callback761 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseKeyboard_calledFromC);
|
||||
final callback761 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isActiveWindow_calledFromC, callbackExcept761);
|
||||
registerCallback(thisCpp, callback761, 761);
|
||||
const callbackExcept762 = 0;
|
||||
//tag=1021
|
||||
final callback762 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.releaseMouse_calledFromC);
|
||||
final callback762 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMaximized_calledFromC, callbackExcept762);
|
||||
registerCallback(thisCpp, callback762, 762);
|
||||
const callbackExcept763 = 0;
|
||||
//tag=1021
|
||||
final callback766 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setCursor_calledFromC);
|
||||
final callback763 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isMinimized_calledFromC, callbackExcept763);
|
||||
registerCallback(thisCpp, callback763, 763);
|
||||
const callbackExcept764 = 0;
|
||||
//tag=1021
|
||||
final callback764 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View.isNull_calledFromC, callbackExcept764);
|
||||
registerCallback(thisCpp, callback764, 764);
|
||||
const callbackExcept765 = 0;
|
||||
//tag=1021
|
||||
final callback765 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isRootView_calledFromC, callbackExcept765);
|
||||
registerCallback(thisCpp, callback765, 765);
|
||||
const callbackExcept766 = 0;
|
||||
//tag=1021
|
||||
final callback766 = ffi.Pointer.fromFunction<bool_Func_voidstar_FFI>(
|
||||
View_flutter.isVisible_calledFromC, callbackExcept766);
|
||||
registerCallback(thisCpp, callback766, 766);
|
||||
//tag=1021
|
||||
final callback767 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedHeight_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapFromGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback767, 767);
|
||||
//tag=1021
|
||||
final callback768 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedWidth_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapTo_calledFromC);
|
||||
registerCallback(thisCpp, callback768, 768);
|
||||
//tag=1021
|
||||
final callback769 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setGeometry_calledFromC);
|
||||
ffi.Pointer.fromFunction<voidstar_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.mapToGlobal_calledFromC);
|
||||
registerCallback(thisCpp, callback769, 769);
|
||||
//tag=1021
|
||||
final callback770 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setHeight_calledFromC);
|
||||
final callback770 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maxSizeHint_calledFromC);
|
||||
registerCallback(thisCpp, callback770, 770);
|
||||
//tag=1021
|
||||
final callback771 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMaximumSize_calledFromC);
|
||||
final callback771 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.maximumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback771, 771);
|
||||
//tag=1021
|
||||
final callback772 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMinimumSize_calledFromC);
|
||||
final callback772 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.minSize_calledFromC);
|
||||
registerCallback(thisCpp, callback772, 772);
|
||||
const callbackExcept773 = 0;
|
||||
//tag=1021
|
||||
final callback773 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setMouseTracking_calledFromC);
|
||||
final callback773 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumHeight_calledFromC, callbackExcept773);
|
||||
registerCallback(thisCpp, callback773, 773);
|
||||
const callbackExcept774 = 0;
|
||||
//tag=1021
|
||||
final callback774 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setObjectName_calledFromC);
|
||||
final callback774 = ffi.Pointer.fromFunction<int_Func_voidstar_FFI>(
|
||||
View.minimumWidth_calledFromC, callbackExcept774);
|
||||
registerCallback(thisCpp, callback774, 774);
|
||||
//tag=1021
|
||||
final callback775 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setParent_calledFromC);
|
||||
registerCallback(thisCpp, callback775, 775);
|
||||
//tag=1021
|
||||
final callback777 =
|
||||
final callback776 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.setSize_2_calledFromC);
|
||||
View_flutter.move_2_calledFromC);
|
||||
registerCallback(thisCpp, callback776, 776);
|
||||
//tag=1021
|
||||
final callback777 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.normalGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback777, 777);
|
||||
//tag=1021
|
||||
final callback778 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setVisible_calledFromC);
|
||||
final callback778 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.objectName_calledFromC);
|
||||
registerCallback(thisCpp, callback778, 778);
|
||||
const callbackExcept779 = 0;
|
||||
//tag=1021
|
||||
final callback779 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setWidth_calledFromC);
|
||||
ffi.Pointer.fromFunction<bool_Func_voidstar_voidstar_FFI>(
|
||||
View.onResize_calledFromC, callbackExcept779);
|
||||
registerCallback(thisCpp, callback779, 779);
|
||||
//tag=1021
|
||||
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);
|
||||
final callback782 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.raise_calledFromC);
|
||||
registerCallback(thisCpp, callback782, 782);
|
||||
//tag=1021
|
||||
final callback783 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.show_calledFromC);
|
||||
View_flutter.raiseAndActivate_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);
|
||||
View_flutter.releaseKeyboard_calledFromC);
|
||||
registerCallback(thisCpp, callback785, 785);
|
||||
//tag=1021
|
||||
final callback786 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showNormal_calledFromC);
|
||||
View_flutter.releaseMouse_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);
|
||||
final callback790 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setCursor_calledFromC);
|
||||
registerCallback(thisCpp, callback790, 790);
|
||||
//tag=1021
|
||||
final callback791 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedHeight_calledFromC);
|
||||
registerCallback(thisCpp, callback791, 791);
|
||||
//tag=1021
|
||||
final callback792 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setFixedWidth_calledFromC);
|
||||
registerCallback(thisCpp, callback792, 792);
|
||||
//tag=1021
|
||||
final callback793 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setGeometry_calledFromC);
|
||||
registerCallback(thisCpp, callback793, 793);
|
||||
//tag=1021
|
||||
final callback794 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setHeight_calledFromC);
|
||||
registerCallback(thisCpp, callback794, 794);
|
||||
//tag=1021
|
||||
final callback795 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMaximumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback795, 795);
|
||||
//tag=1021
|
||||
final callback796 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setMinimumSize_calledFromC);
|
||||
registerCallback(thisCpp, callback796, 796);
|
||||
//tag=1021
|
||||
final callback797 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setMouseTracking_calledFromC);
|
||||
registerCallback(thisCpp, callback797, 797);
|
||||
//tag=1021
|
||||
final callback798 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setObjectName_calledFromC);
|
||||
registerCallback(thisCpp, callback798, 798);
|
||||
//tag=1021
|
||||
final callback799 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setParent_calledFromC);
|
||||
registerCallback(thisCpp, callback799, 799);
|
||||
//tag=1021
|
||||
final callback801 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_ffi_Int32_FFI>(
|
||||
View_flutter.setSize_2_calledFromC);
|
||||
registerCallback(thisCpp, callback801, 801);
|
||||
//tag=1021
|
||||
final callback802 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int8_FFI>(
|
||||
View_flutter.setVisible_calledFromC);
|
||||
registerCallback(thisCpp, callback802, 802);
|
||||
//tag=1021
|
||||
final callback803 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setWidth_calledFromC);
|
||||
registerCallback(thisCpp, callback803, 803);
|
||||
//tag=1021
|
||||
final callback804 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Double_FFI>(
|
||||
View_flutter.setWindowOpacity_calledFromC);
|
||||
registerCallback(thisCpp, callback804, 804);
|
||||
//tag=1021
|
||||
final callback805 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_voidstar_FFI>(
|
||||
View_flutter.setWindowTitle_calledFromC);
|
||||
registerCallback(thisCpp, callback805, 805);
|
||||
//tag=1021
|
||||
final callback806 =
|
||||
ffi.Pointer.fromFunction<void_Func_voidstar_ffi_Int32_FFI>(
|
||||
View_flutter.setZOrder_calledFromC);
|
||||
registerCallback(thisCpp, callback806, 806);
|
||||
//tag=1021
|
||||
final callback807 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.show_calledFromC);
|
||||
registerCallback(thisCpp, callback807, 807);
|
||||
//tag=1021
|
||||
final callback808 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMaximized_calledFromC);
|
||||
registerCallback(thisCpp, callback808, 808);
|
||||
//tag=1021
|
||||
final callback809 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showMinimized_calledFromC);
|
||||
registerCallback(thisCpp, callback809, 809);
|
||||
//tag=1021
|
||||
final callback810 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.showNormal_calledFromC);
|
||||
registerCallback(thisCpp, callback810, 810);
|
||||
//tag=1021
|
||||
final callback812 = ffi.Pointer.fromFunction<voidstar_Func_voidstar_FFI>(
|
||||
View_flutter.sizeHint_calledFromC);
|
||||
registerCallback(thisCpp, callback812, 812);
|
||||
//tag=1021
|
||||
final callback814 = ffi.Pointer.fromFunction<void_Func_voidstar_FFI>(
|
||||
View_flutter.update_calledFromC);
|
||||
registerCallback(thisCpp, callback814, 814);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user